Tagged Questions

245
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 computer program …
101
votes
38answers
5k 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, …
52
votes
81answers
6k views

Most frustrating programming style you’ve encountered

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 …
42
votes
29answers
2k 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 …
40
votes
52answers
3k 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 …
37
votes
31answers
3k 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 …
35
votes
22answers
1k 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 …
24
votes
26answers
2k views

How many lines of code is too many?

see also "How many lines should a method typically have?" One thing that occasionally drives me crazy is reading another person's functions that span 5 vertical monitor lengths, or .cpp files …
23
votes
25answers
2k views

Where do you declare variables? The top of a method or when you need them?

Hi, I am in sort of a dilemma (in a geekish way of course). I love to declare variables at the beginning of my methods, and usually order them in some logical way. The problem is, when the list …
23
votes
22answers
952 views

How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?

Ever since I first made the mistake of doing an assignment in an if I've always written my ifs like this: if (CONST == variable) { to avoid the common (at least for me) mistake of doing this: if …
22
votes
40answers
2k views

Annoying or idiotic naming conventions?

What programming or naming conventions have you come across that really rub you the wrong way? For those that aren't aware, in C# we can wrap blocks of code with a #region directive, which allows …
22
votes
37answers
2k views

Most crucial elements in a light-weight C++ coding standard

I've been involved in developing coding standards which were quite elaborate. My own experience is that it was hard to enforce if you don't have proper processes to maintain it and strategies to …
22
votes
45answers
2k views

Is Programming Style important? How Important?

Last year I was troubleshooting a team member's code and it was lacking indents and comments. I was talking to him about it telling him it was not a good idea but he got offended. He was/is smarter …
22
votes
14answers
4k 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?
22
votes
30answers
1k views

What is the “best” way to get yourself motivated?

After several extremely productive days this week; this morning I fired up my IDE’s and opened up the code-lines I am currently working with. I cracked my knuckles and then …… nothing. I am actually …

1 2 3 4 5 36 next
15 30 50 per page