Top "Code-organization" questions

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

Should 'using' directives be inside or outside the namespace?

I have been running StyleCop over some C# code, and it keeps reporting that my using directives should be inside …

c# .net namespaces stylecop code-organization
Including one C source file in another?

Is it OK (or even recommended/good practice) to #include a .c file in another .c file?

c include c-preprocessor code-organization project-organization
Where do the Python unit tests go?

If you're writing a library, or an app, where do the unit test files go? It's nice to separate the …

python unit-testing code-organization
Can maven projects have multiple parents?

We have Java and Flex projects. We currently have 1 base pom that contains the configurations we want to use for …

java apache-flex maven-2 code-organization
NetBeans shortcut key for collapsing/expanding a method

JAVA - NETBEANS This is an IDE question I am always working with collapsed methods, because I want to be …

java netbeans code-organization expand collapse
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. …

python unit-testing code-organization
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 …

c static header code-organization
How to organize large R programs?

When I undertake an R project of any complexity, my scripts quickly get long and confusing. What are some practices …

r package conventions code-organization project-organization
Domain Driven Design - how the layers should be organized?

I'm very much new to software development. I think layered architecture is a great way to reduce the complexities that …

domain-driven-design repository code-organization project-organization layer
C++ Header order

What order should headers be declared in a header / cpp file? Obviously those that are required by subsequent headers should …

c++ header include code-organization