Top "Code-organization" questions

Code organization is the way how code is placed in a project.

Recommended Source Control Directory Structure?

I am going to be using Subversion for source control on a new J2EE web application. What directory structure …

java svn jakarta-ee version-control code-organization
How to code a simple versioning system?

I want to do a simple versioning system but i don't have ideas on how to structure my datas, and …

php sql algorithm data-structures code-organization
Matplotlib create real time animated graph

I am having a hard time setting up my code to create a real time animated graph, my code is …

python matplotlib code-organization
Spark code organization and best practices

So, having spend many years in an object oriented world with code reuse, design patterns and best practices always taken …

apache-spark functional-programming code-organization
Splitting a JavaScript namespace into multiple files

Let's say I have a namespace like that: var myNamespace = { foo: function() { }, bar: function() { } }; What is the best way to …

javascript namespaces code-organization
Xcode Workspace vs Nested Projects

I don't understand the use of an Xcode workspace to organize projects with dependencies on one another. For instance I …

xcode project code-organization
System for organizing multi-file Ruby programs?

Is there a standard or conventional system for organizing multi-file Ruby programs? I have embarked on my first large "project" …

ruby-on-rails ruby project code-organization project-organization
jQuery and "Organized Code"

I've been struggling lately with understanding the best way to organize jQuery code. I asked another question earlier and I …

javascript jquery code-organization
Where to Put Python Utils Folder?

I've a whole bunch of scripts organized like this: root group1 script1.py script2.py group2 script1.py script2.py …

python code-organization
How do you organize C# code in to files?

In C#, the questions of what types to create, what members they should have, and what namespaces should hold them, …

c# code-organization