1
vote
7answers
110 views
(Conventions) C# Class names
Hello,
I'm not too quite sure about what i should do about a grouped set of classes.
My situation: I have 11 classes that relate only to the class Character.cs, but all of those …
2
votes
3answers
44 views
Case Conventions in wpf using MVVM
Is there a standard for case and naming conventions in wpf/mvvm that differs from C#?
I am accustomed to camelCase with the first character being lower case for private and upper …
1
vote
5answers
50 views
How to hand over varaibles to a function? With an array or variables?
When I try to refactor my functions, for new needs, I stumble from time to time about the crucial question: shall I add an other variable with a default value? Or shall I user only …
0
votes
1answer
50 views
Django: Recommended placement of template files?
It seems that Django doesn't have a convention on the placement of template files. What would be the most logical, preferred placement?
(Since Django stresses the interoperability …
5
votes
10answers
294 views
C/C++ function/method decoration
DISCLAIMER: I haven't done C++ for some time...
Is it common nowadays to decorate C/C++ function/method declarations in order to improve readability?
Crude Example:
void some_fu …
1
vote
3answers
78 views
Typing methods with `id`
In Objective-C, I usually see methods that return a dynamically typed object defined as follows:
- (id)someMethod:(id)someParameter;
I know that I can do this, though, as well:
…
7
votes
6answers
144 views
2nd or 3rd Person Comments
Do you write comments in 2nd or 3rd person?
What would you prefer?
// go somewhere and do something (2nd person comment)
or
// goes somewhere and does something (3rd person co …
1
vote
2answers
34 views
UI Convention: Shortcut key for application exit?
Is there a convention for the shortcut keys for application exit?
Some applications uses Alt+X some others use Ctrl+ X and Ctrl+Q.
Applications like FF and IE doesnot assign a sho …
28
votes
38answers
4k views
Should one use < or <= in a for loop
If you had to iterate through a loop 7 times, would you use:
for (int i = 0; i < 7; i++)
or:
for (int i = 0; i <= 6; i++)
There are two considerations:
performance
re …
0
votes
0answers
34 views
iPhone UITableView and CoreData conventions
Hi folks, I've got a question on the conventional way to structure something similar to the following:
I have a screen which has a single line of data followed by a list of other …
2
votes
8answers
120 views
Mathematical notation of programming concepts
There are many methods for representing structure of a program (like UML class diagrams etc.). I am interested if there is a convention which describes programs in a strict, mathem …
3
votes
7answers
146 views
The anti-goto, pro-one-return convention [closed]
Possible Duplicate:
Should a function have only one return statement ?
Hi,
As far as I know, today the attitude is avoiding completely from goto of any kind (break, conti …
1
vote
6answers
256 views
Code formatter / beautifier for C on Linux for Emacs user
I'm a Linux user looking for a code beautifier which will take files containing C code and format them to specification. Specifically, I'm looking to:
Change all indentations to …
2
votes
3answers
92 views
Inline Assembler: What scratch registers can be used?
When inserting inline assembler into a function in a C-like language, what is the convention about what registers you're allowed to use for scratch? Is it the compiler's responsib …
6
votes
2answers
129 views
Flex External Stylesheet Conventions
I know that there are questions regarding this same topic, but for HTML. What are some good conventions in regards to using external stylesheets in a Flex app.? How would you bre …
