0
votes
4answers
65 views
Member variable naming conventions in Cocoa
This question is about variable naming style in objective c and cocoa. I just want to stress that I'm not looking for a "right" answer, just good ideas.
I've read through Apple a …
14
votes
5answers
235 views
Arguments Against Annotations
My team is moving to Spring 3.0 and there are some people who want to start moving everything into Annotations. I just get a really bad feeling in my gut (code smell?) when I see …
243
votes
152answers
20k views
What are Code Smells? What is the best way to correct them?
OK, so I know what a code smell is, and the Wikipedia Article is pretty clear in its definition:
In computer programming, code smell is
any symptom in the source code of a
…
5
votes
19answers
299 views
C Pointer Syntax: Style poll [closed]
Which syntax do you prefer and why:
char* string;
char *string;
Assume multiple variable declarations per line are not used. (I know about the differences).
4
votes
9answers
257 views
Why is it preferable to write func( const Class &value )?
Why would one use func( const Class &value ) rather than just func( Class value )? Surely modern compilers will do the most efficient thing using either syntax. Is this still …
1
vote
4answers
120 views
PHP IF statement for Boolean values: $var === true vs $var
I know this question is not really important.. however I've been wondering:
Which of the following IF statements is the best and fastest to use?
<?php
$variable = true;
if($ …
1
vote
6answers
95 views
What is the correct way to convert from a for loop to a while loop?
I have a for loop of the form:
for (int i = from; i < to; i++) {
// do some code (I don't know exactly what, it is subject to change)
}
And I want to convert it to a while …
0
votes
6answers
118 views
Is there a standard for code margins?
Similar Questions
While coding, how many columns do you format for?
What is a sensible maximum number of characters per line of code?
Do people still live by the 80 column …
1
vote
4answers
68 views
Is there a good alternative to xml documentation comments for C#?
I find the xml doc comments for C# or VB.NET very hard to read. Is there a decent alternative (that still provides the benefits of documenting code for intellisense, doc generatio …
1
vote
5answers
105 views
Best practice for function flow in Javascript?
I have what I thought was a relatively easy Ajax/animation that I'm adding to a client site to select between projects for display as images. The flow goes something like this:
…
8
votes
14answers
478 views
Which is better coding style?
During a code review, a senior dev commented on some nesting I had going on in my code. He suggested I set a bool value so that I never have more than one level of nesting. I thi …
7
votes
6answers
127 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 …
3
votes
6answers
107 views
C Code layout and how to separate different sections of code?
In a C code, how you separate different sections of code, for example Implementation, Globals, etc? Is there a coding standard. I have seen many methods, but which one is preferred …
6
votes
3answers
105 views
Is using labels in Perl subroutines considered a bad practice?
I find that using labels inside Perl subroutines, to break from multiple loops, or to redo some parts with updated variables, very helpful. How is this coding style seen by the com …
1
vote
15answers
218 views
Should I use comments in code, liberally?
All,
To comment liberally or not to?? Pros and Cons. I personally prefer commenting as it leaves nothing to the fancies of the people reading it.
Thanks
