2
votes
2answers
70 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 …
0
votes
3answers
45 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 b …
1
vote
2answers
107 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? D …
1
vote
6answers
94 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 …
0
votes
2answers
34 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 actio …
11
votes
9answers
502 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 restricti …
3
votes
8answers
305 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 …
1
vote
3answers
60 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 inh …
0
votes
5answers
101 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/#endregio …
17
votes
21answers
1k 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). Unfortunat …
2
votes
7answers
167 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 t …
2
votes
3answers
86 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 op …
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 uploadi …
20
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 st …
1
vote
2answers
113 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 …
