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 2 3 4 5 7 next
vote up 18 vote down

My pet peeve around here is treating crashes as "user errors".

We work with quite complex data structures and GUIs, and sometimes users put in the data that triggers some edge case in the model, or uncovers a bug in the code. The program coredumps. Some of my co-workers simply tell the user not to do it any more - end of the problem.

In my opinion, every such case needs to be debugged, and the crash turned into an error message telling the user what's wrong and how to fix it. It's not the user fault if the model can't handle rates below 1% - the model needs to tell the user about its limitations.

link|flag
2  
If possible, write a unit test that catches the bug. Such edge/special cases can indicate insufficient testing, so a good first step can be to see whether or not the corresponding unit test fails with that input. – Rob Jan 17 at 7:38
vote up 56 vote down

Mine is "bytes and characters are NOT the same thing, nor trivially convertible". I can't count how many times I've seen otherwise competent programmers completely ignore the issue of character encodings, misapply them horribly, or do multiple unnecessary and potentially destructive conversions between them.

The worst case I've seen, an overloaded method for handling XML (simplified):

public void setContent(String xml)
{
    SAXBuilder builder = new SAXBuilder();
    this document = builder.build(
        new InputSource(new StringReader(
        new String(xml.getBytes(), "UTF-8"))));
}

public void setContent(byte[] xml)
{
    this.setContent(new String(xml, "UTF-8"));;
}

Count the number of unnecessary and potentially destructive String/byte[] conversions. Count them!

Depending on the platform default encoding is par of the course for naive Java code, but corrupting the data unless it matches both the platform default encoding and a hardcoded one takes real talent - especially when it would have been less work to just hand the byte[] over to the XML parser and have it use the correct encoding declared in the XML data itself.

I blame it all on the C standard.

link|flag
7  
+1. Witness questions of "I've got a StreamReader with a jpeg image in..." No, you've got almost-certainly corrupted data at that point... – Jon Skeet Jan 8 at 13:11
2  
back when I was learning C, i had it drilled into my head that 1 byte = 1 character. I was happy with this ignorance for years until I came to make a multilingual website. Wow that was an awakening. – Neil Aitken Mar 5 at 9:53
2  
In C, it's actually defined that way - hence blaming it on the C standard. – Michael Borgwardt Mar 5 at 13:49
show 3 more comments
vote up 49 vote down

Many programmers think that writing unintelligible code that ultimately works somehow shows their genius. It's writing clear, understandable code that makes a good programmer.

A related issue are programmers who change old, unintelligible code without cleaning it up. Or not even really understanding what the old code does, as long as their new addition to it works.

link|flag
8  
"A related issue are programmers who change old, unintelligible code without cleaning it up" There's a logic to this, any code you change you will then be completely untested. Often, leaving badly written and complex code alone is the best course of action – weiran Jan 9 at 9:46
1  
@weiran: But if you don't know if your change affects the old code in any way, you can introduce errors just the same. You detect those errors better if the code is readable. – Sebastian Dietz Jan 9 at 13:22
show 3 more comments
vote up 4 vote down

"It seems to work for me, so I won't bother reading manual/specification to do it correctly"

This is why HTML, JavaScript, feeds and HTTP (caching, MIME types) are in such sorry state.

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

Ignorance of threading

(As applied to .NET/Java; different phases would apply in functional languages, for example.)

I believe developers go through up to 4 phases of threading knowledge:

  • Complete ignorance - ignore any possibility of problems. Result: race conditions, weirdness.
  • Over-reaction: make every member of every class lock/synchronize. Result: deadlock, code fluff.
  • Caution: reapproach the whole problem. Take a long time thinking over any threading issue. Get it right at least some of the time. Live in a state of fear when dealing with threads.
  • Nirvana: Instinctively do the right thing.

In my experience the last is more of a theoretical goal than an attainable state.

link|flag
16  
I love the wording "Live in a state of fear when dealing with threads" - so true. – Michael Borgwardt Jan 8 at 13:14
1  
"In my experience the last is more of a theoretical goal than an attainable state." -- What happened to FACTS such as Jon Skeet's experience doesn't include any unattainable states? – Windows programmer Jan 9 at 3:58
3  
You left out the 5th stage: the is no Nirvana. Threading is fine in simple cases, but intractable in the worst case. I say this after years working on hardware concurrency (interrupts, etc) at the hardware level. Believing there is a Nirvana is exactly the kind of hubris that's gets you into trouble. – Walt Gordon Jones May 17 at 9:30
1  
I once had a boss who stated "if it's too slow, I start making everything static". There are many things wrong with that statement. But, per threading, he would make instance variables static, which were then modified when another thread came along and tried to use the should-be-instance-but-am-static variable. – Matt Sep 17 at 20:35
show 10 more comments
vote up 30 vote down

I'm surprised by how many professional programmers are weak in math. Growing up I just thought that being good at math was a prerequisite for the job. Everyone I knew who was interested in computers was also good at math, so I just made a mental connection without realizing it.

link|flag
13  
I SUCK at math. It's WHY I am a programmer. I get the machine to do the math for me. – Genericrich Jan 11 at 6:15
13  
I must disagree here. There is no rule that says your math skills must be excellent to be a proficient programmer (or even an excellent one). I'd say that a logical mind, a keenness for problem-solving and patience have been far more valuable for me than mathematics. – Dave R. Jan 11 at 16:08
8  
I'll second this one, and add that I can't stand people who are proud of sucking at math. Those people end up producing convoluted or plain stupid solutions to problems which would benefit from a little mathematical thinking. – Rob Jan 17 at 7:32
8  
@jcollum: Logic is a branch of math, and you just needed to use it to try and declare that you don't need to use it. – Bill the Lizard Jan 28 at 3:15
5  
In 30 years of programming, I've needed very little math. But the last time was in a job interview - I've been told I can't code because I couldn't combine the properties of the integers with positional notation and permutations - all of which have been useless to me for 30 years. – John Saunders Mar 15 at 10:12
show 10 more comments
vote up 4 vote down

(.NET specific)

Myth: System.Decimal is a fixed-point type.

Reality: System.Decimal is a floating decimal point type, as opposed to System.Single/System.Double which are floating binary point types.

It didn't help that the MSDN documentation was wrong until .NET 2.0. Many people stood by the documentation, regardless of the fact that the exponent is clearly part of the value :(

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

In web development, ignorance of proper input sanitation and SQL injection vulnerabilities. In ColdFusion, for example, the language is so easy to learn that it practically welcomes new "programmers" to make this mistake. Much of the beginner documentation reinforced bad usage patterns early on as well. All of the languages that target web development have some kind of SQL injection prevention available, either through a sanitizer of a way to generate prepared statements, but many developers don't know what SQL injection is much less how to prevent it from happening. This leads to defaced sites, increased distribution of malware, and a general tarnishing of the image of web developers as second-class citizens in the programming community.

link|flag
vote up 43 vote down

People who constantly rant about "Code should have more comments in it". If developers spent more time paying attention to sensible naming and a reasonable approach to problems, most comments would be unnecessary. If the code requires comments to explain it, then there is a good chance the code has been badly written.

Developers who concatenate loads of method calls inline eg:

int.Parse(MyMethod(GetValue1(someString, someInt).Property1.ToString(), Convert.ToInt32(GetValue1(someString, someInt).Property2), ((ObjectType)AnotherMethod()).PropertyValue).ToString());
link|flag
2  
The app I'm working on at the moment has many comments of the "// Increment counter" type. Duh. What would be helpful would be an occasional statement about the intent of the code. – Andrew Kennan Jan 9 at 1:38
5  
In regards to your comment on comments(HA!). Some of this may stem from the fact that at my uni, your code gets a bad grade if it's not heavily commented. Most of the stuff is so simple that you can't NOT leave comments like "//Increment counter" for fear of a point reduction – prestomation Feb 27 at 15:14
1  
I don't usually see the inane comments, but I'd like to see more that say why you are doing it a certain way so I know if I should just rewrite your crap, or if you had a clue and I should search for meaning (Actually if you had a clue, your comment would have called out the meaning!) – Bill K Mar 29 at 3:58
1  
@apocalpyse9 - I feel your pain. There is however one example when one comment per line is a good idea: when you're a beginner programming in assembly. :) – Joren Sep 25 at 9:34
show 2 more comments
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
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

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

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 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 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 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 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 33 vote down

Ignorance of socially acceptable bathing habits.

link|flag
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 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
  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 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 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 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 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 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 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 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 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 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
prev 1 2 3 4 5 7 next

Your Answer

Get an OpenID
or

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