The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
29 views

How to deal with unstable API of a globally used framework

The situation: Our chief architect created a C++ library that is intended as a "runtime" for our domain of work (they are really several libs - think sdl, sdl_net, sdl_ttf, however with an C++ ...
0
votes
1answer
75 views

How to organize a java web project?

I am creating a project with Java, JavaScript, html, css and a MySQL database. I am not using any built tool like ant or maven. I am getting a lot of problems during interacting with my JavaScript and ...
0
votes
1answer
50 views

What is a good Visual studio source code layout for cross-project inheritance hierarchies

I develop similar calculation packages for different clients (Bob, Rick, Sue, Eve). The calculation packages consist of several calculation modules (A, B, C, D, ...), which are organized in a "Chain ...
1
vote
1answer
12 views

What is the microsoft recommended page assets organization for site?

I've found that when making a new site I get a structure like this: Content\ themes\ base\ images\ jquery.ui.all.css ... Site.css Controllers\ Models\ ...
1
vote
2answers
87 views

Java Package Organization

I have been struggling for days but I could find a good way to organize packages.I have created some classes and I want to have them in every project like all the java classes but i can't. for example ...
1
vote
1answer
39 views

How do you manage protocol buffer definition files?

At my company, we've standardized on using Protocol Buffers over a message bus as a way to allow services to communicate. This is fine, however I'm running into a problem in trying to figure out how ...
0
votes
2answers
139 views

IntelliJ Idea: add global library dependency as sources

I'm new to IntelliJ Idea and have question connected to module dependencies. Is it possible to add into module dependencies a global library but in the form of source files that I can edit and compile ...
0
votes
3answers
128 views

How to organize java project with IDE?

I'm going to develop java system, that consists of three apps. This apps use same packages. How to organize this project in, for example, IntelliJ IDEA? Must it be on project all sources organised in ...
0
votes
1answer
60 views

Separate Assembly for each ASP.NET Server Control?

I started off creating a new project for each Server Control that I needed to create (for the purposes of flexibility and modularity). My latest project is a control that inherits TextBox in order to ...
0
votes
0answers
122 views

Organizing large c/c++ project in Eclipse

I'm trying to set up eclipse cdt (Indigo) for a large development project and need some help on organizing the eclipse workspace. The project is in its startup phase, parts are completed, but much ...
2
votes
1answer
128 views

Symfony2: Code structure for website, mobile website and API?

I'd like to build a mid-sized website which also includes a mobile website and an API. As I already have some experience with Symfony I'd like to build the project on top of it. However, I have no ...
0
votes
0answers
24 views

Web Development notepad/paint - graphical organizer

Does anyone know of a good graphical organizer hand-tailored for web development? Like for creating a frameworks. Old school pen and paper isn't doing it for me.
0
votes
1answer
50 views

Where should I put serialized objects in a Java program?

Hello you wonderful people, All is not right with the world! I am trying to use JSON to persist objects in a java program. I don't use java often, and I'm using JSON to serialize my obejcts because I ...
0
votes
2answers
51 views

Why is it not sensible to store Django templates within their associated apps?

Per the winning answer to this question and per everything else I've read on the interwebs, you're most likely going to put Django templates for mySubAppX in a folder outside of mySubAppX - most ...
0
votes
3answers
212 views

SSIS: Best pratice to organize a 200+ tables import project

This question is going to be a purely organizational question about SSIS project best practice for medium sized imports. So I have source database which is continuously being enriched with new data. ...
0
votes
1answer
158 views

PHP Project files organization

Hi i seek some help and your experience on the organization of my project. Since this is my first project, I don't know if I am organizing it as I should, this is an e-commerce platform to various ...
0
votes
2answers
45 views

Rails: where to place custom class injections?

i wrote some helper methods for my application like this module Magick class Draw def qrcode(qrcode, left_corner, top_corner, right_corner, bottom_corner) size = qrcode.modules.length ...
0
votes
0answers
64 views

Template parameter used for configuration of classes

My question is design related. I am not sure if this good programming. I am not the well template programmer... I have 2 Questions at the end: I have a big simulation framework (rigid body ...
0
votes
2answers
134 views

MySql/PHP - Designing my first database. Need reviews

I'm designing my first database and writing my first PHP project from scratch and I need someone to review database scheme. Purpose of PHP script: To display traffic statistic for various sites in my ...
1
vote
4answers
67 views

What's the best place to put all logic about generating a report in ruby on rails?

I have many models which I use to obtain data and generate a report. The report doesn't need to be stored, i.e. it's not an active record. But certainly there's like 80 lines of code which generate ...
2
votes
1answer
114 views

Python project organization

Yesterday I started an important Python project and since then I've been searching for documentation on how to organize the code to have a "high-quality" project. There is a lot of articles and ...
0
votes
1answer
102 views

To add or not to add Qt Libs and Headers to the Project Directory

Does it make sense to add relevant Qt Libs and headers (opensource version) to a projects repository or should I just reference them from the sdk directory ? I (alone) am developing a ...
0
votes
2answers
83 views

I really need help organizing my websites files [closed]

Okay I am having trouble organizing all my files for my website. I can't really find an efficient way to organize the files at all. This is how I currently organize my files.. http://imgur.com/knwue ...
1
vote
1answer
160 views

Organizing source (C++)

For a scientific project, I have a templated analysis tool (module A) that uses a type of statistical test (module B). The analysis tool (module A) is used on two types of problems (modules C and D). ...
0
votes
1answer
31 views

Organizing pattern implementations

We have started to use a few patterns in work, most notably, Event Aggregation and Specification. Since these implementations are usually consumed by a large number of projects we are trying to find a ...
1
vote
0answers
134 views

Override target in Ant build script to copy a jar file to libs directory

I currently have a project in a directory named bbct. This contains subdirectories swing, with the Swing version, android with the Android version, and common with code that (possibly) is shared ...
3
votes
2answers
193 views

Strategies for multiplatform project repository design

I am looking for strategies regarding repository layout/design when dealing with multiplatform projects. Usually dependencies are: Project has single name/brand Each platform has separate source ...
6
votes
3answers
215 views

Why are we not using one CSS file instead of many CSS files?

I recently stumbled across a project that has 27 different CSS files used by the same theme, and they are for specific sections in the application, rules split like this: there's a CSS file for the ...
2
votes
1answer
312 views

Remove unused source code files

In Visual Studio 2010 I have a large solution that contains number of .cs files that are no longer used (not referenced in .csproj), but still present in code repository (ClearCase). Do you know of ...
0
votes
1answer
104 views

Organizing Scientific Data and Code - Experiments, Models, Simulation, Implementation

I am working on a robotics research project, and would like to know: Does anyone have suggestions for best practices when organizing scientific data and code? Does anyone know of existing scientific ...
3
votes
1answer
1k views

Angularjs : Code organisation of controllers

I used the angular seed (with the file index-async.html(dependencies loaded asynchronously)) in order to start my web project, but my controllers would need some reorganisation. I have now 3 files ...
1
vote
1answer
295 views

How to organize source files of Java program?

I've created small program in Java. It uses Java classes, some images and generates some other resources (.php files, images, stylesheets etc). I'm compiling sources as .jar and creating an .exe ...
2
votes
2answers
262 views

What's the best way to organise multiple, dependent Objective-C libraries?

First, let me say that yes, this question may be subjective. However, I believe that there is probably a 'best' answer, if all the relevant factors are taken into consideration. In any case, it's ...
-1
votes
0answers
69 views

Suggestions for organizing files, projects and especially pictures from project to project?

I'm really getting overwhelmed with keeping all my files organized between my different projects. Not only that I want to be able to reuse or keep specific code, assets and graphics for new projects. ...
3
votes
4answers
150 views

Why and when to create a multi-module Maven project?

I have a general question about Maven's multi module project. When and why to go for it?
2
votes
1answer
161 views

Ideal README file for Web applications

I am kind of obsessed with how I document and organize my projects. I am curious about best practices for readme files, and looking to learn more about what should be in it. I am mostly using rails. ...
0
votes
1answer
51 views

Is BDD the solution for planning a medium sized project?

I'm starting project number 8,192. Like most of my projects, they are either throw-away projects or projects that get canceled either from boredom, time or lack of usefulness. But there is a project ...
1
vote
2answers
117 views

Git - Independent Branches or Different repos for instances of the same program with slightly different use

I recently started using git and have a question. I have two branches of a program, one which uses algorithm A and one which uses algorithm B. These algorithms do the same thing differently. Now, for ...
2
votes
3answers
70 views

Visual Studio solutions - correct location for utility EXEs needed by your solution

Is there a proper place in a Visual Studio solution for .exes required by your solution. For example I'm working on a tool now that needs VHDCreate.exe, ISOCreate.exe, OSClone.exe and other exes. What ...
0
votes
1answer
103 views

Multiple Python projects organization for deployment and/or distribution

We have multiple Python projects that have dependencies on each other. Hierarchically, these are organized like this: P1 P2 ... Pn Each of these is an PyDev project within Eclipse and they ...
1
vote
2answers
620 views

How to organize a larger PHP project [closed]

I'm trying to organize a larger PHP project with more than 50 files in code, not counting the resource files. It looks like this: administrator files (php code and resource files) database ...
5
votes
1answer
479 views

Organizing solutions, projects and SVN

I would like some help in setting up a project in SVN with regards to directory structure. I have read several answers regarding this on SO, but as I am new to this, most of them are difficult to ...
3
votes
1answer
146 views

How to organize and distribute a Python Application with C extensions?

I'm working on a Python application that is distributed as source (zipped) and via py2exe (majority). Now I want to speed up some modules by replacing them with C extensions. Which works quite well ...
1
vote
1answer
164 views

What is the best way of project's organization? [closed]

I need to develop a simple portable C++ program Billing_Unit. It reads some parameters (telefone number, etc.) and returns the price of call and rest of free minutes. I decided to get data for ...
0
votes
1answer
308 views

Organizing ASP.NET MVC Solutions

I have been working on a large ASP.NET MVC 3 application for a few months now. It wasn't until late in the project that I realized that my controllers were HUGE! Part of the problem with these ...
1
vote
1answer
168 views

How should I set up a git repository with many static assets?

I have a Rails project, with a lot of static assets, mostly images and flash (over 500MB). The whole repository is over 1GB when including git history. The problem is, that as a Rails developer, I ...
0
votes
3answers
499 views

Visual Studio 2010 project creation best practices

I want to create a new project in C# using VS2010 and I wonder what's the best organization in this project. I have some experience with Maven and what I want here it's something that will be as ...
1
vote
2answers
119 views

Storing multiple PHP apps on one domain

I have got myself a server, and on it I'd like to host my portfolio. My portfolio will be built using a tiny PHP MVC framework I wrote myself. This will be accessed by going to domain.com (for ...
7
votes
1answer
443 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 ...
0
votes
1answer
28 views

What's the case for putting NIBs in the Resources/ project group?

I've seen this several times in blog posts and apple sample projects. Where all the NIB files are placed somewhere in the resources directory. It doesn't make that much sense to me. Usually when I ...

1 2 3 4