active questions tagged code-organization - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T02:06:05Zhttp://stackoverflow.com/feeds/tag/code-organizationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1849311/how-should-i-organize-python-source-code11How should I organize Python source code?Andres Jaan Tack2009-12-04T20:00:52Z2009-12-04T20:22:52Z
<p>I'm getting started with Python (it's high time I give it a shot), and I'm looking for some best practices.</p>
<p>My first project is a queue which runs command-line experiments in multiple threads. I'm starting to get a very long <code>main.py</code> file, and I'd like to break it up. In general, I'm looking for: <strong>How do python programmers organize multiple source files?</strong> Is there a particular structure that works for you?</p>
<p>My specific questions include:</p>
<ol>
<li>Should each class be in a separate file?</li>
<li>How should I organize unit tests relative to source code?</li>
<li>Where should I put doc comments, specifically those for command-line operation?</li>
<li>If I use multiple directories, how do I import classes between them?</li>
</ol>
<p>I can probably draw some of my own conclusions here by trial and error, but I'd rather start from something <em>good</em>.</p>
http://stackoverflow.com/questions/1291630/is-it-naughty-to-have-a-large-utility-file2Is it naughty to have a large utility file?banister2009-08-18T03:24:17Z2009-11-19T19:32:56Z
<p>In my C project I have quite a large utils.c file. It is really full of many utilities of different sorts. I feel a bit naughty just stuffing different miscellaneous functions in there. For example it has some utilities related to low level stuff such as a lowercase() function, and it also has some quite sophisticated utilities such as converting to/from different colour formats.</p>
<p>My question is, is it very naughty to have such a large utils.c with many different types of utilities in it? Should I break it up into many different kinds of utility files? Such as graphics_utils.c and so on What do you think?</p>
http://stackoverflow.com/questions/1691495/organizing-python-projects-with-shared-packages2Organizing Python projects with shared packagesAFoglia2009-11-07T00:52:44Z2009-11-08T10:41:42Z
<p>What is the best way to organize and develop a project composed of many small scripts sharing one (or more) larger Python libraries?</p>
<p>We have a bunch of programs in our repository that all use the same libraries stored in the same repository. So in other words, a layout like</p>
<pre><code>trunk
libs
python
utilities
projects
projA
projB
</code></pre>
<p>When the official runs of our programs are done, we want to record what version of the code was used. For our C++ executables, things are simple because as long as the working copy is clean at compile time, everything is fine. (And since we get the version number programmatically, it must be a working copy, not an export.) For Python scripts, things are more complicated.</p>
<p>The problem is that, often one project (e.g. projA) will be running, and projB will need to be updated. This could cause the working copy revision to appear mixed to projA during runtime. (The code takes hours to run, and can be used as inputs for processes that take days to run, hence the strong traceability goal.)</p>
<p>My current workaround is, if necessary, check out another copy of the trunk to a different location, and run off there. But then I need to remember to change my PYTHONPATH to point to the second version of lib/python, not the one in the first tree.</p>
<p>There's not likely to be a perfect answer. But there must be a better way.</p>
<p>Should we be using subversion keywords to store the revision number, which would allow the data user to export files? Should we be using virtualenv? Should we be going more towards a packaging and installation mechanism? Setuptools is the standard, but I've read mixed things about it, and it seems designed for non-developer end users (of which we have none).</p>
http://stackoverflow.com/questions/1688886/how-to-organize-oo-js-code-in-files-local-network-application0How to organize OO js code in files? Local network applicationFedyashev Nikita2009-11-06T16:54:01Z2009-11-06T22:06:33Z
<p>I'm currently developing an application that will be run on local network in <strong>B2B environment</strong>. So I can almost forget about <strong>micro</strong>(mini?) <strong>optimizations</strong> in terms of saving bandwidth because <a href="http://www.codinghorror.com/blog/archives/001198.html" rel="nofollow">Hardware Is Cheap, Programmers Are Expensive</a>.</p>
<p>We have a well structured Object oriented js code in the project and obviously <strong>lots of js classes</strong>. If all the classes will be stored in separated files then it will be quite easy to navigate through this code and hence maintain it.</p>
<p>But this will bring my browser to generate a couple dozens of <strong>HTTP requests</strong> to get all the js files/classes I need on the page. Even in local environment it is not super fast on first load(with empty cache), and later when you modify it and cache has to be invalidated.</p>
<p><strong>Possible solutions:</strong></p>
<ul>
<li>violate rule <em>"one class per file"</em></li>
<li>use <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUI compressor</a> all the time(in development & production) for generating one big js file.</li>
</ul>
<p>But if we choose YUI compressor for this(no minify action in dev environment, and minify for production) - then we need to reload/recompile this big js file on every modification in any js file.</p>
<p><strong><em>What would you recommend for solving this problem?</em></strong></p>
http://stackoverflow.com/questions/1492439/how-to-organize-the-code-similar-to-region-endregion-in-net0how to organize the code similar to #region/#endregion in .NET?niko2009-09-29T13:12:26Z2009-11-06T07:15:29Z
<p>Hi,</p>
<p>While the code is growing big it is getting harder and harder to keep everything well organized. One thing I liked very much the time I developed in .NET was #region/#endregion which enabled to organize the code in logical groups and made further organization much easier.</p>
<p>Does anyone know whether there is any similar code organization possible in Java?</p>
http://stackoverflow.com/questions/1644975/how-should-i-organize-my-ajax-actions-files0How should I organize my ajax actions filesmnml2009-10-29T16:33:19Z2009-10-29T16:54:09Z
<p>I would like to know what's the best way to organize my php project with ajaxActions files. </p>
<p>At the moment I have a few <code>./process/ajaxAction_pagename.php</code> files containing my actions like this:</p>
<pre><code>if ($action=="actionName")
{
//code
}
</code></pre>
<p>I'm just wondering if there is a better (or more standard) way to do it.</p>
http://stackoverflow.com/questions/1642975/folder-and-file-organization-for-python-development1Folder and file organization for Python developmentGeorge2009-10-29T11:08:00Z2009-10-29T13:38:37Z
<p>Hello guys.</p>
<p>What is the best way to organize code that belongs to the same project in a Python development environment? What are the do and donts of Python project organization? Do you separate each class in a file? </p>
<pre><code>Project A
Classes
"subsystem1"
class1
class2
subsystem1Module
"subsystem2"
"utils"
"etc"
Tests
Whatever
etc?
</code></pre>
<p>Any suggestions? Oh, and please describe what are the (possible) problems of each type of organization.</p>
<p>What are considered best practices for organizing Python code?</p>
http://stackoverflow.com/questions/1318712/why-is-each-public-class-in-a-separate-file11Why is each public class in a separate file?Sandbox2009-08-23T14:33:14Z2009-10-28T21:28:40Z
<p>I recently started learning Java and found it very strange that every Java class must be declared in a separate file. I am a C# programmer and C# doesn't enforce any such restriction. </p>
<p>Why does Java do this? Were there any design consideration?</p>
<p><strong>Edit (based on few answers):</strong></p>
<p>Why is Java not removing this restriction now in the age of IDEs? This will not break any existing code (or will it?).</p>
http://stackoverflow.com/questions/1636801/can-maven-projects-have-multiple-parents1Can maven projects have multiple parents?festerwim2009-10-28T11:54:41Z2009-10-28T14:19:57Z
<p>Hi,</p>
<p>we have java and flex projects at work. We currently have 1 base pom that contains the configurations we want to use for both projects. Problem with this is: flex projects inherit configuration for javadoc and pmd for example, which they do not want.</p>
<p>I want to do this a bit more clean and have a real base-pom and then a java-base-pom and a flex-base-pom. But how does this work in a multimodule that has both a flex part and a java part?</p>
<p>We have plugins to our own application where we use the following structure:</p>
<ul>
<li>my-plugin
<ul>
<li>my-plugin-client (flex)</li>
<li>my-plugin-server (java)</li>
</ul></li>
</ul>
<p>The my-plugin just contains a pom.xml with section. I would use the my-plugin pom.xml as a parent to both, but then I cannot also use the java base-pom or the flex base-pom also as parent. What would be the best approarch for this?</p>
<p>regards,</p>
<p>Wim</p>
http://stackoverflow.com/questions/1618895/organize-small-utilities-functions1Organize small utilities functionsNawaMan2009-10-24T19:48:46Z2009-10-24T23:20:31Z
<p>Hi all. After years of programming, we all have a set of small functions used as helpers utilities that we wish it comes build-in so we can use it in any project and have ti taken care by more people (test and optimized).</p>
<p>I have quite a collection of these functions. I wonder how do you guys organize them? Do you have any tips?</p>
<p>This is how I do it. I put it in a separate project (an eclipse project) let say "MyUtils" and it referred to by other projects. This works but because the utils collection are getting bigger and bigger something it is kind of weird that the utils are bigger than the project code (for small projects). And to ship it in Jar, you have to select them all by hand (or include them all). Is there a better way?</p>
<p>Also, as Java requires all functions to be in a class so I have ton of static functions (those that does not fit in OOP) for example a function read text file from a file name. Like this:</p>
<pre><code> package nawaman.myutil;
public class UText {
static public String ReadTextFile(String pFileName) {
...
}
static public String[] ReadLines_fromFile(String pFileName) {
...
}
static public String ReadLine_fromFile(String pFileName, int pLineNumber) {
...
}
...
}
</code></pre>
<p>So when I need to include all the functions goes when though it is not used.</p>
<p>Is there a better way to do this?</p>
<p>I use eclipse on Linux anyway if there is special technique for it but fell free to share if you have techniques with other tools.</p>
http://stackoverflow.com/questions/944031/referencing-jaxb-jars-best-practice0Referencing JAXB jars - best practiceFeenster2009-06-03T10:25:29Z2009-10-23T08:50:40Z
<p>My first post, so go easy on me.</p>
<p>I'm looking for advice on organising and referencing third party jars for use in my j2ee web application. The jars I need to organise and reference are the JWSDP-2.0 JAXB api jars.</p>
<p>I'm using Eclipse and Tomcat 5.5. My web app exchanges XML with a web service, and therefore needs to do some XML marshalling and unmarshalling using the JAXB api's in JWSDP-2.0. </p>
<p>I've downloaded JWSDP-2.0 and installed to my PC. I'm now trying to figure out the best way to make the necessary jar files contained therein available to my web app within eclipse on my machine, and also within Tomcat both on my machine and the eventual test and production servers.</p>
<p>I started off just copying the .jar files to the WEB-INF/lib folder of my project. This meant the jar files would now be exported in the .war when deploying to Tomcat. However, I don't like this because the jar files come from a few different libraries in JWSDP-2.0, and copying them like this meant the were all just tossed in together, rather than nicely seperated as JAXB, JAXP, SAAJ etc. Also, there are some name clashes, eg, my web app already contains older xml parsing jars such as xalan.jar which are already used by a different part of the web app.</p>
<p>I then removed all these jars, and created a series of user libraries within eclipse, eg "jwsdp-2.0_jaxp", "jwsdp-2.0_jaxb" which reference the jars from their locations in the WSDP-2.0 instal. This works fine as far as compliing my web app in eclipse goes, but I now need to make these jars available to Tomcat and I'm a bit stuck there on the best way to do this.</p>
<p>So, at a basic level my question is how do I get jar files referenced in Tomcat?</p>
<p>More generally, I'm looking for some advice on best practice for referencing and including third party jars in a project with an eye to smooth deployment to servers.</p>
<p>If anybody can recommend any good articles/books/resorces on code organisation and deployment that would help me learn best practice for this sort of scenario that would be great</p>
<p>Cheers in advance.</p>
http://stackoverflow.com/questions/1522188/organizing-classes-in-php2Organizing Classes in PHPeyze2009-10-05T20:25:23Z2009-10-14T23:49:48Z
<p>Suppose I've the following classes in my project:</p>
<blockquote>
<ul>
<li>class <strong>Is</strong> // <em>validation class</em></li>
<li>class <strong>Math</strong> // <em>number manipulation class</em></li>
</ul>
</blockquote>
<p>Now, if I want to validate a given number for primality where would be the logical place to insert my Prime() method? I can think of the following options:</p>
<blockquote>
<ul>
<li><strong>Is_Math</strong>::Prime()</li>
<li><strong>Math_Is</strong>::Prime()</li>
</ul>
</blockquote>
<p>I hate these ambiguities, the slow down my thinking process and often induce me in errors. Some more examples:</p>
<blockquote>
<ul>
<li>Is::Image() or Image::Is() ?</li>
<li>Is_Image::PNG() or Image_Is::PNG() ?</li>
<li>Is_i18n_US::ZipCode() or i18n_Is_US::ZipCode() or
i18n_US_Is::ZipCode() ?</li>
</ul>
</blockquote>
<p>In the Image example the first choice makes more sense to me while in the i18n example I prefer the last one. Not having a standard makes me feel like the whole code base is messy.</p>
<p><strong>Is there a holy grail solution for organizing classes? Maybe a different paradigm?</strong></p>
http://stackoverflow.com/questions/1448843/what-is-this-dashed-line-called-that-aligns-function-blocks-in-my-ide2What is this dashed line called that aligns function blocks in my IDE?seedofc2009-09-19T16:06:20Z2009-09-19T17:26:00Z
<p>The SPE IDE that I use for my Python code uses this "visual cue" that looks like a vertical dashed line for alignment of (what I would call) function blocks. How can I get this option in Visual Studio 2008?</p>
<p>Here is what it looks like:</p>
<p><img src="http://imgur.com/zAW2T.png" /></p>
http://stackoverflow.com/questions/956996/best-practices-css-stylesheet-formatting16Best Practices - CSS Stylesheet FormattingJustin Niessner2009-06-05T17:05:09Z2009-09-18T19:03:39Z
<p>This may seem like a strange question...but here goes:</p>
<p>I'm currently working on creating a fairly large site using table-less design/css (obviously the best way to go). Unfortunately, I have a requirement that is completely out of my control that states I must have only one stylesheet for the site.</p>
<p>In some regards this is better because it forces me to think about style re-use pro-actively while designed the pages. On the other hand...the stylesheet is becoming monolithic and I'm quickly losing myself trying to find styles I know I've already defined.</p>
<p>I'd like to do myself (and anybody who has to work on the site in the future) a favor and make the CSS as readable and easy to update as possible. That's where you come in. I'm looking for formatting/organizational suggestions/best practices.</p>
<p>Somebody out there has to be better at it than I am.</p>
http://stackoverflow.com/questions/125319/should-usings-be-inside-or-outside-the-namespace22Should Usings be inside or outside the namespacebenPearce2008-09-24T03:49:50Z2009-09-14T15:17:10Z
<p>I have been running StyleCop over some C# code and it keeps reporting that my using statements should be inside the namespace.</p>
<p>Is there a technical reason for putting the using statements inside instead of outside the namespace?</p>
<p><strong>Edit</strong>: There appears that there is no difference after compliation. The reasons for putting them inside the namespace go against the convention of one class per file (my preferred method, no doubt most people also). Thanks for the good answers.</p>
http://stackoverflow.com/questions/1407681/use-a-separate-wcf-project-with-silverlight1Use a separate WCF project with Silverlight Gus2009-09-10T20:58:12Z2009-09-10T21:23:39Z
<p>I am working on a Silverlight application that uses WCF. I need to have my WCF project separate from the ASP.Net application that will host my Silverlight project. I am looking for some guidance on how I should organize my solution and list gotchas other people have experienced during debugging and deployment.</p>
<p><strong>Specifically my questions are</strong></p>
<ol>
<li><p>What type of project should I use for the WCF service?(A WCF project, an ASP.NET project with self-hosted WCF services, something else)</p></li>
<li><p>What do I need to so to get it so that when I press F5 I can debug both my Silverlight project and my WCF service? Will I need a cross-domain policy just to debug the thing?</p></li>
</ol>
<p><strong>Some background info on why I want to do this:</strong></p>
<p>I have legacy web application that I am gradually converting over to a Silverlight application. Because it is a large web application some of its features will be converted to Silverlight before others.</p>
<p>The legacy web application has lots of code in it that is no longer used. Much of the code that is no longer used references 3rd part assemblies. This is why I want to get rid of the old web application. So obviously I don't want to host WCF services that will be kept for future versions in it. That is my reason for wanting to make the WCF project separate.</p>
http://stackoverflow.com/questions/1383590/code-organization-in-python-where-is-a-good-place-to-put-obscure-methods2Code organization in Python: Where is a good place to put obscure methods?cool-RR2009-09-05T15:25:58Z2009-09-05T15:45:08Z
<p>I have a class called <code>Path</code> for which there are defined about 10 methods, in a dedicated module <code>Path.py</code>. Recently I had a need to write 5 more methods for <code>Path</code>, however these new methods are quite obscure and technical and 90% of the time they are irrelevant.</p>
<p>Where would be a good place to put them so their context is clear? Of course I can just put them with the class definition, but I don't like that because I like to keep the important things separate from the obscure things.</p>
<p>Currently I have these methods as functions that are defined in a separate module, just to keep things separate, but it would be better to have them as bound methods. (Currently they take the <code>Path</code> instance as an explicit parameter.) </p>
<p>Does anyone have a suggestion?</p>
http://stackoverflow.com/questions/1339040/why-does-django-enforce-all-model-classes-to-be-in-models-py0Why does django enforce all model classes to be in models.py?Mert Nuhoglu2009-08-27T05:35:18Z2009-08-28T10:33:22Z
<p>I have just learned that splitting model classes into different files breaks many of django's built-in functionalities. </p>
<p>I am coming from a java background. There, it is not accepted as a good practice writing very long class files. But django's enforcement of single file for all model classes will probably cause programmer to write very long models.py files. This will make it difficult for programmer to see the organization of the whole domain model.</p>
<p>So why does django enforce single file to contain all domain classes?</p>
<p>I have found <a href="http://www.ifisgeek.com/2009/01/26/splitting-django-models-into-separate-files/" rel="nofollow">a solution proposal</a> to this problem by googling. But I cannot be sure whether this will work properly. Do you suggest this solution?</p>
http://stackoverflow.com/questions/1336190/creating-classes-or-just-using-associative-arrays-for-xml-data-in-php0Creating classes or just using associative arrays for XML data in PHP?jimyi2009-08-26T17:02:13Z2009-08-26T23:45:39Z
<p>From a maintenance and code organization standpoint, in PHP5, does it make sense to create/define objects and classes for XML data coming from a web service?</p>
<p>Using <a href="http://apiwiki.twitter.com/Twitter-API-Documentation" rel="nofollow">Twitter's API</a> as an example, I would have a class for each API method (statuses, users, direct_messages, etc). For <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-public%5Ftimeline" rel="nofollow"><code>statuses/public_timeline</code></a>, I would have something like this:</p>
<pre><code>class Statuses {
public $status = array(); // an array of Status objects
public function __construct($url) { // load the xml into the object }
}
class Status {
public $created_at, $id, $text; // and the rest of the attributes follow...
}
$public_timeline = new Statuses('http://twitter.com/statuses/public_timeline.xml');
echo $public_timeline->status[0]->text;
</code></pre>
<p>Or is it better to dump everything into an associative array, so items would be accessed like this:</p>
<pre><code>// the load_xml function is just something that will dump xml into an array
$public_timeline = load_xml('http://twitter.com/statuses/public_timeline.xml');
echo $public_timeline['statuses']['status'][0]['text'];
</code></pre>
<p>First design:</p>
<ul>
<li>Strictly following object-oriented principles</li>
<li>Seems like an approach better suited for compiled languages</li>
</ul>
<p>Second design:</p>
<ul>
<li>A lot less maintenance would be needed if the API is modified. If the API adds an attribute to the XML, the corresponding class would need to be updated in the first design.</li>
</ul>
http://stackoverflow.com/questions/1015364/worth-the-headache-to-organize-sql-files-by-application-subject2Worth the headache to organize SQL files by application subject?RenMan2009-06-18T21:43:59Z2009-08-04T14:19:00Z
<p>At my company, we save each database object (stored proc, view, etc) as an individual SQL file, and place them under source control that way. </p>
<p>Up until now, we've had a very flat storage model in our versioned file structure:</p>
<ul>
<li><code>DatabaseProject</code>
<ul>
<li><code>Functions</code>
<ul>
<li>(all functions here; no further nesting)</li>
</ul></li>
<li><code>StoredProcedures</code>
<ul>
<li>(all stored procs in here; no further nesting)</li>
</ul></li>
<li><code>Views</code>
<ul>
<li>(ditto)</li>
</ul></li>
</ul></li>
</ul>
<p>For a big new project, another idea has occurred to me: why not store these files by subject instead of in these prefab flat lists? </p>
<p>For example:</p>
<ul>
<li><code>DatabaseProject</code>
<ul>
<li><code>Reports</code>
<ul>
<li>(individual stored procs, views, etc.)</li>
<li><code>SpecificReport</code>
<ul>
<li>(more objects here, further nesting as necessary)</li>
</ul></li>
</ul></li>
<li><code>SpecificApplication</code>
<ul>
<li>(all types of DB objects, with arbitrarily deep nesting)</li>
</ul></li>
<li>et cetera....</li>
</ul></li>
</ul>
<p>The obvious flaw is that this folder structure doesn't impose any kind of namespace hierarchy on the database objects; it's for organization only. Thus, it would be <strong>very easy to introduce objects with duplicate names</strong>. You'd need some kind of build tool to survey the database project and die on naming conflicts. </p>
<p>What I'd like to know is: has anyone tried this method of organizing SQL files by application subject in their versioned file structure? Was it worth it? Did you create a build tool that would police the project as I have described?</p>
http://stackoverflow.com/questions/1097459/is-it-impossible-to-separate-javascript-from-html4Is it impossible to separate javascript from HTML?Click Upvote2009-07-08T11:25:48Z2009-07-21T16:45:53Z
<p>To be specific, I'm talking about avoiding this type of code:</p>
<pre><code><input type='text' id='title_33' class='title'
onfocus='updateCharsLeft(33);'
onkeypress='updateCharsLeft(33);' />
</code></pre>
<p>Here I would like to put the <code>onfocus</code> and <code>onkeypress</code> event handles separately, i.e in a .js file. Like this:</p>
<pre><code>$(document).ready(function()
{
$(".title").focus(updateCharsLeft);
$(".title").keypress(updateCharsLeft);
);
</code></pre>
<p>However here the problem is that the ID of the textbox needs to be passed onto the function <code>updateCharsLeft()</code>. It would suck to have to extract out the id from the ID of the textbox in that function, so it would actually be cleaner to just put in the event handlers within the HTML code.</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/1101996/where-should-i-put-my-javascript-page-or-external-file2Where should I put my JavaScript - page or external file?Hemant Kothiyal2009-07-09T05:37:57Z2009-07-21T11:05:20Z
<p>In VS 2008, I have an ASP.NET content page having one master page. I would like to add JavaScript functions for client side validation etc. for this page. My questions are: </p>
<ol>
<li>Should I write these scripts in a separate <code>.js</code> file, or embedded within the <code>.aspx</code> file.</li>
<li>Does this choice affect the performance of the website?</li>
<li>Are there any rules for writing a JavaScript file?</li>
</ol>
http://stackoverflow.com/questions/882399/where-to-keep-unit-tests8Where to keep unit tests?MKaras2009-05-19T12:18:23Z2009-07-10T15:24:52Z
<p>Are unit tests kept in the same file as the code, a separate file in the same directory, or in an entirely different directory?</p>
http://stackoverflow.com/questions/232693/including-one-c-source-file-in-another1Including one C source file in another?srujan2008-10-24T07:03:00Z2009-07-10T12:41:31Z
<p>Is it OK (or even recommended/good practice) to <code>#include</code> .c file in another .c file? What happens when they are included in a project file?</p>
http://stackoverflow.com/questions/972652/how-to-code-a-simple-versioning-system14How to code a simple versioning system ?bgy2009-06-09T21:43:03Z2009-07-06T09:36:58Z
<p>I want to do a simple versioning system but i don't have ideas on how to structure my datas, and my code.</p>
<p>Here is a short example:</p>
<ol>
<li>User logs in</li>
<li>User has two options when uploading a file:
<ul>
<li>Submit a new file</li>
<li>Submit a new version of a file</li>
</ul></li>
</ol>
<p>Users should be able to see the tree. (the different version)
The tree can only be up to 2 levels:</p>
<pre><code>|
|--File_A_0
\--File_A_1
\--File_A_2
\--File_A_3
\--File_A_4
</code></pre>
<p>There are also 2 types of file, a final (which is the latest approved version) and a draft version (which the latest uploaded file)
The file will be physically stored on the server.
Each files are owned by a user (or more) and only one group.</p>
<p><strong>Edit:</strong> Groups represent a group of document, document could only be owned by ONE group at once. Users do NOT depend on groups.</p>
<p><strong>Begin edit:</strong></p>
<p>Here is what i did, but it is not really efficient !</p>
<pre><code>id_article | relative_group_id | id_group | title | submited | date | abstract | reference | draft_version | count | status
id_draft | id_file | version | date
</code></pre>
<p>But it's difficult to manage, to extend.
I think it's because the group paramater...</p>
<p><strong>End edit</strong></p>
<p>So the questions are: </p>
<ul>
<li>How can i schematize my database ?</li>
<li>What kind of infos should be usefull
to version this work ?</li>
<li>What kind of structure for the
folders, files ?</li>
<li>What kind of tips, hints do you have
to do this kind of work ?</li>
</ul>
<p>(The application is developped with PHP and Zend Framework, database should be mysql or postgresql)</p>
http://stackoverflow.com/questions/251814/jquery-and-organized-code12jQuery and "Organized Code"HBoss2008-10-30T21:17:34Z2009-07-04T19:18:23Z
<p>I've been struggling lately with understanding the best way to organize jQuery code. I asked another question earlier and I don't think I was specific enough (<a href="http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess">found in this question here</a>).</p>
<p>My problem is that the richer you make an application, the quicker your client side gets out of control. Consider this situation...</p>
<pre><code>//Let's start some jQuery
$(function() {
var container = $("#inputContainer");
//Okay let's list text fields that can be updated
for(var i=0; i < 5; i++) {
//okay let's add an event for when a field changes
$("<input/>").change(function() {
//okay something changed, let's update the server
$.ajax({
success:function(data) {
//Okay - no problem from the server... let's update
//the bindings on our input fields
$.each(container.children(), function(j,w) {
//YIKES!! We're deep in here now!!
$(w).unbind().change(function() {
//Then insanity starts...
}); // end some function
}); //end some loop
} // what was this again?
}); //ending something... not sure anymore
}).appendTo(container); //input added to the page... logic WAY split apart
}; //the first loop - whew! almost out!
}); //The start of the code!!
</code></pre>
<p>Now this situation isn't too far from impossible. I'm not saying this is the right way to do it, but it's not uncommon to find yourself several levels down into a jQuery command and starting to wonder how much more logic can add before the screen begins to melt.</p>
<p><strong>My question is how are people managing this or organizing to limit the complexity of their code?</strong></p>
<p><em><a href="http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess#247382">I listed how I'm doing it in my other post</a>...</em></p>
http://stackoverflow.com/questions/997149/best-way-to-organize-the-files-in-my-project2Best way to organize the files in my projectzachary2009-06-15T16:49:07Z2009-06-20T02:18:09Z
<p>What is the best way to organize the files in your project?</p>
<p>For example do you put all user controls in a separate folder or do you place them in a sub folder? Do you have business logic folder? A helper classes folder?</p>
<p>I used to organize my projects like this:</p>
<p>Project/User Controls/Module Name/
Project/Classes/Module Name/</p>
<p>Now I am learning more towards something like this:
Project/Module Name/User Controls/
Project/Module Name/Classes/</p>
<p>What is the best way? Especially if the project gets really big? What type of folder structure should exist?</p>
http://stackoverflow.com/questions/369030/how-you-organize-your-bookmarks-and-rss-feeds-2How you organize your bookmarks and Rss feeds? [closed]Ronnie2008-12-15T17:04:03Z2009-06-01T19:22:45Z
<p>My Netneswire reader is now displaying 10515 unread items...</p>
<p>Luckly I have organized my rss feeds with "smartlists" (searches across all my rss subscription list for specific terms).
So instead of reading every single feed I read the filtered one based on the arguments that interests me. </p>
<p>I store bookmarks on deliciuos.com</p>
<p>When something is particulary interesting but I have no time to read all immediately I flag it for further reading with the "Read it later" Firefox extension. </p>
<p>If something passes this level (it is REALLY particularly interesting or useful) I copy and paste it in Evernote so I have my personal storage of all the information. </p>
<p>For code snippets I put them in real files in an indexed folder(google desktop) so I am able to search them based on their content.</p>
<p>Pdf books and documents receive same indexing process.</p>
<p>With all that in place I still think to suffer for information overload as there is really too much to learn and to deal with.</p>
<p>How do you organize yourself for managing bookmarks, rss and all the useful information you find? Do you have a single place? Do you share it with your team?</p>
http://stackoverflow.com/questions/488984/best-articles-about-organizing-code-files-in-c4best articles about organizing code files in Ckliketa2009-01-28T19:28:08Z2009-06-01T18:57:12Z
<p>Can you recommend me what should I read/learn in order to make a well organized code in C? </p>
<p>One of the things I want to learn is the principles of splitting project in .h and .c files, what goes where and why, variable naming, when to use global variables ...</p>
<p>I am interested in <strong>books and articles</strong> that deal with this specific problem.</p>
http://stackoverflow.com/questions/539381/organizing-your-personal-utility-code-repository3Organizing your personal utility code repositorytsilb2009-02-11T23:42:10Z2009-06-01T18:46:09Z
<p>Many of us have a personal repository where we keep our code. Sometimes it's just our hobby code, some people include code from their jobs (shame!), but many of us have a repository in one form or another.</p>
<p>This is complicated by the fact that alot of us work in many spaces (Web Development, Windows and Web Services, Console apps) and many types of software (Screen scrapers, websites, file utilities, small tools, etc).</p>
<p><strong>My question: How do you organize your code repository?</strong> </p>
<p>Personally, I organize mine by namespace as such:</p>
<p>Myname (root namespace)</p>
<ul>
<li>Utils
<ul>
<li>HTTP</li>
<li>XML</li>
<li>IO</li>
</ul></li>
<li>Projects
<ul>
<li>MV5 (blog)</li>
<li>MV6 (newer version of blog)</li>
</ul></li>
</ul>
<p>... and so forth. Whereas best practice is accepted as one file per class (usually), I organize one file per namespace, since IMHO when you have one Developer on a personal project, source control is <em>less</em> neccessary.</p>
<p>... Edit: I should clarify - I'm more interested in namespace organization and selection than physical locations as shown in <a href="http://stackoverflow.com/questions/537577/where-do-you-keep-your-code">this thread</a>.</p>