Tagged Questions

2
votes
2answers
53 views

How do you import your own convenience function modules in Python?

Python can only import files from the current working directory, or from its path, I guess, but this means that if I'm working in a subdirectory on a certain project, I can't impor …
1
vote
4answers
186 views

Default directory layout for Java project

Is there any standard directory layouts for Java projects? What layout do you prefer most? I'm asking about more complex layout than just 'src' and 'bin' in project's directory (i …
3
votes
10answers
253 views

How Granular are your SVN “projects”: one big project containing several releated apps or one “project’ per app

I define a project as an SVN directory containing trunk, branches, tags sub dirs. What criteria do you use when determining when to split a project into two or consolidate several …
2
votes
8answers
544 views

Should I put many functions into one file? Or, more or less, one function per file?

I love to organize my code, so ideally I want one class per file or, when I have non-member functions, one function per file. The reasons are: When I read the code I will always …
4
votes
13answers
2k views

On XP, best way to synchronize files and folders.

I'm using SyncToy 1.4 and it would be fine for what I need except that: It can't handle the assigned drive letter changing between systems (e.g. syncing a USB drive), it leaves …
8
votes
3answers
752 views

How to store images in your filesystem

Currently, I've got images (max. 6MB) stored as BLOB in a InnoDB table. As the size of the data is growing, the nightly backup is growing slower and slower hindering normal perform …
16
votes
10answers
659 views

Organization of C files

I'm used to doing all my coding in one C file. However, I'm working on a project large enough that it becomes impractical to do so. I've been #including them together but I've run …
2
votes
10answers
1k views

Multiple classes in a header file vs. a single header file per class

For whatever reason, our company has a coding guideline that states: Each class shall have it's own header and implementation file. So if we wrote a class called MyString we woul …