11
votes
2answers
171 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
49 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 …
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 …
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 …
1
vote
3answers
81 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 …
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 …
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
115 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 …
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 …
1
vote
2answers
123 views
Use a separate WCF project with Silverlight
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 …
2
votes
5answers
117 views
Code organization in Python: Where is a good place to put obscure methods?
I have a class called Path for which there are defined about 10 methods, in a dedicated module Path.py. Recently I had a need to write 5 more methods for Path, however these new methods are quite …
0
votes
3answers
130 views
Why does django enforce all model classes to be in models.py?
I have just learned that splitting model classes into different files breaks many of django's built-in functionalities.
I am coming from a java background. There, it is not accepted as a good …
0
votes
3answers
93 views
Creating classes or just using associative arrays for XML data in PHP?
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?
Using Twitter's API as an example, I …
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 …
