Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
583 views

How does the layout of a Python application look?

In most programming environments it's clear how the code is distributed into several parts and how everything interacts. In Python I seem to be completely lost. How should the layout of a Python ...
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
4answers
128 views

Best layout for PHP switch statement?

This has been nagging me for a while: What is the best layout for a switch statement, specifically in PHP? I find myself doing it one of two ways, without even thinking about. Then, sometimes when ...
2
votes
2answers
42 views

Organization of code for a game using SDL

I've been using SDL for some days now, and I decided after following some tutorials to start developing my own clone of Galaga. However, I had some difficulty trying to find a proper layout for my ...
1
vote
1answer
36 views

Creating a common controller class for zend modular structure

I am using the zend modular structure for a project. I have below directory structure application/ modules/ default/ controllers/ IndexController.php ...
1
vote
1answer
156 views

what happens at the text segment in memory layout when executing file?

when excuting file, what happens at the text segment in memory layout? do the code which is excuted now, appear at the text segment? int A; int myarray[40] = {1,2,3,4}; int f1(int i) { int j = 5; ...
1
vote
2answers
62 views

Is there anything wrong with creating a helper function to display an AlertView?

I'm still learning Objective-c and Iphone Dev so I'm willing to take instruction. I was wondering if this is the best way to achive a helper function that displays an alertview. Obviously in my code ...
1
vote
2answers
102 views

Code Layout Rules for a Form

While moving some code around for investigation purposes, I came across a little feature of .NET that I was unaware of, which is that the form class must be the first class in a form module for the ...
0
votes
1answer
58 views

RequireJS and Mustache (or any other engine): where to put templates

I am using RequireJS and Mustache in a Javascript application. The content of the templates is inside some external files, which are loaded via the text plugin. The only thing that slightly annoys me ...
0
votes
3answers
70 views

In languages where you have a choice, is it better to put the main function/method/code at the top or bottom?

When you're writing a program that consists of a small bit of main logic that calls a bunch of supporting functions, you can choose either put the main logic at the top of the file or the bottom ...