Tagged Questions
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.
14
votes
2answers
601 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 ...
12
votes
8answers
3k 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 ...
9
votes
9answers
439 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 ...
5
votes
5answers
256 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 ...
5
votes
9answers
809 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)
...
4
votes
3answers
114 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 ...
3
votes
1answer
37 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
157 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 ...
3
votes
2answers
104 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 ...
2
votes
1answer
258 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.
2
votes
1answer
268 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 ...
2
votes
2answers
147 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 ...
1
vote
0answers
39 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 ...
1
vote
4answers
134 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 ...
1
vote
1answer
59 views
Handle options and Functions?
I am currently developing a new website in Perl and I am having some doubts on my way.
How should I handle my site options ?
What I mean by "site options" are for example, database name, user, ...
1
vote
0answers
47 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 ...
1
vote
5answers
221 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+ ...
1
vote
3answers
372 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 ...
1
vote
5answers
332 views
Creating an API for my software - Basic code structure
I'm currently writing a web software which is also going to be used by Client desktops via an API.
The problem I'm facing right now is: Should I implement every action of adding/updating/deleting ...
0
votes
3answers
173 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 ...
0
votes
1answer
256 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
102 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
33 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 ...
0
votes
0answers
12 views
Structure for passing apikeys internally in code
I'm implementing a feature for which outside apikey-based access is allowed.
TABLE: table_apikeys
api_id: int (AI)
apikey: varchar
TABLE: table_userids
userid: int (AI)
ext_api_id: int (same value ...
0
votes
3answers
238 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
121 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
3answers
98 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 :
...
0
votes
3answers
101 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 ...
0
votes
4answers
167 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;
...
0
votes
2answers
46 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 ...
0
votes
9answers
207 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
{
...