Code Structure regards the way that code is written to allow it to be best read, maintained and organized for efficiency. Decisions such as when classes should be used, and which patterns would be most efficient for a task.
1
vote
1answer
37 views
Trying to avoid tight coupling of application parameters
My web application has a method that parses URL parameters like this.
...
layerName = HtmlPage.Document.QueryString["Layer"] . . . ;
...
One of the departments in our company has a list of URLs ...
-4
votes
1answer
37 views
standardised format when programming a game [closed]
I am working on programming a game for the ipad and would like to know what the standardised format when programming a game in Objective-C is? What parts of the code would go in what class and what ...
1
vote
4answers
80 views
Is it bad practice to request index.php in order to use other scripts
Is it bad to use index.php as loader for other scripts or does it make a difference?
i.e. requesting index.php with different query strings and inside it, selecting and including the matching script.
...
1
vote
2answers
106 views
Ruby syntax, nested modules or classes
I am new to Ruby but have been looking through some source code. I came across the kind of structures shown below in some source code (names of modules, classes not the real ones)
module ModuleOne
...
0
votes
2answers
350 views
jQuery/JavaScript: Detecting scroll direction - code structure issue
I need to detect the direction in that a user scrolls - "up" or "down". Based on the code found in this answer: How can I determine the direction of a jQuery scroll event?
I tried to wrap it in a ...
4
votes
3answers
83 views
How do I make destructors protected for a whole class hierarchy in a maintainable way?
I would like to make sure no one is able to delete any objects from my class hierarchy other then by using a provided Destroy method.
The rationale is that any object from this hierarchy needs to ...
1
vote
2answers
66 views
Python Can classes take arguments?
I have the following class
class MetricLst(object):
def __init__(self,n):
self.min = min(n)
self.max = max(n)
lst = [1,2,3,4,5]
p = MetricLst(lst)
print p.max
5
print p.min
1
...
0
votes
2answers
46 views
Javascript Object Performance Preference
There is probably a duplicate of this question on SO, but I haven't quite found one that specifically addressed my question.
Suppose I am building a web app that will contain one of the following:
...
0
votes
0answers
43 views
Is multiple source-file programming outdated? [closed]
Our lecturer (I will not disclose his name because of safety reasons) told us:
I think all projects should consist of a single source file.
Now stop, calm down, take a deep breath, arrange all ...
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 ...
1
vote
1answer
50 views
Java: Override behaviour through association
I have several Field entities, and Controllers associated with them this way: (Field,Generic_Controller <--> Specific_Controller). I want to implement association of each Specific_Controller ...
3
votes
2answers
84 views
perl code structure for post-processing
The question I have is a bit abstract, but I'll attempt to be clear in my statement. (This is something of a "rubber duck effect" post, so I'll be thankful if just typing it out gets me somewhere. ...
0
votes
1answer
108 views
How to reference global function library in CFML?
Dependency injection allows you to avoid referencing objects and scopes that are external to the object directly. You instead reference the injected dependency.
I want to know the best practice in ...
0
votes
2answers
64 views
How do I start contributing/understanding the code of a big project? [closed]
I've always wondered about this. I have heard that you should start contributing to an open source project by fixing bugs etc, but that hasn't helped me understand the code as much as I like. I like ...
0
votes
1answer
37 views
Where should be Android Helper Activity and its layout located
I am new to android and java, so please excuse me for this silly question.
I have an activity in my project that can be used in many other projects so I would prefer to keep its code separate (maybe ...
0
votes
2answers
77 views
Ancient ASP.NET structure, tell me how to do it right
I'm pretty new to ASP.NET and I think im not using it they way it's meant to be used with all the features packed into the latest .NET framework. I'm currently using .NET framework 4,0. There are some ...
1
vote
4answers
112 views
how can i structure a multi-threaded code for better code reuse in java?
I am building a multi-threaded project in Java, I have entities and DAO packages to wrap the database tables and manipulating them. I have processing package which contains Runnables. The way i have ...
7
votes
3answers
429 views
.NET interview, code structure and the design
I have been given the below .NET question in an interview. I don’t know why I got low marks. Unfortunately I did not get a feedback.
Question:
The file hockey.csv contains the results from the ...
1
vote
1answer
233 views
Code reuse in PHP framework between multiple projects
This is my first question here. :)
I am working on a little php framework and started to think of ways to re-use the same code between multiple projects. Right now with this framework it is possible ...
4
votes
1answer
253 views
How to automatically arrange the code structure?
I have observed that components has a uniform, neat and well arrange code structure. was it automatically arranged or manual?
is there a way to make it automatic? like Code Completion in Delphi?
I ...
0
votes
2answers
63 views
Problems closing Acitivity after GPS location is retrieved using another Class
Situation is this:
Activity A calls getLocation() method from Class B.
Class B handles obtaining GPS locations.
2 Activity A should finish once Class B has finished retrieving GPS
location.
...
0
votes
2answers
185 views
How to structure code when need to enable GPS
My code works fine if the GPS is enabled, but when it needs to be enabled it force crashes. Something to do with trying to get the location when the GPS is not enabled. I try to open up Settings for ...
0
votes
3answers
268 views
Which is better for this project, procedural or object oriented? [closed]
I've been working through many trial/error versions of an image loading/caching system. Being Delphi, I've always been comfortable with Object Oriented Programming. But since I've started implementing ...
1
vote
0answers
101 views
Making a good code structure [closed]
What do you say about the code structure below? This is one of the recommended ways of writing JS code in my education.
What is the pros and cons with writing code this way?
Can you recommend any ...
4
votes
1answer
1k views
module_load_include() vs require_once
I was wondering when you need to use module_load_include() or require_once to include files which are located within your module.
0
votes
1answer
2k views
Codeigniter URL remapping strategy
I'm working on a project built in codeigniter that makes heavy use of routes and the remap function to rewrite urls. The current implementation is confusing and messy.
Essentially this is what the ...
0
votes
2answers
163 views
Removing Duplicated Java Code
I have a class written in ~1000 lines of Java code that migrates one database over to another.
It has 19 methods for each table being copied over, and 1 which load's the special JDBC driver for ...
0
votes
3answers
35 views
Way/coding method to do activitylist/log
Ok so this question is not so much about the coding procedure, but more like a good and clean way to code this activitylist, i plan to build..
This activitylist will contain all activities on the ...
2
votes
4answers
1k views
PHP application structure
I started making a website, and quickly i found out that my code is a mess. It's been a while since I've been programming in PHP, and since then I learned OOP. Now while making an application in C# or ...
3
votes
1answer
142 views
PHP: Keeping Objects Separate?
I'm working on a complex project in PHP and keep running into the same problem: How to keep separate objects separate?
The idea behind OO programming is that none of the objects need to know how any ...
3
votes
5answers
212 views
MVC Putting an action in the most appropriate correct controller
I was just wondering what the best practice approach is for deciding where to create an action/view in certain situations.
If User hasMany Video
where is the best place to create the action/view to ...
5
votes
3answers
251 views
How to correctly achieve test isolation with a stateful Python module?
The project I'm working on is a business logic software wrapped up as a Python package. The idea is that various script or application will import it, initialize it, then use it.
It currently has a ...
0
votes
3answers
547 views
Can I set a custom class as the default base class for my controllers in ASP.NET MVC3?
I'd like to inherit all my controllers from a custom base class that I write myself. I can change the line every time I add a new controller, but it would be nicer if I could somewhere specify the ...
0
votes
7answers
220 views
Code structure: should I use lots of functions to increase readability?
My question has Bash and PowerShell scripts in mind, but I suppose it applies to other languages as well.
It is my understanding that the purpose of a function is to perform the same (or a very ...
0
votes
1answer
362 views
Android application structure question
I am currently working on an application that makes use of a MapView and adds overlays to it. Basically at anyone one given time the overlay list should never exceed two.
Heres what I have tried to ...
9
votes
9answers
733 views
Cleaning up a large, legacy Java project
I've been assigned to do some work on a huge Java project, and the influence of several iterations of developers is obvious. There is no standard coding style, formatting, naming conventions or class ...
14
votes
9answers
5k views
What tools should I use to visualize structure of my code?
I have an application written in Java. In is stored in several files. It uses different classes with different methods. The code is big and complicated. I think it would be easier to understand the ...
0
votes
3answers
104 views
Good way to define a method
What is the best / good way to implement method calls.
For eg: From the below which is generally considered as best practice. If both are bad, then what is considered as best practice.
Option 1 :
...
3
votes
2answers
171 views
How to parse actual code like stackoverflow/intellisense/etc?
I was wondering how stackoverflow parses all sorts of different code and identifies keywords, special characters, whitespace formatting, etc. It does this for most code I believe, and I've noticed ...
-1
votes
3answers
225 views
In what order do you put methods in class code?
Class could have static, private, protected, public methods. Each method is made for modifying, adding, removing etc.
How do you group functions in class's code to make it clean to read? What is the ...
2
votes
2answers
162 views
How to write graphical programs
I have learned C++ and Qt4. I wrote one graphical program with 3000 rows and I found out that there is really complicated to keep code simple, transparent and well-structured. I like design patterns ...
6
votes
5answers
625 views
javascript / jquery code organisation
I would like to get some advice on structuring my javascript code and jquery functions. I like to use JQuery for dom event handling and ajax etc. I have written what seems like poor code in the past ...
0
votes
4answers
266 views
C++: Avoid .cpp files with only an empty (de)constructor
When I have a header file like this:
#ifndef GAMEVIEW_H_
#define GAMEVIEW_H_
#include <SDL/SDL.h>
class GameView
{
public:
GameView();
virtual ~GameView();
virtual void Update() = 0;
...
1
vote
0answers
65 views
Building out a well-structured service layer
First, I want to say that it has been awhile since I've gotten into the kind of detail I am at currently. Lately, I've been very much in the SharePoint world and my entire thought process was focused ...
0
votes
2answers
62 views
In what package should a “Settings” class be placed?
I'm in the middle of building an application but found myself too easily creating new packages without keeping the project's structure in mind.
Now, I'm trying to redo the whole project structure on ...
1
vote
5answers
313 views
Any tips for structuring C++ code using win32?
I am trying to improve my coding skills by making my code more structured and readable. I code the GUI (thanks edit). I have been reading through Firefox's open source code to improve but it uses GTK+ ...
14
votes
2answers
843 views
What is a good code structure for api-independant vertex processing?
Currently working on a 3D media engine using C# and I have come across a little conundrum. I have my rending loop figured out, I got a great plug-in architecture and content management system and even ...
0
votes
9answers
240 views
Using a Goto to enhance the DRY principle and code clarity: a good idea?
I have some code that is structured like the following:
if (someStatement)
{
//...
if (SomeOtherStatement)
{
//..., possibly more cases like this
}
else
{
...
1
vote
3answers
610 views
Combining XmlWriter objects?
The way my application is structured, each component generates output as XML and returns an XmlWriter object. Before rendering the final output to the page, I combine all XML and perform an XSL ...
5
votes
9answers
1k views
Why use short-circuit code?
Related Questions: Benefits of using short-circuit evaluation, Why would a language NOT use Short-circuit evaluation?, Can someone explain this line of code please? (Logic & Assignment operators)
...

