Refactoring, braces, indentation, Hungarian notation, and other stylistic issues relating to code.
463
votes
19answers
70k views
Single quotes vs. double quotes in Python [closed]
According to the documentation, they're pretty much interchangeable. Is there a stylistic reason to use one over the other?
399
votes
48answers
45k views
Should a function have only one return statement?
Are there good reasons why it's a better practice to have only one return statement in a function?
Or is it okay to return from a function as soon as it is logically correct to do so, meaning there ...
326
votes
24answers
78k views
When to Use Double or Single Quotes in JavaScript
console.log("double"); vs console.log('single');
I see more and more JavaScript libraries out there using single quotes when handling strings. What are the reasons to use one over the other? I ...
321
votes
10answers
200k views
HTML 5: Is it <br> <br/> or <br />?
I've tried checking other answers, but I'm still confused--especially after seeing W3schools HTML 5 reference.
I thought HTML 4.01 was supposed to "allow" single-tags to just be <img> and ...
319
votes
12answers
151k views
Notepad++ tabs to spaces
Does anyone know how to convert tabs to spaces in Notepad++? I found a webpage that suggests it's possible (http://www.texteditors.info/notepad-replacements-compared.php) but I couldn't find any ...
309
votes
27answers
17k views
Is there a better way of writing v = (v == 0 ? 1 : 0);
I want to toggle a variable between 0 and 1. If it's 0 I want to set it to 1, else if it's 1 I want to set it to 0.
This is such a fundamental operation that I write so often I'd like to investigate ...
235
votes
23answers
55k views
Are PHP short tags acceptable to use?
Here's the info according to the official documentation:
There are four different pairs of
opening and closing tags which can be
used in php. Two of those, <?php ?>
and <script ...
226
votes
7answers
21k views
Good Haskell source to read and learn from [closed]
What are some open source programs that use Haskell and can be considered to be good quality modern Haskell? The larger the code base, the better.
I want to learn from their source code. I feel I'm ...
192
votes
14answers
43k views
What open source C++ static analysis tools are available? [closed]
Java has some very good open source static analysis tools such as FindBugs, Checkstyle and PMD. Those tools are easy to use, very helpful, runs on multiple operating systems and free.
Commercial C++ ...
167
votes
7answers
34k views
What is a clean, pythonic way to have multiple constructors in Python?
I can't find a definitive answer for this. AFAIK, you can't have multiple __init__ functions in a Python class. So what is a good way to solve this problem?
Suppose I have an class called Cheese ...
165
votes
38answers
9k views
How do you tell someone they're writing bad code? [closed]
I've been working with a small group of people on a coding project for fun. It's an organized and fairly cohesive group. The people I work with all have various skill sets related to programming, ...
164
votes
11answers
63k views
Vim 80 column layout concerns
I feel like the way I do 80-column indication in Vim is incorrect: set columns=80. At times I also set textwidth but I like to be able to see and anticipate line overflow with the set columns ...
111
votes
10answers
30k views
C++: “std::endl” vs “\n”
Many C++ books contain example code like this...
std::cout << "Test line" << std::endl;
...so I've always done that too. But I've seen a lot of code from working developers like this ...
109
votes
8answers
23k views
Are there any coding standards for JavaScript? [closed]
What are the established coding standards for JavaScript?
108
votes
26answers
4k views
Are booleans as method arguments unacceptable?
A colleague of mine states that booleans as method arguments are not acceptable. They shall be replaced by enumerations. At first I did not see any benefit, but he gave me an example.
What's easier ...
106
votes
13answers
27k views
What is a magic number, and why is it bad?
What is a magic number?
Why should it be avoided?
Are there cases where it's appropriate?
103
votes
7answers
69k views
typeof === “undefined” vs. != null
I often see JavaScript code which checks for undefined parameters etc. this way:
if (typeof input !== "undefined") {
// do stuff
}
This seems kind of wasteful, since it involves both a type ...
102
votes
9answers
4k views
Good or bad practice? Initializing objects in getter
I have a strange habit it seems... according to my co-worker at least. We've been working on a small project together. The way I wrote the classes is (simplified example):
[Serializable()]
public ...
98
votes
5answers
3k views
Why declare a struct that only contains an array in C?
I came across some code containing the following:
struct ABC {
unsigned long array[MAX];
} abc;
When does it make sense to use a declaration like this?
96
votes
22answers
38k views
Tabs versus spaces in Python programming
I have always used tabs for indentation when I do Python programming. But then I came across a question here on SO where someone pointed out that most Python programmers use spaces instead of tabs to ...
96
votes
4answers
22k views
Why rename synthesized properties in iOS with leading underscores? [duplicate]
Possible Duplicate:
How does an underscore in front of a variable in a cocoa objective-c class work?
When creating a new project in Xcode 4, the boilerplate code adds an underscore ...
95
votes
6answers
59k views
Python `if x is not None` or `if not x is None`?
I've always thought of the if not x is None version to be more clear, but Google's style guide implies (based on this excerpt) that they use if x is not None. Is there any minor performance difference ...
93
votes
9answers
85k views
How do you return multiple values in Python?
The canonical way to return multiple values in languages that support it is often tupling.
Consider this trivial example:
def f(x):
y0 = x + 1
y1 = x * 3
y2 = y0 ** y3
return (y0,y1,y2)
...
89
votes
33answers
3k views
Am I immoral for using a variable name that differs from its type only by case?
For instance, take this piece of code:
var person = new Person();
or for you Pythonistas:
person = Person()
I'm told constantly how bad this is, but have yet to see an example of the immorality ...
87
votes
33answers
8k views
Is there a valid reason for enforcing a maximum width of 80 characters in a code file, this day and age? [closed]
Seriously. On a 22" monitor, it only covers maybe a quarter of the screen. I need some ammo to axe down this rule.
Edit: I'm not saying that there shouldn't be a limit; I'm just saying, 80 characters ...
87
votes
21answers
25k views
When is JavaScript's eval() not evil?
I'm writing some JavaScript to parse user-entered functions (for spreadsheet-like functionality). Having parsed the formula I could convert it into JavaScript and run eval() on it to yield the result. ...
86
votes
34answers
18k views
When do you use the “this” keyword? [closed]
This may be a silly question, but I was curious how other people use the this keyword. I tend to use it in constructors but may also use it throughout the class in other methods. Some examples:
In ...
83
votes
11answers
13k views
Should Python import statements always be at the top of a module?
PEP 08 states:
Imports are always put at the top of the file, just after any module comments and docstrings, and before module globals and constants.
However if the class/method/function that I ...
79
votes
13answers
15k views
Order of items in classes: Fields, Properties, Constructors, Methods
Is there a C# official guideline for the order of items in terms of class structure?
Does it go:
Public Fields
Private Fields
Properties
Constructors
Methods
?
I'm curious if there is a hard and ...
78
votes
52answers
12k views
Why is it considered a bad practice to omit curly braces? [closed]
Why does everyone tell me writing code like this is a bad practice?
if (foo)
Bar();
//or
for(int i = 0 i < count; i++)
Bar(i);
My biggest argument for omitting the curly braces is that ...
76
votes
10answers
16k views
Ruby coding style guidelines
Is there a document for Ruby that describes some preferred conventions for whitespace, indentation and other style issues?
I found Python's PEP 8 to be very helpful and am looking for something ...
74
votes
15answers
39k views
Using “super” in C++
My style of coding includes the following idiom:
class Derived : public Base
{
public :
typedef Base super; // note that it could be hidden in
// protected/private ...
73
votes
7answers
20k views
return statement vs exit() in main()
Should I use exit() or just return statements in main()? Personally I favor the 'return' statements 'cause I feel it's like reading any other function and the flow control when I'm reading the code is ...
68
votes
32answers
4k views
Checking in of “commented out” code
Ok, here is something that has caused some friction at my current job and I really didn't expect it to. Organized in house software development is a new concept here and I have drawn up a first draft ...
68
votes
12answers
36k views
A free tool to check C/C++ source code against a set of coding standards?
It looks quite easy to find such a tool for Java (Checkstyle, JCSC), but I can't seem to find one for C/C++. I am not looking for a lint-like static code analyzer, I only would like to check against ...
66
votes
5answers
21k views
What is the standard Python docstring format?
I have seen a few different styles of writing docstrings in Python, is there an official or "agreed-upon" style?
65
votes
17answers
61k views
Python style: multiple-line conditions in IFs
Sometimes I break long conditions in IFs to several lines. The most obvious way to do this is:
if (cond1 == 'val1' and cond2 == 'val2' and
cond3 == 'val3' and cond4 == 'val4'):
...
64
votes
29answers
14k views
How many lines of code is too many? [closed]
One thing that occasionally drives me crazy is reading another person's functions that span 5 vertical monitor lengths, or .cpp files that are over 2000 lines long. For readability, wouldn't it be ...
64
votes
10answers
3k views
Should commit messages be written in present or past tense?
So which is it that you think is better and more intuitive?
Fixed the XXX bug in YYY
Fix the XXX bug in YYY
Fixes the XXX bug in YYY
Fixing the XXX bug in YYY
Please provide your rationales. Note ...
62
votes
7answers
3k views
What is the gain from declaring a method as static
I've recently been looking through my warnings in Eclipse and come across this one:
It will give a compiler warning if the method can be declared as static.
[edit] Exact quote within the Eclipse ...
60
votes
29answers
19k views
C# String output: format or concat?
Let's say that you want to output or concat strings, what style do you prefer:
var p = new { FirstName = "Bill", LastName = "Gates" };
Console.WriteLine("{0} {1}", p.FirstName, ...
59
votes
8answers
4k views
Why do most C developers use define instead of const?
In many programs a #define serves the same purpose as a constant. For example.
#define FIELD_WIDTH 10
const int fieldWidth = 10;
I commonly see the first form preferred over the other, relying on ...
59
votes
27answers
10k views
SQL coding style guide
I AM SO TIRED OF READING THE WHOLE SQL STATEMENT / STORED PROCEDURE IN FULL CAPS. WHAT THE HELL WERE THE INITIAL DEVELOPERS THINKING?
What's the best style (in terms of cap, indentation, lines ...
59
votes
18answers
5k views
Style: Dot notation vs. message notation in Objective-C 2.0
In Objective-C 2.0 we got the "dot" notation for properties. I've seen various back and forths about the merits of dot notation vs. message notation. To keep the responses untainted I'm not going to ...
59
votes
7answers
6k views
Why do some scripts omit the closing php tag '?>'?
In some scripts I see that they omit writing a closing tag ?> for the script. I don't know why. Can someone tell me why and if I should do this as well?
(I'm sure they have not forgotten it.)
58
votes
5answers
5k views
What is the purpose of wrapping whole Javascript files in anonymous functions like “(function(){ … })()”?
I have been reading a lot of Javascript lately and I have been noticing that the whole file is wrapped like the following in the .js files to be imported.
(function() {
...
code
...
...
57
votes
8answers
37k views
Declaring Multiple Variables in JavaScript
In JavaScript, it is possible to declare multiple variables like this:
var variable1 = "Hello World!";
var variable2 = "Testing...";
var variable3 = 42;
...or like this:
var variable1 = "Hello ...
56
votes
14answers
3k views
Java getter chaining bad or good?
To prevent monster constructors and monster interfaces with oversized delegating classes, I use alot of classes that hold other objects which again hold other objects. Therefore my code looks like ...
56
votes
8answers
22k views
Methods in a Java interface with or without public access modifier
Should methods in a Java interface be declared with or without a public access modifier?
Technically it doesn't matter of course. A class method that implements an interface is always public. But ...
54
votes
22answers
3k views
How do I make my code easier for the next developer to understand? [closed]
I've been at my very first programming job for about 8 months now and I've learned incredible amounts so far.
Unfortunately, I'm the sole developer for a small startup company for internal ...

