Code organization is the way how code is placed in a project.

learn more… | top users | synonyms

0
votes
1answer
15 views

Is there a way to provide a predefined folder structure in SVN?

I am working on several C++ projects on my local computer. They all use some common libs and headers. The file structure is like this: -bin -lib -include -devel -project1 -src -project2 ...
0
votes
2answers
26 views

Commonly accepted best practice for using newlines [closed]

As an extremely jr Software Engineer, I'm trying to make sure I develop good habits. The challenge of using newlines when displaying output seems very simple (I'm sure to those who are seasoned), but ...
-1
votes
0answers
46 views

Best Coding Practices Javascript Application [closed]

I just have a somewhat simple question on coding practices. I have never written a large application before and I am currently working on building a game engine in Javascript. The part that confuses ...
-2
votes
0answers
35 views

Any one has open source of GUI designed in Java Swing to share? [closed]

Without using GUI builder or other tools, just pure coding i would like to see code and architecture organization. Thanks in advance!
0
votes
1answer
34 views

Generating modern js-based rich client from server side?

I am working on a intra-net project, which uses javascript for client side effects/widgets, like tree, grid, dragging. We are thinking about to use jquery/backbone plus some jquery ui. The problem ...
5
votes
2answers
80 views

How to organize the API Url's in Objective-C

I am trying to organize all my API url's in a single file, what I am doing is I created a header file and added the following lines #define LOGIN_URL @"http://192.168.100.100/api/login" ...
0
votes
1answer
42 views

Best Practices for Organizing Android Code

I have been coding an Android app that has a lot of code dedicated to it. As you can imagine, there's lots of case-driven code in there. Because most of Android callback functionality is based on ...
1
vote
1answer
43 views

Organizing sqlite3 C/C++ prepared statements (avoiding mess of global code)

I'm writing an application that needs to use prepared statements to get the performance benefit, but I'm wondering when you have application with dozens if not hundreds of prepared statements, how do ...
0
votes
1answer
29 views

Including html fragments as modules

I'm trying to organize my website in a modular way using a server side include system. The idea is that every module will have it's own css and own javascript and will only be loaded once included on ...
2
votes
1answer
62 views

Where to Put MVVM CustomControl ViewModels/Classes WPF

I am currently working in MVVM and have created a xaml "TargetType" class for my custom-styled searchTextBox control. Problem is, I am wondering how where to put these files/what to call the folder ...
0
votes
1answer
49 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 ...
3
votes
5answers
91 views

Are there any advantages of _not_ using multiple files in a code-project? (C++) [duplicate]

As opposed to What are the advantages of using more then 1 code file for a project? (C++) I'd like to know whether there are (technical or other) advantages of not using multiple code-files for a, for ...
15
votes
4answers
538 views

What are the advantages of using more then 1 code file for a project? (C++) [closed]

What are the advantages of using multiple source (.cpp) and header (.h) files in a single project? Is it just a preferential thing or are there true benefits?
5
votes
3answers
121 views

Programming approach theory. When to write single-purpose functions?

I am very sorry, but I am unable to define this "thing" that I'm trying to figure out. When writing functions we can take different approaches, I have made some "placeholder" examples: ...
0
votes
3answers
91 views

Program organization in java Eclipse project [closed]

I am new to java and Eclipse and this question is related to the organization of the java classes in a large Eclipse project. I am working on a project that has several classes (of the order of ...
6
votes
6answers
134 views

Should we put classes, enums and other entities to their's own files? [closed]

I had a discussion with our's company teamlead\architect on this topic. He argues that it is easier to understand the large-scale project if "entities connected by logic" are placed in one cs-file. ...
1
vote
1answer
69 views

How to change the solution structure in TFS?

How to restructure a solution that is currently being maintained by source control? I need to create a couple of folders and move the existing projects to folder and another folder to maintain ...
2
votes
1answer
131 views

Am I overorganizing or underorganizing C++ code? [closed]

So I'm making my first serious project. Namespace structure: Egg Math Physics ... Simulation A header: #ifndef EGG_PHYSICS_WORLD_HPP #define EGG_PHYSICS_WORLD_HPP namespace Egg { namespace ...
0
votes
1answer
175 views

How to use encoder factory in Symfony 2 inside the model setter?

This question about Symfony 2.1 How can I encode User password with: $factory = $this->get('security.encoder_factory'); $user = new Acme\UserBundle\Entity\User(); $encoder = ...
0
votes
2answers
52 views

Backbonejs: Organizing Routes [closed]

How do yo organize your route object if there's too much routes inside it, let's say a hundred. Do you just put it in a single file or object? Thanks.
0
votes
4answers
200 views

Sources organization for C++ project [closed]

I would like to have the opinion of other developper about the best way to organise your C++ source code. Before, I use to place all my headers in a sinlge directory, and sources in different ...
0
votes
2answers
45 views

Hiding @synthesize

Let me start by saying I am not sure if this belongs here or at Super User. I started here. Now, I am a very tidy person, and I like collapsing methods so that I can get around very easily. However, ...
0
votes
2answers
48 views

How do you organize and categorize your code when it's getting too big? [closed]

When you get to the point of having thousands of functions written it becomes increasingly hard to keep track of your own code. How do you organize and categorize your code as to never rewrite ...
11
votes
1answer
171 views

How are words bound within a Rebol module?

I understand that the module! type provides a better structure for protected namespaces than object! or the 'use function. How are words bound within the module—I notice some errors related to unbound ...
3
votes
2answers
227 views

How to organize source code of class library projects which will be built for multiple platforms?

I'm working on a class library project which provides client applications with a lot of useful extension methods. This project is expected to be used on a large variety of platforms (versions of the ...
2
votes
1answer
126 views

What are best practices for file structure when organizing scripts?

Over the last few years, I've started dabbling in scripting using Python, R and Matlab. My background is not in computer science, rather I'm an ecologist by training. I've written and gathered ...
1
vote
1answer
164 views

Understand jQuery Tutorial Module Pattern example

Considering the last code fragment (reported below) about module pattern published in the Code Organization section of the Learning Center, I'm trying to understand some aspect of the module in the ...
1
vote
1answer
51 views

How to organize code in rebol?

Whats the best way to organize code in Rebol? (Rebol2, not Rebol3. Rebol3 will have import, as it seems.) Is the do %myfunctions.r-style all that is needed? There is no real package statement like ...
0
votes
1answer
40 views

list of predef-ed params for an interface method inside the interface description

The situation: i'm coding a COM-interface looking like MIDL_INTERFACE(/*....*/) IFace : IUnknown { STDMETHOD_(void, Foo)(int param) PURE; }; The interface is supposed to be used only inside my ...
0
votes
1answer
64 views

How to organize a C program that needs to create a Window and exit?

I am creating a c program that is called periodically. But upon meeting some conditions it might call a functions that uses X11 to create a window. That window will listen to events hence have a loop ...
-1
votes
1answer
35 views

Setting code to maximum width of 80 characters

Are there any websites than can automatically set large chunks of code (PHP, JS and CSS) to a maximum width of 80 characters to ensure that no lines wrap?
3
votes
1answer
81 views

Game object with composition and CCSpriteBatchNode continued

Would anyone consider the following scenario and give me a suggestion : I am implementing a basic cocos2d game with one GameplayLayer which has got one CCSpriteBatchNode. I have one GameObject:CCNode ...
0
votes
1answer
40 views

How to reorganize and rename files within project without breaking all connections/links?

I have general web project including images, scripts and styles and I would like to reorganize entire project without breaking it. Change folder structure Change file names and keep all ...
2
votes
1answer
96 views

What are the correct ways to store additional information about class instances?

I'm working on a project where each class usually contains a list of instances of another class. This is repeated on several layers, so Class1 will contain a list of instances of Class2, which in turn ...
0
votes
0answers
75 views

Need to optimize asp repeater

I want to generate structure like: <table> <tr> <td> Field1 from Item 1 </td> <td> Field1 from Item 2</td> <td> Field1 from Item ...
0
votes
4answers
170 views

Where should you put “typedef enum”s in your source?

I'm working on a larger project than I'm used to, and I'm doing my best to keep my code properly structured. I am programming a microcontroller and have some global variables, which as per some advice ...
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
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 ...
3
votes
1answer
123 views

Is there a good standard for organizing complex Python code systems? [closed]

I have a python web server, with a custom text based game and blog. I am struggling separating the code into good places for reference and things are getting out of control. Things to organize: ...
3
votes
2answers
161 views

AutoOpen attribute in F#

What is the recommended doctrine for using the AutoOpen attribute ? (This question is probably is in continuation to when to use module function VS static function on similarly named type ) Expert ...
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
78 views

Page Specific Styles via Sass / Compass

I want to use page specific styles such as contact.css (compiled) applied only to i.e. Contacts page. I have a screen.css compiled which imports the _base.css that contains global variables, custom ...
0
votes
1answer
172 views

C data structures - storing a representation of a binary tree

I'm working on a project for an embedded processor where I have some data which is created at runtime, and pointers to this data need to be arranged into several binary tree-like data structures for ...
2
votes
0answers
63 views

Industry standard developer team organisation [closed]

I guess this is a hugely expansive question, but I hope it's appropriate for stack overflow and any advice is greatly appreciated. I am an experienced solo developer. I know how to lay out a class ...
0
votes
1answer
133 views

Code Organization with CSS and Javascript [closed]

I'm using Enyo to build a web application; a "normal" way of organizing the files might look like this: CSS: webapp/css JS: webapp/js Other stuff: webapp/assets One of my co-workers had a seemingly ...
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 ...
5
votes
2answers
193 views

Where to put and how to load result object class in Codeigniter?

I'm looking for proper way to organize 'Result object classes' in CodeIgniter. These classes are usualy used in models as described in documentation: You can also pass a string to result() which ...
0
votes
3answers
141 views

how to organize a python module that scripts can be run as __main__ program?

I'm starting a project in python, the code structure now as below: project/ __init__.py a.py b.py mainA.py utilities/ __init__.py ...
0
votes
1answer
172 views

AS3 OOP Principal, Structure & Organization

Refining my OOP structure, and trying to make the display of code as intuitive as possible, using basic OOP principals this definitely helps but my craft has only gone so far. I am looking to improve ...

1 2 3 4 5 7