Tagged Questions
The code-organization tag has no wiki summary.
174
votes
6answers
14k views
Should Usings be inside or outside the namespace
I have been running StyleCop over some C# code and it keeps reporting that my using statements should be inside the namespace.
Is there a technical reason for putting the using statements inside ...
53
votes
24answers
5k views
Best Practices - CSS Stylesheet Formatting
This may seem like a strange question...but here goes:
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 ...
52
votes
13answers
6k views
Where do the Python unit tests go? [closed]
If you're writing a library, or an app, where do the unit test files go?
It's nice to separate the test files from the main app code, but it's awkward to put them into a "tests" subdirectory inside ...
33
votes
8answers
5k views
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 don't think I was specific enough (found in this question here).
My problem ...
29
votes
2answers
3k views
How should I organize Python source code?
I'm getting started with Python (it's high time I give it a shot), and I'm looking for some best practices.
My first project is a queue which runs command-line experiments in multiple threads. I'm ...
19
votes
3answers
286 views
Javascript: How to make sense of all the frameworks and design philosophies?
I have been a user of jQuery (and some of its minor plugins) for a while. The Javascript code I've developed over the years could be described best as... messy. It used a ton of global variables and ...
18
votes
4answers
349 views
Are there tools that help organizing #includes?
Are there any tools that help organizing the #includes that belong at the top of a .c or .h file?
I was just wondering because I am reorganizing my code, moving various small function ...
18
votes
12answers
1k views
Why is each public class in a separate file?
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.
Why does Java ...
15
votes
13answers
2k views
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 my code.
Here is a short example:
User logs in
User has two options when uploading a file:
Submit a ...
14
votes
6answers
592 views
Where to keep unit tests? [closed]
Possible Duplicate:
Where do the Python unit tests go?
Are unit tests kept in the same file as the code, a separate file in the same directory, or in an entirely different directory?
13
votes
5answers
2k views
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" in Ruby, a search program which is logically organized into multiple ...
13
votes
5answers
499 views
Organizing Extension Methods
How do you organize your Extension Methods? Say if I had extensions for the object class and string class I'm tempted to separate these extension methods into classes IE:
public class ...
12
votes
6answers
1k views
How do you organize code in embedded projects?
Highly embedded (limited code and ram size) projects pose unique challenges for code organization.
I have seen quite a few projects with no organization at all. (Mostly by hardware engineers who, in ...
11
votes
4answers
768 views
How can I organize all my code, data, scripts, tasks etc?
What tools or approaches would you recommend to a 'one-man team' to keep organized?
I'm doing research that involves a lot of coding, writing hundreds of throw-away perl scripts, C++ binaries that ...
10
votes
7answers
339 views
Setting up a large software system in Delphi
We have a software package which is about 16 years old. It's gone through just about every version of Delphi (besides .NET ones). Over the years, things have become very confusing when it comes to ...
10
votes
2answers
403 views
How to organize F# source of large project (>300 classes) in Visual Studio?
In C# you can put files in folders corresponding to their namespaces and view them in the Solution explorer.
In F# it seems I have to put everything in plain specifically ordered list for ...
10
votes
5answers
2k views
best articles about organizing code files in C
Can you recommend me what should I read/learn in order to make a well organized code in C?
One of the things I want to learn is the principles of splitting project in .h and .c files, what goes ...
10
votes
7answers
18k views
Including one C source file in another?
Is it OK (or even recommended/good practice) to #include .c file in another .c file? What happens when they are included in a project file?
9
votes
1answer
125 views
haskell — any way to roll your own group of LANGUAGE pragmas?
I have a Haskell project that regularly uses a lot of language features, and I want the language extension block for each source file to be the same. Here's a list,
{-# LANGUAGE Arrows,
...
7
votes
3answers
90 views
Python: Maintaining code in modules
I'm building a project and I have run into the following problem:
I have implemented several subclasses, each of them having about 250 lines of code. Semantically, they should go together in the same ...
7
votes
5answers
268 views
Do modern C++ compilers inline functions which are called exactly once?
As in, say my header file is:
class A
{
void Complicated();
}
And my source file
void A::Complicated()
{
...really long function...
}
Can I split the source file into
void ...
7
votes
1answer
74 views
Mercurial: Granular Repositories Vs large Repositories and shared third party tools in version control
Scenario:
Various products made up combinations of the smaller projects. A few different versions of each product in dev, release and maintennace (bugs/patches/minor releases).
Most the the team use ...
7
votes
8answers
183 views
Is it ever okay to have a class as a collection of methods and no properties?
I'm writing a bunch of generic-but-related functions to be used by different objects. I want to group the functions, but am not sure if I should put them in a class or simply a flat library file.
...
7
votes
4answers
225 views
How can I stay organized when writing CSS? [closed]
Possible Duplicate:
How to Manage CSS Explosion
One of the most difficult things I find is keeping my stylesheets organized. I usually start out with writing a small reset section. I then ...
7
votes
1answer
696 views
Wrapping an Unmanaged C++ Class Library with C++/CLI - Question 1 - Project/Code Organization
Note: This post represents Question #1 of my inquiry. The introduction block (all text until the numbers are reached) is repeated in both questions as it is background information that may be needed ...
7
votes
3answers
127 views
stuck in a rut, need help breaking through to the next level
I'm working on a humble website with my mediocre, self-taught PHP skills, and the current interface structure is like this:
<?php
if (A) {
$output = someFunc(A);
} else if (B) {
...
7
votes
8answers
202 views
Organising UI code in .NET forms
I'm someone who has taught myself programming, and haven't had any formal training in .NET programming.
A while back, I started C# in order to develop a GUI program to control sensors, and the ...
7
votes
3answers
406 views
Organizing GUI code
My question has two parts:
Does anyone have any tips or references to some documentation on the web about how to write GUI code that is easy to read, write, and maintain?
Example.
I find that the ...
7
votes
8answers
4k views
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, are questions of OO design. They are not the questions I'm interested in here.
...
7
votes
2answers
227 views
Why are the controllers on ASP.NET MVC name-based?
In ASP.NET MVC, we're required to use the suffix "Controller" for all controllers. This seems unnecessarily restrictive - is there a technical reason for it?
I'm mostly just curious, but can see ...
7
votes
5answers
2k views
Python Code Organization Question : Eggs + Packages + Buildout + Unit Tests + SVN
I have several python projects that share common modules. Until now, I've been ... ahem ... keeping multiple copies of the common code and synchronizing by hand. But I'd clearly prefer to do something ...
6
votes
4answers
228 views
What is the best way to use reusable code?
More often then not you will likely come across a situation where you may need a function or procedure, chances are you have already written this code before.
My question is how do you organise it so ...
6
votes
6answers
359 views
How to organise large code files?
I am increasingly aware that my code in any single file can often span hundreds of lines quite easily and although I know the implementation might be sound, it still feels messy and unorganised.
I ...
6
votes
5answers
215 views
Organizing, Storing, and Keeping Track of code for reuse
Many moons ago I started storing my music as MP3’s. I downloaded like mad and just dumped them all into a folder. After collecting thousands of songs I had a big mess. After two years of organizing ...
6
votes
3answers
264 views
I'm about to open source a C++ project on Sourceforge. Can I get some tips on code organization?
I'm about to upload a project I've been working on onto Sourceforge under the GPL, and was hoping to get some advice on how to organize the code in a fashion that is easy to understand and use by any ...
6
votes
6answers
1k views
What is a good way to organize a PHP website application?
When doing large projects my code seems to get all over the place. How do you guys organize your code?
6
votes
4answers
371 views
How to organize your Controllers to get the best structure (MVC)
Whats the best way to organize controllers. Lets say I have a user controller and a register action, should I have a process_registration action as well where I validate and process the data, or just ...
6
votes
3answers
5k views
C++ project source code layout
One of the popular way to organize project directory is more or less like this:
MyLib
+--mylib_class_a.h
mylib_class_a.cpp
mylib_library_private_helpers.h
...
6
votes
3answers
519 views
Organizing Actions in a Swing Application?
My current application has a JFrame with about 15 actions stored as fields within the JFrame. Each of the actions is an anonymous class and some of them are pretty long.
Is it common to break ...
5
votes
3answers
91 views
How should I think about my JavaScript application namespaces?
I'm building an app that has a single global namespace like so:
var myApp = {};
I then have a bunch of different reusable "modules" comprised of models, views and controllers.
//Bar chart module ...
5
votes
2answers
588 views
JavaScript visualization application - code organization, backbone mvc, desktop version etc
I'm setting out to develop a JavaScript web application for visualization, featuring bookmarking of various graphs with annotations etc.
A typical example would be: Given a url state, show two SVG ...
5
votes
3answers
156 views
Preferred way of grouping utility functions in Scala?
What's the best way of grouping utility functions that don't belong in a class? In Ruby, I would have grouped them in a module. Should I use traits in Scala for the same effect, or objects?
5
votes
4answers
434 views
Tips on organizing larger Android projects?
My current project is getting awfully large. I have dozens of activities, adapters, fragments, layout xmls, and other resources.
In my (smaller) previous projects I organized stuff with a 1 package ...
5
votes
1answer
905 views
Git submodule or sub-repository or remote?
I'm using GIT to manage a CMS project.
the CMS can have multiple plugin (module).
So basically, I want to have 3 types of repositories:
The core CMS developpement ( every new project is a checkout ...
5
votes
2answers
848 views
Adding Existing Files To Different Visual Studio 2010 Project
It is possible to add files to a visual studio project that is located in a different directory however keep the files in those directories and update those file when you update the file in the ...
5
votes
3answers
413 views
C# organizing my code
does any tool (VS extension, or maybe Resharper supports this...) exist
which can orginize code in my class in some specified way? Like this :
public static fields/properties
private static ...
5
votes
6answers
1k views
When to put static function definitions in header files in C?
I've come across some code that has a large static function in a header file and i'm just curious when it is/is not ok to do this. For example, if many .c files include the header, why not just define ...
5
votes
4answers
302 views
JavaScript Code Organization Suggestions/Code Review
I am working on a large site that has a lot of custom (page specific js). There is one main.js and page-specific.js files. Is there a better approach that can use the following pattern?
How can I ...
5
votes
2answers
3k views
asp.net mvc2 - controller for master page and code organization
I've just finished my first ASP.NET MVC (2) CMS. Next step is to build website that will show data from CMS's database. This is website design:
#1 (Red box) - displays article categories. ...
5
votes
4answers
1k views
How would you organize a large complex web application (see basic example)?
Just to keep things interesting and close my final open question, the solution that implements the below functionality in a nicely organized manner with a decent architecture gets a good bounty. The ...