11
votes
2answers
186 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 …
2
votes
2answers
82 views
Organizing Python projects with shared packages
What is the best way to organize and develop a project composed of many small scripts sharing one (or more) larger Python libraries?
We have a bunch of programs in our repository that all use the …
0
votes
3answers
51 views
How to organize OO js code in files? Local network application
I'm currently developing an application that will be run on local network in B2B environment. So I can almost forget about micro(mini?) optimizations in terms of saving bandwidth because Hardware Is …
1
vote
2answers
117 views
Folder and file organization for Python development
Hello guys.
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 …
11
votes
9answers
510 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 …
1
vote
6answers
95 views
Organize small utilities functions
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 …
16
votes
21answers
2k 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 …
0
votes
2answers
36 views
How should I organize my ajax actions files
I would like to know what's the best way to organize my php project with ajaxActions files.
At the moment I have a few ./process/ajaxAction_pagename.php files containing my actions like this:
if …
2
votes
8answers
306 views
Organizing Classes in PHP
Suppose I've the following classes in my project:
class Is // validation class
class Math // number manipulation class
Now, if I want to validate a given number for primality where …
0
votes
5answers
116 views
how to organize the code similar to #region/#endregion in .NET?
Hi,
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 …
1
vote
3answers
84 views
Can maven projects have multiple parents?
Hi,
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 …
2
votes
7answers
174 views
Is it naughty to have a large utility file?
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 …
22
votes
5answers
2k 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 …
14
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 …
2
votes
3answers
92 views
What is this dashed line called that aligns function blocks in my IDE?
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 …
