Tagged Questions

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 …
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 …
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 …
12
votes
6answers
1k 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 …
12
votes
6answers
490 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
2answers
191 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 …
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 …
9
votes
4answers
340 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 …
8
votes
7answers
269 views

Where to keep unit tests?

Are unit tests kept in the same file as the code, a separate file in the same directory, or in an entirely different directory?
6
votes
4answers
836 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 …
5
votes
3answers
201 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
2answers
177 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 …
5
votes
5answers
252 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 …
4
votes
8answers
277 views

Is it impossible to separate javascript from HTML?

To be specific, I'm talking about avoiding this type of code: <input type='text' id='title_33' class='title' onfocus='updateCharsLeft(33);' onkeypress='updateCharsLeft(33);' /> Here I …
4
votes
11answers
152 views

Pros and Cons regarding extended use of branches.

I want to be able to choose the right branching strategy for most thinkable situations and organizations. So I'm looking for a extensive list of positive and negative effects of extending the use of …

1 2 3 4 next
15 30 50 per page