Tagged Questions
The organization tag has no wiki summary.
282
votes
13answers
19k views
How to Manage CSS Explosion
I have been heavily relying on CSS for a website that I am working on (currently, everything is done as property values within each tag on the website and I'm trying to get away from that to make ...
53
votes
24answers
5k 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 ...
25
votes
7answers
773 views
How should I organize a general-purpose programming library's directory structure?
I've been writing my own general-purpose PHP library for a while and I'm thinking about how to organize the directory structure, but I wanted to get people's ideas before I formalized the directory ...
21
votes
13answers
701 views
How to stay DRY? Do Not Repeat Yourself!
I find that one of the most frustrating aspects to software development is finding a solution to a problem, forgetting it, then being faced with the same issue in the future only to forgot how you ...
19
votes
5answers
2k views
Alphabetizing methods in Visual Studio
Is there any sort of plug-in or tool available for Visual Studio 2008 to alphabetize methods? Ideally I'd like a tool that will alphabetize a selection, or specified type (i.e. only methods, not ...
15
votes
6answers
4k views
Application Architect vs. Systems Architect vs. Enterprise Architect?
So many buzzwords. Not sure if I need to start playing BS Bingo or not. And I'm not trying to be cynical. But I've heard many people with these various titles. There never seems to be a clear ...
15
votes
17answers
2k views
How do you organize your work?
How do you work? More specifically, how do you keep your programming tasks organized.
When I do Mac development at home I use software called an outliner to organize, keep notes and prioritize the ...
15
votes
6answers
10k views
C++ class header files organization
What are the C++ coding and file organization guidelines you suggest for people who have to deal with lots of interdependent classes spread over several source and header files?
I have this situation ...
15
votes
11answers
1k views
SVN: Branches for Every Little Change?
We have a client (who has a client, who has a client) who is driving us mad with change requests to a code base (in PHP). Our first response was to just work in a main trunk in SVN, but the client ...
13
votes
1answer
82 views
php code organization
We just got new servers for our new system and I want to know what I should do to make my new code as efficient as possible, and how to organize it.
I want a good solution so I don't have to ...
11
votes
1answer
276 views
small code redundancy within while-loops (doesn't feel clean)
So, in Python (though I think it can be applied to many languages), I find myself with something like this quite often:
the_input = raw_input("what to print?\n")
while the_input != "quit":
print ...
11
votes
2answers
463 views
How to organize files in Haskell programs?
I've just started playing around in Haskell. After years of Ruby, I got used to a file organization that's used by Ruby on Rails or Rugui.
Are there any guidelines, best practices, or maybe even ...
10
votes
2answers
770 views
jQuery code organization and performance
After doing some research on the subject, I've been experimenting a lot with patterns to organize my jQuery code (Rebecca Murphy did a presentation on this at the jQuery Conference for example).
...
9
votes
2answers
539 views
Large backbone.js web app organization
I'm currently working on a large web app built on backbone.js and have been having a lot of issues with organization, "zombies," etc. so I've decided to do a major refactor of code. I've already ...
9
votes
6answers
1k views
How should I organize my xCode project files?
I'm trying to wrap my head around xCode's file organization - or lack there of. I can do all I wan in project and it looks great with all the "fake" folders and structure. I go look at the file system ...
9
votes
6answers
394 views
Managing jQuery Plugins
Often, when working with jQuery, the need arises to include multiple plugins. This can quickly become messy work, especially when some plugins require additional components (images and CSS files).
...
9
votes
2answers
424 views
Writing Python packages with multiple C modules
I am writing a Python C extension which uses the pygame C API. So far so good. Now I wonder how I organize my source code so that I can have multiple submodules in the package. All the tutorials out ...
9
votes
5answers
3k views
What is the standard way to organize iPhone MVC code in XCode?
I have an iPhone application that contains several views and their associated controllers. Looking at sample code, I've seen different different ways to organize these files - either have all of the ...
8
votes
5answers
1k views
How to Organise a Domain Driven Design Project?
I've started learning about DDD and wanted to know how others have organised their projects.
I've started off by organising around my AggregateRoots:
MyApp.Domain (namespace for domain model)
...
8
votes
5answers
689 views
Namespace Rule of Thumb
Is there a general rule of thumb as to how many classes, interfaces etc should go in to a given name space before the items should be further classfied in to a new name space? Like a best practice or ...
7
votes
4answers
147 views
What is the proper way to structure/organize javascript for a large application?
Let's say you are building a large application, and you expect to have tons of javascript on the site. Even if you separated the javascript into 1 file per page where javascript is used, you'd still ...
7
votes
1answer
1k views
How do you organize your Backbone files?
I'm looking to implement backbone into a large web project with multiple "apps" that will be using it and I'm trying to figure out a good way to organize my files. The two I've come up with so far ...
7
votes
8answers
418 views
What is the optimal way of organizing a C# project?
I was wondering here, how do you guys organize your projects, in terms of funcionality, scope, etc.
Do you have one project for unit tests, one project for class library code, one project for User ...
7
votes
3answers
10k views
Where can I find jQuery or Ext plugins for creating organization charts?
I know we can create an organization chart with Google Chart Tools.
But my client's server doesn't have an Internet connection.
Are there any jQuery or Ext plugins for creating an organization ...
6
votes
4answers
238 views
Organizing partials for a polymorphic resource
I'm looking for how others typically organize their partials for a polymorphic resource.
Example:
I have Image which is polymorphic and depending on what is imageable, I want to display things ...
6
votes
1answer
155 views
Repository organization for Hadoop project
I am starting on a new Hadoop project that will have multiple hadoop jobs(and hence multiple jar files). Using mercurial for source control, I was wondering what would be optimal way of organizing the ...
6
votes
7answers
232 views
Programming, publishing results, and getting help of your boss
let's say that you are working in a public scientific and computer programming research center as research associate and that you are not independent and have kind of a boss. Let's say that you create ...
6
votes
4answers
429 views
eclipse : how to differentiate/distinguish different open workspaces
I will need to use multiple workspaces for a recent project. Each workspace might consist of 10 or more projects.
When I'm switching between various applications and different eclipse instances(for ...
6
votes
6answers
298 views
Work in several projects at the same time
I wonder who of you can work on several projects the same day, dedicating only a short piece of time for each one. Or if you are able to work in the same hour, on two or three or more projects at the ...
6
votes
3answers
241 views
Snippets for productivity - collect good code
I was wondering whether there're recommendable sites, that host collections of good and useful code-snippets.
Searching stackoverflow, to be honest, sometimes is priceless.
- But if you know sites ...
6
votes
5answers
1k views
How do you manage and organize your files? (scripts, repos, downloads, pdf's, etc)
Like many of you, I have to deal with a large amount of files: source code, binary downloads, spreadsheets, pdf's, word docs, images, note files, quick scripts, and more.
These files can fall into ...
6
votes
3answers
1k views
How do you organize your Documentation?
I need a documentation system for a team. This team, man, we got a big ol' web service, and we got new products in the pipeline. And currently, there's only a wiki hosted on a trac system. And believe ...
6
votes
6answers
1k views
How do I coherently organize modules for a PyGTK desktop application?
I am working on a desktop application in PyGTK and seem to be bumping up against some limitations of my file organization. Thus far I've structured my project this way:
application.py - holds the ...
6
votes
9answers
985 views
What are some effective organization strategies?
As a programmer, I am very organized with code, but find creating order in the area around me difficult. In particular, papers accumulate around me, and I just focus more on the computer and less on ...
5
votes
3answers
173 views
How Can I organize the development as a lone developer
At my job I sit myself and develop custom applications for our customers. I've looked at the agile way of working, but it is for teams. Right now I'm working pretty add-hoc. Is there a methodology for ...
5
votes
3answers
268 views
What's the best way to organize this project?
I'm currently trying to find out the best way to organize a project I'm currently working on. It's going to be an SDK that people can use.
However, I'm a little bit strugling with organizing the ...
5
votes
2answers
527 views
Android Organizing Strings.xml
I'm making an android app and since I've just started I want to try get the most organised code/resources. In my strings.xml file so far I have this:
<?xml version="1.0" encoding="utf-8"?>
...
5
votes
2answers
1k views
Personal GIT repository
I use BitKeeper at work, and I would like to have a basic code backup for myself at home (considering I back up very rarely)
// I have never used git before so I need lots of help
I thought it might ...
5
votes
3answers
300 views
One repository/multiple projects without getting mixed up?
After reading Joel's last article on Mercurial, I'm giving it a shot on XP as a single-user, single-computer source control system.
One thing I'd like to check, though, is: It'd be easier to just ...
5
votes
3answers
1k views
How do you organize your code workspace and home folder?
How do you organize your personal workspace for your code projects in your home folder? And how do you keep the workspace efficient for handling multiple projects at the same time?
The most ...
5
votes
9answers
1k views
What do you use the svn tags directory for anyways?
Ok so we all know the standard SVN set-up of
trunk\
branches\
tags\
And I realize that the recommendation is that tags should have "special" commits in it. I've never really used the tags ...
5
votes
5answers
285 views
Adopting Open Source Software in an organization
What are the pros and cons of adopting Open Source software for an organisation? Is there anybody out there who has done this and how well has it been working out with some examples of the softwares ...
4
votes
3answers
68 views
Initialize Array in an array
With my Tile Editor that I created I get an Array like this:
int [][] Level02 = new int[][] {
{ 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, ...
4
votes
3answers
72 views
How to treat future requirements in terms of TDD
While attempting to adopt more TDD practices lately on a project I've run into to a situation regarding tests that cover future requirements which has me curious about how others are solving this ...
4
votes
1answer
126 views
Organizing objects and libraries
I've been creating a small number of libraries / classes from scratch in php. I come from a codeigniter background, and I'm trying to make some libraries with similar functionality. I keep running ...
4
votes
2answers
192 views
Project Organization using Maven + Git
Our team is currently in the process of moving from SVN to Git. We currently use Maven as our build tool.
Currently our projects have a build hierarchy through Maven, but are flat on the file ...
4
votes
2answers
253 views
Rails 3 - how to organize / split up bloated controllers?
I've been working on a CMS app to sharpen up my skills and the controllers are getting quite bloated with the definitions. I know it's possible to store stuff in lib/whatever.rb and then use require ...
4
votes
2answers
339 views
Creating a modular and organized javascript heavy website
I'm looking for some general tips on how to keep my Javascript organized and modular.
The latest javascript heavy project i've worked on looks like the following (formatted ...
4
votes
9answers
486 views
Using classes to organize code?
At the moment my Form1 code is extremely heavy, mainly full of menu and control events. One thing I would like to do is organize it in some way, so I could expand or collapse "related code" (in Visual ...
4
votes
2answers
1k views
How to organize “projects” and “solutions” in Eclipse?
I've been told that an Eclipse workspace is the equivalent of a Visual Studio solution. But I've also been told that people commonly use a single workspace for all their work. Are these apparently ...