Tagged Questions
A coding style is a set of conventions and practices used in software, such as naming classes, variables, and files. Please do not use this tag for questions on styling UIs, themes, stylesheets, UI fonts etc.
498
votes
162answers
36k views
What are Code Smells? What is the best way to correct them? [closed]
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
computer program ...
326
votes
48answers
28k views
Should a function have only one return statement? [closed]
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 ...
233
votes
148answers
19k views
What is the most frustrating programming style you've encountered? [closed]
When it comes to coding style I'm a pretty relaxed programmer. I'm not firmly dug into a particular coding style. I'd prefer a consistent overall style in a large code base, but I'm not going to ...
222
votes
24answers
13k 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 ...
179
votes
40answers
9k views
A function that returns only true
During a code review I performed today for my colleague, I noticed a function that was defined as returning a boolean value, but in practice it returned only true. In a case of failure, this function ...
173
votes
112answers
40k views
What was the strangest coding standard rule that you were forced to follow? [closed]
When I asked this question I got almost always a definite yes you should have coding standards.
What was the strangest coding standard rule that you were ever forced to follow?
And by strangest I ...
171
votes
20answers
29k views
Single quotes vs. double quotes in Python
According to the documentation, they're pretty much interchangeable. Is there a stylistic reason to use one over the other?
161
votes
7answers
15k views
Good Haskell source to read and learn from
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 ...
151
votes
39answers
7k views
How do you tell someone they're writing bad code?
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, ...
146
votes
11answers
77k 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 ...
118
votes
12answers
26k views
What open source C++ static analysis tools are available?
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++ ...
106
votes
16answers
29k 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 ...
104
votes
35answers
7k views
Top bad practices in PHP [closed]
I've learned from Stack Overflow that some of the code I've been writing so far is considered "bad practice". Like using tons of global variables, create_function() etc. I'm curious to know more about ...
96
votes
20answers
28k 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 ...
94
votes
41answers
4k views
What 'poor-programming' traits do engineers/scientists exhibit?
Soon, I expect to be asked to revise and improve existing code written by engineers and scientists.
I've noticed that non-programmers do not share the same programming 'eye' as computer-scientists ...
83
votes
7answers
16k 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 ...
83
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 ...
82
votes
24answers
3k 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 ...
72
votes
8answers
43k 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 ...
69
votes
15answers
7k 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?
67
votes
15answers
8k views
What are good resources for CSS templates or templated layout sites?
Does not have to be free, I'm just not a designer and loathe starting from scratch. Any suggestions would be appreciated.
67
votes
52answers
6k views
Why is it considered a bad practice to omit curly braces?
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 ...
64
votes
5answers
2k 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?
63
votes
10answers
27k 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 ...
63
votes
32answers
6k views
Is there a valid reason for enforcing a maximum width of 80 characters in a code file, this day and age?
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 ...
60
votes
32answers
3k 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 ...
59
votes
7answers
10k views
Are there any coding standards for JavaScript?
What are the established coding standards for JavaScript?
57
votes
45answers
6k views
Break statements In the real world [closed]
Been having a discussion on whirlpool about using break statements in for loops. I have been taught and also read elsewhere that break statements should only be used with switch statements and with ...
57
votes
10answers
14k 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 ...
56
votes
9answers
72k views
Is it possible to style a select box?
I've got an HTML select box that I need to style. I'd prefer to use just CSS but if I have to I'll use jQuery to fill in the gaps.
Can anyone recommend a good tutorial or plugin?
I know, Google, but ...
56
votes
35answers
6k 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 ...
53
votes
24answers
6k views
The 80 column limit, still useful?
Related:
While coding, how many columns do you format for?
Is there a valid reason for enforcing a maximum width of 80 characters in a code file, this day and age?
I mostly use C, ...
53
votes
18answers
17k 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 ...
53
votes
29answers
6k 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 ...
50
votes
14answers
2k 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 ...
48
votes
15answers
19k 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 ...
47
votes
8answers
2k 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 ...
47
votes
29answers
3k views
Why use a for loop instead of a while loop? [closed]
Possible Duplicates:
Iterate with for loop or while loop?
Loops in C - for() or while() - which is BEST?
When should one use a for loop instead of a while loop?
I think the following ...
45
votes
22answers
2k views
How do I make my code easier for the next developer to understand?
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 ...
45
votes
17answers
13k 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. ...
44
votes
9answers
1k views
Should I Return None or (None, None)?
We have a object method that returns a city/state tuple, i.e. ('Boston', 'MA'). Under some valid circumstances, there is no valid city/state to return. Stylistically, does it make more sense to return ...
41
votes
7answers
7k 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 ...
41
votes
11answers
6k 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 ...
41
votes
11answers
16k 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 ...
40
votes
31answers
5k views
What does a good programmer's code look like?
I am a hobbyist programmer (started with VBA to make excel quicker) and have been working with VB.NET / C#.NET and am trying to learn ADO.NET. This is my first post and I apologise for the subjective ...
39
votes
24answers
7k views
Get rid of ugly if statements
I have this ugly code:
if ( v > 10 ) size = 6;
if ( v > 22 ) size = 5;
if ( v > 51 ) size = 4;
if ( v > 68 ) size = 3;
if ( v > 117 ) size = 2;
if ( v > 145 ) size = 1;
return size;
...
38
votes
11answers
2k views
Why write `sizeof(char)` if char is 1 by standard?
I was doing some C coding and after reading some C code I've noticed that there are code snippets like
char *foo = (char *)malloc(sizeof(char) * someDynamicAmount);
So I want to ask what's more ...
38
votes
14answers
12k views
Hyphens or underscores in CSS and HTML identifiers? [closed]
As both hyphen (-) and underscore (_) are valid characters in CSS and HTML identifiers, what are the advantages and disadvantages using one or the other? I prefer writing CSS class names with hyphens ...
38
votes
9answers
2k views
Why is it bad practice to call an eventhandler from code?
Say you have a menu item and a button that do the same task.
Why is it bad practice to put the code for the task into one control's action event and then make a call to that event from the other ...
38
votes
26answers
4k 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 ...