Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
3answers
3k 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 performance. So, the ...
16
votes
9answers
2k 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 into cases where I'm ...
6
votes
9answers
678 views

Should I use #include in headers?

Is it necessary to #include some file, if inside a header (*.h), types defined in this file are used? For instance, if I use GLib and wish to use the gchar basic type in a structure defined in my ...
6
votes
10answers
587 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 projects into one? ...
5
votes
14answers
5k 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 its own (hidden) ...
5
votes
11answers
7k 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 would need an associated ...
4
votes
1answer
347 views

Workflow to create Xcode groups as file system folders

I like organizing my classes into groups, in the Xcode 4 project navigator pane. I also use GIT versioning via the terminal, which works better for me than the Xcode 4 integration. To me it makes the ...
3
votes
2answers
453 views

Best practices for maintaining cronjobs and shell scripts?

I have inherited a sprawling crontab that I need to maintain and update. I don't have much experience with it or bash scripting (I think I've got a decent grip on the basics) and I want to do a good ...
3
votes
1answer
352 views

Ruby on Rails: How to organize properly JS and CSS files?

I would like to use the SlickGrid plugin in my Rails 3 application. I contains several JS and CSS files that I should include in my HTML page. It is possible to put all the needed JS files in the ...
3
votes
1answer
325 views

How to organize SQL script files & folders

We have an Oracle 10g database (a huge one) in our company, and I provide employees with data upon their requests. My problem is, I save almost every SQL query I wrote, and now my list has grown too ...
2
votes
1answer
121 views

Eclipse Organize Packages into Folder Heirarchy

I have a bunch of packages in an Eclipse project they have names like: edu.xxx.proj.app edu.xxx.proj.demo edu.xxx.proj.utils Is there a way in Eclipse to automatically collapse them into a folder ...
2
votes
2answers
756 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 import stuff from a ...
2
votes
8answers
1k 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 know in what file I ...
1
vote
4answers
43 views

Directory Structure Logic

I am trying to create a folder structure like so: Uploaded files a aaron.doe@hotmail.com b c ...all the way to z one level ABOVE the public web directory. The only unique key (besides the ...
1
vote
1answer
35 views

Proper layout of python packages for a Graphical User Interface (GUI)

On the project I'm currently working on (a GUI for a testing system) I'm required to write base classes for all graphical objects and inherit these objects into the class which utilises the graphical ...
1
vote
0answers
39 views

How to organize Interfaces/classes/implementations in the project

I found some questions about how to organise projects (namespace, one class per file etc), but on a more specific note, how do you organize "things" that are very tightly related ? I usually end up ...
1
vote
1answer
107 views

Scalable directory structure for user submissions

Our team is in the process of switching over our media library storage engine from database BLOB storage over to file system (We are using the LAMP stack, PHP is ver 5.3). Virtually all the content ...
1
vote
0answers
130 views

Photo Organizer Server

Does anybody know of a server side project that can be used to organize photos? I have tons of images and I want to have them on a server. The functionality that I'm looking is very simple: be ...
1
vote
5answers
2k 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.e. where do you put ...
0
votes
0answers
22 views

Making software, which language is optimal to use? [closed]

I am home for the holidays and with the spare time, i have decided to make few softwares that would be useful to me, and mainly for the learning purpose [ i am looking forward to using existing ...
0
votes
2answers
23 views

separation of js / css and it's effect on caching

Say I have the following setup: Page1.html Includes master.css, page1.css and page1.js Page2.html Includes master.css, page2.css and page2.js I have been told that merging the two js and ...
0
votes
2answers
85 views

Organizing Actionscript project

I'm learning different programing languages for more than 4 years, but I have never thought about how to organize stuff, because in php its more easier than flash. Now I need to make a radio player, ...
0
votes
2answers
92 views

Python: How to loop a process

I'm working on making a small app/script for putting my mp3's in a folder hierarchy the way I want it, as I haven't found a solution for Unix that is just quite right. So I decided to work on my own. ...
0
votes
2answers
290 views

Folder structure for scripts and stylesheets vs plugins

I am curious as to the best practices/most efficient way to structure my data. options All scripts go in scripts folder, all stylesheets go in css folder. concerns with this method is that plugins ...
0
votes
1answer
46 views

Backup or file syncronization between local network PC's

We're working on a site who's document management policy is to put all files onto the network (i.e. My Documents mapped to a network server) for all personal or project related documents, or files. ...
0
votes
2answers
99 views

Files organization: Where should exception extended classes be placed?

Let's say we have several exception classes that extends exception. My question is, in order to proper organize our files, where should those classes be placed ? i.e - Are they helper classes? One ...
0
votes
2answers
199 views

Subversion svn:externals - What's wrong here?

I first want to say I've read the Subversion manual. I've read this question. I've also read this question. Here's my dilemma. Let's say I have 3 repositories laid out like this: DataAccessObject/ ...