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

People who know only one language, that "can do everything". And every problem they face as if they are using their "can do everything" languaje and never stop to see what else can bee done in the others paradigms...

link|flag
vote up 1 vote down

Revert 'small' refactoring because running the unit tests before committing takes too long.

link|flag
vote up 8 vote down

People who really believe that Object Oriented Programming is the end all be all of programming, and completely disregard anything else. I'm a Clojure and Haskell programmer. People like that are extremely annoying, and extremely blind.

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

JavaScript is the same as Java right? They both have Java in the name, so they must be the same.

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

Ignoring the latest community libraries/techinques, and continuing to develop software the way people did ten years ago.

link|flag
3  
In my experience with large companies, you can count yourself very lucky if techniques are only 10 years out of date. – Michael Borgwardt May 13 at 13:21
show 1 more comment
vote up 2 vote down

People who think "Real-time" is fast.

Usually it takes more time to make sure that tasks are achieved in time.

link|flag
vote up 2 vote down

When people say "Oh, this is so simple, I know it works, there's no point of writing a test for it".

They are completely missing the point of the test, it isn't just to verify that it works, it's to verify that it still works when people make changes down the road.

link|flag
vote up 1 vote down

The remark "reinvent the wheel". Look around you, do you see one size of the wheel fitting all?

link|flag
4  
There's nothing wrong, necessarily with reinventing the wheel. The question is, is that really what you're up to? If you are serious about researching the technology of wheels, and get a good feel of what makes a good wheel and a bad one, then there's nothing wrong with expending engineering effort at improving or rethinking it. On the other hand, if you want a cabinet that rolls, spend your energy on the cabinet, and use an off-the-shelf wheel. – TokenMacGuy Jun 19 at 2:37
vote up 11 vote down

When people don't know what "Unit Testing" means

I've heard the phrase Unit Testing thrown around and since I'm a developer I think of stuff like Nunit and so forth but then it hit me that when I hear QA and Managers say "Unit Testing" they're referring to actually just doing the testing, maybe from a set list ("do A then B then C and the output should be D, if it's not then shit's broke").

So then to avoid confusion I started using the phrase Automated Unit Testing to refer to what I'm calling Unit Testing as a developer - which worked fine right up until the managers thought that I was referring to generating Unit Tests (the lists, I guess) automatically and the QA people thought I was trying to automate them out of a job.

I guess I'll just call it "NUnit Tests" and be done with it. Well, until we get migrated to TFS at least.

link|flag
vote up 4 vote down

Programmers who do not unit test their code and then get upset with QA when bugs are found which obviously demonstrate this fact.

link|flag
vote up 4 vote down

The Tabs vs. Spaces debate. I personally don't care which to use (I'm not picking any sides - they all have their pros and cons, and modern IDEs will do whatever policy is selected for you), I just hate working on a project where it is not consistent between developers, and I'm constantly asking myself "do I need to switch my editor policy for this file?", and toggling my "show whitespace character" setting. If you're ever starting a new project with new developers - pick one, put it in your coding style guidelines, and make sure everyone sticks to it, or watch out when you have to modify someone else's stuff - and don't complain if you join a project and the current policy is different than what you prefer and try to prove that "tabs are better than spaces", or the reverse - it'll just make everyone mad, make you sound arrogant, and you'll be bantering over something that is not productive. You can banter about it when you're deciding which to use at the beginning, but after that - leave it alone!

Oh - if you prefer to use tabs - use it only for indenting, and use spaces for alignment. Those who use tabs for alignment bug me.

link|flag
1  
TABS! :) And nothing for "alignment". It doesn't need to be pretty, just logical. – James M. Jul 28 at 0:37
show 1 more comment
vote up -6 vote down

Users of any application - or device - who call you up and say "It doesn't work".

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

I have many, but this one makes me want to hurt myself:

"...but it was working before."

link|flag
vote up 5 vote down

Coders who don't know the advantages of keeping code within 80-columns.

link|flag
1  
It allows you to keep two related code windows side by side like .h and .cpp. And it's also easier when you're viewing code on a console or a printout. – Agnel Kurian Apr 5 at 12:39
1  
Here's another scenario: when I need to view the MouseDown, MouseMove and MouseUp handlers side by side! – Agnel Kurian Apr 14 at 6:59
show 2 more comments
vote up 0 vote down

Comparing floating point values from different calculations without using an epsilon.

Example:

if(sin(x) == cos(y)){ /* do something */ }

instead of

/* here epsilon is taken as 0.001 */
if(abs(sin(x) - cos(y) <= 0.001){ /* do something */ }
link|flag
show 1 more comment
vote up 0 vote down

In a dynamic language, not using Duck Typing and littering the code with tonnes of switch statements!

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

Professional programmers who don't understand free software (open source) licenses, and yet either use the code without regard to what the license says, or make blatantly false statements that simply reading the license in question would fix. Now, there are a lot of licenses out there, so it's not necessary to understand the intricacies of every single one, but if you are going to use or discuss one of the most common licenses (GPL, LGPL, BSD, or MIT), you should at least have a decent idea of the basic requirements of that license.

I have found GPL'd software in proprietary code bases with all license notices stripped off. I have seen people assert that because it's free software and they have the source code in front of them they should be able to do whatever they want with it.

On the other hand, there are the people who make blatantly false statements about licenses without having ever actually read the license in question; for instance, asserting that the GPL is viral, or that your code must be under the GPL if you link to GPL'd code.

Just for the record, since I have seen a lot of this confusion recently, the GPL doesn't force you to do anything; it does not infect your code. It is simply a license; that is, it is a set of terms which, if followed, give you permission to copy and distribute that GPL'd code. Those conditions include having no restrictions beyond those of the GPL on code you distribute that is based on (which basically means linked to) the GPL'd code. Your code can be licensed under any GPL compatible license, and if you remove the GPL'd code (including support for linking to it, unless it's the LGPL), then you can go back to using any license you want.

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

Bad or incorrect knowledge of data structures.

"I need to find all untranslated strings in our source. I'll just build an array of all the strings, copy it and compare them to eachother."

Congrats on your n-squared solution. Some folks with modern CS degrees don't even know what a hash-map does. Or why you would ever use one as opposed to an array or list etc...

Drives me nuts.

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

I find that all too many business application programmers are abysmally ignorant of data meaning, database design and data access. Virtually every business application has a database backend, a programmer who doesn't understand how to efficiently and effectively query it will have a badly performing product that users don't want to use.

A developer who doesn't bother to learn database design principles before actually designing a database will cause problems in the applications for years to come.

Further their ignorance often results in data integrity issues - meaning the data is unreliable or meaningless and thus the application is irrelevant or queries that are so poorly designed they provide the wrong results.

Another problem is the developer who thinks that saving a minute of his precious development time is more important than wasting hours of the users' time every day. Programmers should spend all day every day for a week actually using their applications. They would change how they design them.

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

Unreadable code. And large, flat LabVIEW block diagrams that take a couple thousand pixels in both directions. And bland and ugly UI's. And noisy workplaces. And knowledge silos. (What? we can only have one?)

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

Most of my "favorites" are already up here, but here's one I just ran into again last week (from an otherwise decent programmer):
Traversing the ENTIRE XML DOM tree, when searching for a specific node (or nodes), using methods such as Children[], NextSibling(), etc.... instead of a simple call to SelectSingleNode (or SelectNodes) with a simple XPath expression. This of course resulted in many recursive calls, not to mention HORRENDOUS performance...

Of course, this can be generalize as "not using code the way it is meant to be used".

link|flag
vote up 1 vote down

My Pet Peeve?

Undocumented code. All the rest can be solved or worked around.

link|flag
vote up 6 vote down

The most annoying thing I have come across are developers that truly believe that if the code builds then it is working and production quality!

link|flag
vote up 7 vote down

Anyone who calls "SQL Server" "SQL". One is a product of Microsoft, the other is not.

link|flag
show 2 more comments
vote up 15 vote down
  1. The programmer who thinks that I have no clue how memory management works because I've been working in a language with a garbage collector for 8 years.

  2. The n00b who we just hired that hasn't seen a language without a garbage collector telling me I'm too uptight because I worry about how memory is being allocated and freed.

In our case (long running, high load processes), it's critical we pay attention to how much memory we're allocating and when that memory is going to be freed. Just because the actual collection will be done for me doesn't mean I can bury my head in the sand.

link|flag
vote up 19 vote down

I'm not a perfect programmer and there are a lot of things I don't know. But for all my imperfections; I care, I do my best, and I always try to figure out how to do it better next time.

.. but programmers who just don't care drive me nuts.

link|flag
vote up 31 vote down

This is a real, live, production example that I uncovered in code that I needed to maintain in my professional capacity.

I printed it out and kept it on my wall as a trophy for some time.

function isValid(form){
    if(checkUser(form.username))
    {
//        if(checkPass(form.password))
//        {
            if(checkName(form.name))
            {
                if(checkCompany(form.company))
                {
                    if(checkCompany(form.email))
                    {
                        if(isNotEmpty(form.phone))
                        {
                            if(isNotEmpty(form.address))
                            {
                                if(isNotEmpty(form.city))
                                {
                            //        if(isNotEmpty(form.state))
                            //        {
                                        if(isNotEmpty(form.zip))
                                        {
                                            if(isNotEmpty(form.country))
                                            {
                                                if(isNotEmpty(form.url))
                                                {
                                                    if(isNotEmpty(form.payto))
                                                    {
                                                        if(checkForm(form.terms))
                                                        {
                                                            if(checkForm(form.spam))
                                                            {
                                                                //alert("Thank you form is processing");
                                                                return true;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                   // }
                                }
                            }
                        }
                    }
                }
//            }
        }
    }

    //alert("processing failed");
    return false;
}
link|flag
8  
the true icing is the carefully commented close braces. – TokenMacGuy Mar 19 at 1:22
7  
Especially since, despite the obvious care taken, the outer set of commented braces doesn't match. – chaos Apr 30 at 20:51
3  
AAAAAAAAAAAAAHHHHHHHHHHHHHHH!!!!!!!!!!!!! – MusiGenesis Aug 28 at 16:38
1  
Oh my word. This could almost pass for obfuscation. – Kyle Rozendo Aug 30 at 20:48
2  
You sir, are a prince amongst men for not quitting on the spot. – SnOrfus Sep 2 at 19:06
show 8 more comments
vote up 10 vote down

Reinventing the wheel.

As in: instead of using 30 minutes to look up a standard, textbook-ish solution (using an actual textbook, Google, or whatever) – first use 25 minutes to design your own solution (because it's somehow less boring; see also NIH), then use another 25 minutes to make your solution compile, then use 1:45 to prevent it from crashing when you just try it, then use 3.5 days for some additional fixes based on integration testing (or whatever it is that you do), and finally spend weeks processing bug reports and log files / stack dumps / whatever that you get from the customers.

link|flag
1  
Worse than that are "technical" managers who discourage use of existing solutions that weren't "written here". – JasonFruit May 22 at 20:42
show 1 more comment
vote up 1 vote down

Cowboys who just want to write code before they have finished understanding and then debugging their business rules & requirements. Once you have finished slashing your business requirements and rules with Occam's' Razor the code, modules, libraries, data structure etc. that you need will be bleedingly obvious.

Horse first, then cart.

link|flag
vote up 2 vote down

Always starts by writing concrete classes instead of starting to "program by interface".

link|flag
show 1 more comment
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.