Tagged Questions
The project-organization tag has no wiki summary.
20
votes
2answers
1k views
What are common conventions for using namespaces in Clojure?
I'm having trouble finding good advice and common practices for the use of namespaces in Clojure. I realize that namespaces are not the same as Java packages so I'm trying to tease out the ...
20
votes
5answers
5k views
Organising my Python project
I'm starting a Python project and expect to have 20 or more classes in it. As is good practice I want to put them in a separate file each. However, the project directory quickly becomes swamped with ...
13
votes
5answers
2k views
System for organizing multi-file Ruby programs?
Is there a standard or conventional system for organizing multi-file Ruby programs? I have embarked on my first large "project" in Ruby, a search program which is logically organized into multiple ...
12
votes
4answers
1k views
Django: “projects” vs “apps”
I have a fairly complex "product" I'm getting ready to build using Django. I'm going to avoid using the terms "project" and "application" in this context, because I'm not clear on their specific ...
12
votes
2answers
2k views
How to organize the project tree for a C++ project using nmake?
There seems to be two major conventions for organizing project files and then many variations.
Convention 1: High-level type directories, project sub-directories
For example, the wxWidgets project ...
11
votes
4answers
769 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 ...
10
votes
7answers
19k views
Including one C source file in another?
Is it OK (or even recommended/good practice) to #include .c file in another .c file? What happens when they are included in a project file?
8
votes
12answers
2k views
Should QA report to development?
Here's a question I've run across in many, many companies: should QA teams report to the development organization, or be equivalent to development in the company hierarchy?
6
votes
1answer
142 views
How to properly configure a cross-platform Delphi XE2 project?
Right now I have 2 platforms (Mac and Win32) and 2 configs (Debug ans Release). Whole thing is under SVN.
Here is layout for build output:
.\App\$(Platform)\$(Config)
The code is split into few ...
6
votes
2answers
1k views
organization of Redmine projects?
I'm the sole developer working on a couple of webapp sites. I have them in subversion, but I'm not using a project management tool.
I recently got redmine up and going, and I want to set up the ...
6
votes
3answers
5k views
C++ project source code layout
One of the popular way to organize project directory is more or less like this:
MyLib
+--mylib_class_a.h
mylib_class_a.cpp
mylib_library_private_helpers.h
...
6
votes
5answers
1k views
How to organize packages (and prevent dependency cycles)?
I've been running some metrics on my Java project and apparently there are a lot of dependency cycles between packages. I didn't really know how to organize stuff into packages, so I just did what ...
6
votes
3answers
420 views
How do you come up with names for your namespaces?
I'll preface this by saying that I usually work in C#/.Net.
Normally, I use a naming scheme that puts common, reusable components into a namespace that reflects our organization and project-specific ...
6
votes
5answers
963 views
SVN Project(s) organization: per-module or per-project
I have a subversion repository that contains a number so subfolders, corresponding to the various applications, configuration files, DLLs, etc (I'll call them 'modules') that make up my project. Now ...
5
votes
3answers
79 views
Should I mix technologies within assemblies?
I have a medium-sized project, which implements about 20 or so different concepts. At the beginning, I chose to organize my assemblies based on conceptual layers, like so:
MyProject.Domain.dll ...
5
votes
1answer
910 views
Git submodule or sub-repository or remote?
I'm using GIT to manage a CMS project.
the CMS can have multiple plugin (module).
So basically, I want to have 3 types of repositories:
The core CMS developpement ( every new project is a checkout ...
5
votes
4answers
4k views
Eclipse Java project folder organization
I am coming to Java and Eclipse from a C#/Visual Studio background. In the latter, I would normally organize a solution like so:
\MyProjects\MyApp\MyAppsUtilities\LowerLevelStuff
where MyApp would ...
5
votes
7answers
700 views
Reasons to split project into multiple projects?
What are common reasons to split a development project (e.g. ASP.NET MVC application) into multiple projects? Code organization can be done via folders just as well. Multiple projects tend to generate ...
5
votes
8answers
4k views
How to avoid circular unit reference?
Imagine the following two classes of a chess game:
TChessBoard = class
private
FBoard : array [1..8, 1..8] of TChessPiece;
...
end;
TChessPiece = class abstract
public
procedure GetMoveTargets ...
5
votes
6answers
209 views
How does your organization handle common components?
A common component is a library or some other piece of code that is created and maintained by one group and used by many groups.
Some problems we have are:
The users don't report issues with the ...
5
votes
4answers
386 views
Is a good idea to put all projects in the same trunk?
We understand the default and usually recommended svn repository organization, in case of having multiple projects, is something like this:
root/projectA/(trunk, branches, tags)
root/projectB/(trunk, ...
5
votes
4answers
603 views
how do you organize your namespaces?
So I have logical entities (person, country, etc.), GUI elements / controls, data and navigation controllers / managers, then things like quad-trees and timers, and I always struggle with cleanly ...
4
votes
5answers
160 views
Where do I put all these interfaces?
I'm trying to get my feet wet with unit testing. I'm currently not in the habit of writing interfaces for classes unless I foresee some reason I would need to swap in a different implementation. Well, ...
4
votes
1answer
190 views
CherryPy : Is there a best way to split the project in multiple files?
I'm new to CherryPy, coming from Django. I liked the way Django split the various parts of the project into many files, and I'd like to do the same in CherryPy, instead of having one big file.
I ...
4
votes
4answers
1k views
How to organize a Python Project?
I'm new to Python and I'm starting a mini Project. but I have some doubts on how to organize the folders in the "Python Way".
I'm using PyDev in my Development Environment, and when I create a new ...
4
votes
3answers
330 views
Javascript organization strategies for Rails 3
I'm currently working on an application with a lot of javascript code. I'm writing inline javascript code on every of the pages/partials, however most of the code is re-utilized somewhere else. I'm ...
4
votes
6answers
283 views
Bleeding edge vs field tested technology. How will you strike a balance
I have been pondering about this for some time. How do you pick a technology ( am not talking about Java vs .Net vs PHP) when you are planning for a new project /maintaining an existing project in an ...
4
votes
2answers
144 views
Where should I put JavaScript files that need to be internationalized in a Django project?
Currently all JavaScript files are served from our static/media directory in the top level project directory. When running makemassages -d djangojs it will generate the locale directory in the top ...
4
votes
1answer
142 views
Organizing a project that uses multiple languages?
I am currently working on a project that has components in perl, .NET, C/C++, and Java. These components are inter-related, but are not tied to the same release schedule. Due to the very different ...
3
votes
4answers
77 views
Format to include data in C# code
I have a program that uses tables of hard-coded values. E.g.
public static readonly IDictionary<SpecBuild, BuildInfo> Builds = new Dictionary<SpecBuild, BuildInfo> {
{ ...
3
votes
3answers
155 views
.NET project / namespace organization question
We have a framework that defines many interfaces and some basic default implementations. Let's call it CompanyFramework. I have some ASP.NET MVC extensions, currently stored in a separate project ...
3
votes
1answer
380 views
DDD: how the layers should be organized?
I’m very much new in software development. Personally I think layered architecture is a great way to reduce the complexities that arise in the process of software development in object oriented ...
3
votes
2answers
227 views
testing multiple folders
I use PHPUnit 3.5.12, netbean 6.9, and git submodules in my project.
So my folder architecture looks like that:
lib/
lib/submodule1
lib/submodule1/src
lib/submodule1/tests
lib/submodule2
...
3
votes
1answer
353 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
2answers
202 views
How do I organize an asp.NET MVC project to allow for a “lite” version
I am migrating an web forms app to ASP.NET MVC. Down the road we may want to offer a "lite" version of this application. This is a pretty vague concept, but I expect the underlying database would be ...
3
votes
1answer
1k views
Best practices when Design iPhone Game with MVC?
I have made two games for the iPhone already, the first one was a mess, and the second one is less messy but still, not perfect.
I would love to hear if someone had some links that pointed to good ...
3
votes
3answers
728 views
Project Organization in C Best Practices
I am wondering what the best practices are for organizing a large C project are. It is a professional project, not an open source one, likely to be stored in a Git repository. How should things be ...
3
votes
3answers
1k views
C# single project organization
I am reorganizing my source files into a single solution with a single project, due to various reasons:
a paranoic configured antivirus software;
Advices on partitioning code through .NET assemblies
...
3
votes
5answers
881 views
Project dependencies across multiple Visual Studio versions
I have 3 .net projects.
Project1.dll is generated by a VS2008 project.
Project2.dll is generated by a VS2005 project that references Project1.dll.
Project3.dll is generated by a VS2008 project ...
2
votes
2answers
60 views
Model-View-Presenter, where does the View's interface belong?
I'm taking another look at Model-View-Presenter (or Supervising Controller, whatever it's called nowadays) since we use WebForms exclusively at work and I think the separation of concerns can help.
...
2
votes
2answers
48 views
Transitioning Multi-Headed Projects from SVN to HG
We are joining the modern world and transitioning from SVN to Mercurial for source control. Most of it is pretty straightforward -- just import the current trunk into HG and clone. One project is a ...
2
votes
1answer
410 views
Xcode 4, subproject import problem
I want to add a project as a subproject. When I drag the subproject into the main project it appears as a file reference rather than subproject. The picture below explains the problem:
2
votes
2answers
387 views
Build Server - install external control libraries (DevExpress) on build server
what's the right way?
We have one build server for our projects.
We have different projects, wich reference different versions of DevExpress.
Should we install every DevExpress
Version on the ...
2
votes
2answers
2k views
Organizing iOS project for MVC design pattern
I'm working on a multiview app for iPhone and currently have my views (VIEW) set up and their transitions (CONTROLLER?) working nicely. Now I'd like to add objects for the actual program data (MODEL).
...
2
votes
2answers
190 views
Organizing a Flex Project for Team Use
I'm new to Flex/Actionscript/FlashBuilder, and I don't quite get all the organization concepts. Our teams project is primarily ASP.NET based, so it doesn't have a lot of Flex code. There hasn't really ...
2
votes
3answers
164 views
The best managment tool [closed]
Who can suggest the best managment tool for collabortive work which has:
Gantt digramm like in MS Project (not just report like in redmine);
tracking system (like in redmine);
web-interface;
...
2
votes
2answers
196 views
Organize heavy python imports
About 25% of my code depends on the modules: Traits, tvtk, ... which are quite heavy to import. It typically takes a good 2 seconds on my machine (and more on other).
My modules are organized as the ...
2
votes
2answers
109 views
Version control for multiple instances of a developing code
I work in an engineering lab, not a computer science lab. As such, our in-house software is not the deliverable product. Instead, the in-house software is used to analyze engineering problems, and we ...
2
votes
1answer
60 views
Project organization with professionals and students
I am working as a PhD student developing scientific/engineering simulations and algorithms to be tested in these simulations. These days the first student started to work on my project (for his ...
2
votes
3answers
301 views
how to work on a project with visual studio and eclipse
we are currently starting a project involving people on windows and linux and using SVN.
The problem is that people who want to use Visual Studio (2010 for most of them) have problem with the folder ...