vote up 171 vote down star
195

What are in your opinion the worst subjects of widespread ignorance amongst programmers, i.e. things that everyone who aspires to be a professional should know and take seriously, but don't?

flag
11  
I've just seen the word "single" in the question. Does that mean I shouldn't have submitted 5 answers (so far)? – Jon Skeet Jan 8 at 13:17
88  
@ Jon Skeet - That would be the pet peeve of coding a solution before understanding the requirements? – Dan Malkinski Jan 8 at 15:08
22  
Of course we all know that when Jon Skeet codes the requirements re-write themselves to match his output. :-) There must be a bug in SO because the question hasn't changed... – Dan Malkinski Jan 9 at 17:07
2  
@Dan Malinksi: but is has, look again ;) – Joel Coehoorn Jul 10 at 15:12
2  
Just being a pedant, but if it is a 'peeve', surely the word 'favourite' is a bit misplaced – lagerdalek Sep 23 at 19:26
show 7 more comments

189 Answers

prev 1 3 4 5 6 7 next
vote up 41 vote down

Believing that catching and ignoring exceptions means preventing a bug. In most cases the exception means that there is a bug in the code. Ignoring the exception is just like looking the other way. This is especially true if the code catches the base class Exception.

Or to put it another way: some people seem to be more willing to let the application continue in a undefined and possible illegal state than accepting the fact that there's a bug in the code, which should be addressed.

link|flag
1  
This is acceptable if the data is transient or unimportant - for example I have a program that analyses the "differences" in motion between two webcam frames. I doesn't matter if I don't do anything when I catch the exception when one of the pixels goes wrong because I don't necessarily need every single pixel correct. – Callum Rogers Jul 27 at 10:39
1  
@C Rogers: I should have stressed that this is often done by catching all exceptions and ignoring them. There are situations in which you may catch one or few specific exceptions and ignore those. I'll reword my answer. – Brian Rasmussen Jul 27 at 11:07
show 5 more comments
vote up 3 vote down

Poorly named variables/classes/methods where the programmer is trying to stay within some artificial 8 character limit. This combined with extremely verbose (and often unnecessary) comments is one of my biggest pet peeves.

link|flag
show 1 more comment
vote up 2 vote down

The myth that writing the code is the main part, while debuggin is just an extra.

They are both faces of the same coin. If one is shitty, the overall result will suck.

link|flag
vote up 28 vote down

One of my biggies is that many programmers don't understand internationalization. Even when an app is supposedly built with it in mind, it's usually not done right.

  • There will be string concatenation to form sentences that might work fine in English, but the word order is wrong in other languages (should be using some kind of templated substitution). Or they'll blindly add "s" to the end of a word to make it plural -- that doesn't even work well in English, much less other languages.
  • They'll support multiple currencies (and currency symbols), but assume the decimal marker is always a period or that the currency symbol always goes at the front of the number.
  • Dates will be written in an ambiguous order (usually the American way of month/day/year).
  • I know I've seen more of these, but I can't think of them right now... maybe I'll edit it as I think of them.

I didn't have time to read more than the first page of answers, so please pardon me if this is a duplicate.

link|flag
2  
2009-06-18T23:06EST – Ape-inago Jun 19 at 3:06
vote up 25 vote down

The web is stateless and the browser isn't part of your app.

I find a lot of programmers get caught up in their framework of choice and they ignore, forget, or never understood that each request to a web application is like a brand new program running. We (or our framework) have to do a lot of work to maintain state and simulate a "logged in" experience. Some of that work involves having the browser store stuff and give it back to us, but we cannot rely on the browser doing the right thing.

Plus too many programmers don't even know the difference between code that runs on the server and code that runs in the browser. I have had arguments with programmers who insist that ColdFusion, PHP, or VBScript code that is inline in an HTML page is run in the browser.

--
bmb

link|flag
4  
"Ouch" to the second one! – Nelson LaQuet Mar 7 at 5:40
17  
I came in to "help" with an existing project where the primary developer would do string concatenation in PHP to display email addresses (previously 3+ parts, in variables) so that "web/spam crawlers can't read them". Stuff like: echo $prefix . "@" . $domain . ".com"; – anonymous coward May 14 at 14:08
2  
I hate to blame the programmers for this, however blameworthy it may be; I think a large part of the problem is when you have frameworks and development tools that try to let you pretend you can control what happens on the browser. I'm talking to you, Visual Studio; I've watched developers who should know better be confused by the magic you almost succeed in doing. – JasonFruit May 22 at 20:31
2  
Just an FYI, but VBScript that is inline in an HTML page CAN be run in the browser (if it's IE). – Jason Baker Jun 12 at 23:27
show 2 more comments
vote up 2 vote down

The idea that using On Error Resume Next means you don't have to check for errors. I have to maintain a cesspit of VBScript and the guy before me just littered On Error Resume Next everywhere, without bothering to do any error checking at all.

link|flag
show 1 more comment
vote up 4 vote down

The power of Google. Or Find in Files.

link|flag
show 3 more comments
vote up 125 vote down

How does a computer work.

If you are a programmer, you need to know how the hell a computer works. You need knowledge of function and behavior, as far as it concerns computer programs. RAM, CPU, cache, I/O, DMA, PIO, interrupts, etc.

You don't need to know assembly in particular, but concepts like flags, registers, branches, stacks, stack pointer, instruction pointer, memory, pages, DMA, interrupts, semaphore/lock support and things like that must be understood.

I don't care if your language abstracts memory management, if your database framework abstracts disk access or even if you use a framework abstracting distributed computing. It still gets run by computers and suffers from computers limitations, which does impact how your software works.

link|flag
3  
well, that's not true. every doctor knows basics about brains and vaginas and is just specialised in the area he's chosen. and i would agree with Daniel. – agnieszka Jan 8 at 23:21
8  
@Click Upvote If you don't understand how computers work you won't know why for (i = 0; i < len; i++) for (j = 0; j < width; j++) a[i, j] = 1; is much slower than for (i = 0; i < len; i++) for (j = 0; j < width; j++) a[j, i] = 1; for large arrays. Think about the cache. – RussellH Jan 10 at 23:39
4  
@RusselH: I thought about the cache, and what you're saying seemed like madness. So I wrote a C program to do what you're saying, and the a[j, i] = 1 loop ran about half as fast the the a[i, j] = 1 loop. Am I missing something, or did you mean the opposite of what you said? – chaos Jan 14 at 5:23
3  
@chaos -- Thanks - I meant the opposite of what I said! – RussellH Jan 20 at 20:27
7  
i agree to an extend, but i'm not convinced this is truely necessary. Do you need to understand the origin of words in a language to use them? – Harry Mar 29 at 5:35
show 14 more comments
vote up 14 vote down

Programmers that are so religious towards some programming construct they won't hear the other side. Example: stored procedure zealots.

link|flag
show 2 more comments
vote up 19 vote down

Hello, my name is Nathan and I am a recovering "No" developer. ( <-- current pet peeve)

I used to hear a request for a feature and I'd say "No!". Then I'd say, "It cannot be done!", or "that's not how the product works".

Finally, worn down as the business guy convinces me that if we cannot do this we'll go out of business, I decide to think about it for a minute and code it up while he's going on and on trying to convince me about why this is such a good idea. I tell him, it'll be in the next release, and he leaves exasperated but happy.

Now, I try to be a "Yes" developer.

note: The business guy is often the developer on your team that wrote the framework you have to use that doesn't quite fit the bug you just got assigned.

link|flag
2  
Great answer. I agree with you here, however, I've never accepted NO from a programmer, even when I was QA, and manegement. I see it that we are "DEVELOPERS". We can DO ANYTHING. We write the code!. But, there's always that pesky time and cost issue, etc... :) – LarryF Jan 8 at 20:29
4  
I saw the other side of this at my last company. Every time a client requested a feature, it was implemented - and the resulting bloat effectively killed the product. – Ethan Jan 8 at 21:37
5  
Nathan, try not to come too far the other direction. Saying YES to everything can get you into a lot more trouble. ;-) – John MacIntyre Jan 9 at 1:04
2  
Yes but it will take (X) period of time. Is it more imortant than already planned features? Which do you want to bump? Would this be ok in a later release when we can devote the (X) period of time to it that it really needs. That's the angle I try to take. – railsninja Jun 28 at 12:15
show 8 more comments
vote up 3 vote down

Copying and pasting duplicate code throughout a series of similar classes, rather than using inheritance or composition to put the required functionality in one place. That can be very difficult to refactor!

link|flag
1  
and difficult to maintain. If whatever that code does needs to change, the developer needs to apply it to each copy, if need be. Some could be missed. – paquetp Jul 30 at 1:50
vote up 17 vote down

Naming. Naming of classes, methods, functions, variables or modules. The name should be simple and easy to understand. And it should actually hint at what the intend is. I hate it when I have to stare at some piece of code for much too long just to find out that it does something totally different than its name suggested.

link|flag
show 3 more comments
vote up 5 vote down

People that think it is OK to not comment code because of reason X.

I have heard all kinds of pithy statements like "Comments are lies", "Write more readable code instead of commenting", or "Name your variables and functions correctly and you don't need to comment". Bull hockey! Writing readable code, and using good naming of functions and variables are good ideas. But leaving out comments is not.

I don't know how many times I have had to examine a block of code for minutes/hours trying to figure out what it does and why it does it, when a simple comment would saved me most of my time.

In C#/.NET, I hate the lack of metadata comments on functions and properties. Being able to bring up IntelliSense and find a short set of comments about a function is invaluable to your fellow programmers.

Of course I am guilty of not adequately commenting code throughout my career. I probably wrote some code yesterday that I didn't comment. But the attitude that this is OK for some reason X is completely wrong.

P.S.

I also hate the other school of thought, the "Leave detailed comments on everything" camp. I had a couple of computer science professors like this back in the days of college. If the line count of comments in a function equals that of the code, you have a problem.

link|flag
1  
The "More readable code" saying is not "dont comment at all", but rather "dont write comments that say what the code is doing", which should be obvious from the code itself. Comments should explain WHY the code does what it does, not what. – AviD Mar 7 at 20:19
show 3 more comments
vote up 65 vote down

Arrogance.

link|flag
3  
This industry is second only to Wall Street in this regard. – John MacIntyre Jan 9 at 1:01
20  
Ignorance ("I know everything") or arrogance ("I am the best") alone is curable through experience. The combination is incurable. – Dour High Arch Jan 9 at 2:04
3  
The combination is also more common. :( – Rob Jan 17 at 7:29
vote up 2 vote down

Code is not just for communicating with the computer, but also with fellow programmers.

You can throw all sorts of rules on comments and variable names at people, but it really doesn't matter that much. Either they grok the above (and don't need rules except perhaps as guidelines) or they don't (and will only obey the letter of the rules).

link|flag
vote up 5 vote down

In order of gravity:

  1. mindless code duplication, takes first place anytime
  2. badly written logic that contains so many holes it's like Swiss cheese
  3. unnecessary complexity
  4. no comments, or bad ones, making less sense than the code you're trying to understand
link|flag
vote up 12 vote down

Not to comment code.

Seriously, a whole lot of colleagues stated to me, that "hard to write code should be hard to read", when I asked them, why they do not add comments.

I say: "Documentation is like sex. If it's good, it's very, very good. If it's bad, it's better than nothing!"

link|flag
1  
I disagree. Outdated, incorrect comments are worse than no comments. – Hank Mar 5 at 9:37
1  
comments violate DRY - memeagora.blogspot.com/2008/11/… There are still places where useful, but few and far between in modern languages. – Maslow Aug 14 at 13:38
show 3 more comments
vote up 101 vote down

Female programmers can't code?

Another peeve of mine comes from the attitude people have toward female programmers, which include among other things:

  • "Programming is too hard for women, since they're obviously emotional rather than logical thinkers"
  • "The best female programmer is never better than an average male programmer"
  • "Women programmers can't be pretty"
  • "Women only choose to be programmers because they are in need of a husband"
  • etc, etc, etc

One of the women on my team is a tech lead, and she commented to me the other day interviewing potential employees. Normally, she and one of the male leads would interview candidates together. Consistently, interviewes would speak in very technical terms to the male lead, and dumb it down when they spoke to her. One candidate managed to describe a weird scenario that caused a stackoverflow exception to the male lead, and reiterate it back to her as "a stack overflow is kinda like filling a balloon with too much air, eventually fills up and finally goes POP!"

I don't know if people have had bad experiences in the past, but I've never seen a perceivable difference in coding style or quality programmers between men and women programmers.

link|flag
5  
I've been programming for over 20 years, and though I've usually been in the minority, it's not a large difference in numbers, and I've NEVER felt discriminated against for being female, and have often been recognized as the best. Maybe because I'm not pretty. – CindyH Jan 8 at 15:35
5  
I had a female boss at work, she is brilliant and very sharp (Razer sharp!) BUT she would always be paranoid about being treated inferior and her overreactions would be WW2. Sadly I couldn't stay in the company due to this problem – Harry Mar 29 at 5:42
14  
@Adam - What is the point in saying "yet to meet a good female programmer" and then say "yet to meet a female programmer at all" I think you should be checking for NULL first! – Harry Mar 29 at 5:43
4  
I have known 2 female programmers, 1 VERY good and the other may have been good, until she decided not to learn anymore... about 10 years ago... unfortunately she also needs an attitude re-alignment (assumes she is a programming god when in fact just knows the product/business rules very well) and makes even a simple hello sound like a declaration of war... – geocoin Jun 2 at 15:53
9  
"Women programmers can't be pretty" - I think similar stereotypes exist for male programmers too. – Jason Baker Jun 12 at 23:02
show 33 more comments
vote up 5 vote down
  1. copy and pasting code
  2. copy and pasting PHP code that prints static HTML

and the infamous:


total++;            // Increment the total.
link|flag
vote up 9 vote down

My pet peeve is code which is written to join a list/array of strings into a comma separated list and they loop round each item appending the comma (or other separater) and then when they get to the end remove the last separator when it can be easily done in a couple of lines (assuming c#).

        List<string> result = new List<string>();
        // do something if needed
        return string.Join(separator, result.ToArray());

:-)

link|flag
1  
I think this can be expanded to any situation where someone writes lots of code due to lack of knowledge of built-in functions. Happens all the time in PHP (which is worse because using PHP code to do something is always slower than the equivalent built-in function). – DisgruntledGoat Jul 4 at 20:03
show 1 more comment
vote up 5 vote down

Happened recently: The problem can not possibly be in my code, it must be in the library!

link|flag
1  
One of the rules I first learned was "assume your code is wrong, not the library". But over the years I have found so many problems in all sorts of libraries (heck I've found 2 bugs in IIS itself) that I've started considering both. – HeavyWave Oct 9 at 17:11
show 2 more comments
vote up 33 vote down

Ignorance of socially acceptable bathing habits.

link|flag
vote up 2 vote down

Just one of the most symbolic examples of ignorance in programming (C#):

    private string GetMonth(int Number)
    {
        switch (Number)
        {
            case 1: return "January";
            case 2: return "February";
            //And so on...
            default: return "Invalid";
        }
    }
link|flag
show 3 more comments
vote up 31 vote down

My pet peeve is developers who religiously attach to their language of choice.

As a practical matter, being a professional developer these days (in almost every space, not just web developers) should mean you are multi-lingual and capable/willing to explore other technologies. If you know your favorite language(s) well enough, you should also know where their limitations lay, and attempt to explore other options, instead of hammering a square peg into a round hole. A senior development position (or really, any development position) should come with the expectation that the developer can adapt and learn to fill the role as needed.

This is not just true of languages, but other technologies (app servers, frameworks, etc) as well.

link|flag
5  
+1 Dogma is a pet peeve of mine in all parts of life. Dogma makes you intellectually lazy and inflexible. – jcollum Jan 20 at 22:36
show 2 more comments
vote up 26 vote down

Inability to take pride in making mistakes. Instead of simply admitting them and moving on, people go to great lengths to cover their tracks.

Mistakes happen. If you meet a "senior something", then that means (before anything else) that this person has made a whole lot of mistakes and learned from them.

So a few years back, I made the hard decision to stand tall for my blunders and it has worked pretty well so far. When I can't find a bug after staring at the screen for more than an hour, I admit defeat and ask a colleague. This helps to avoid creating a bigger mess by "fixing" the bug by hiding it behind a new one.

"He who asks a question is a fool for five minutes. He how doesn't ask a question stays a fool." -- Old Chinese proverb

link|flag
show 1 more comment
vote up 34 vote down

Quickly writing really bad code that works, with a plan to refactor later... when it's done e.g. 100 lines of a function that "i will break into 5 smaller later".

If you do that and then try to refactor after it's working, you usually find yourself in a situation when there are two ways: write it all again (because it's too hard to refactor to really nice code) or leave it this way because it's working... and in many cases it's just left in its crappy version.

link|flag
show 2 more comments
vote up 0 vote down

That skilled programmers have a better value on business code than on technical code.

Affect your better coders to implement your domain model, they'll make it better, and that's the most important point.

link|flag
vote up 1 vote down

For Pete's sakes please don't use ALLCAPS for any form of constant in C#. Be it enums or const or ANYTHING. If your IDE doesn't tell if something is a const, you should find a new IDE, or failing that a new hobby/workplace/job.

link|flag
1  
If your workspace enforces this you work for lunatics :). Reason it was downvoted? Probably because StackOverflow throws out a big net: they are bound to get a few boots. – Jonathan C Dickinson Jan 9 at 6:27
show 10 more comments
vote up 0 vote down

So many things are very common. For Example, "Do you know programming in assembler?"

  • Confusion between class and object.
  • Doubt about when use heap instead stack.
  • Problems with Scope.
  • To declare boolean variables and after do something this : if (x > 1) a = true else a = false.
  • Briliant phrases like "The language is not much important."

And so on.

link|flag
vote up 1 vote down

.NET != C++

Saw this yesterday: a programmer wrote some code in VB.NET which passed all parameters ByRef between a few dozen functions. I asked him why he wrote it in that style, and he commented that .NET would make a complete copy of every array parameter before it passed it to another function. I correct him, "yes, it'll make a copy... of the pointer, but not the entire array".

He fought with me on that fact for a few minutes. I decided it wasn't worth my time to "fix" code that wasn't broken, so I left it as is.

link|flag
show 3 more comments
prev 1 3 4 5 6 7 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.