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

My pet peeve, one that I care for and nurture has got to be "Well we have done it like that for years". Technology moves on, so should programmers. I don't mean use the new version because it is the new version. I used to hear it a lot from a VB programmer that clung onto VB6 with a vengeance. He didn't want to leave the bloated, dated and very slow VB app that he had due to it being perfectly good when it wrote it X years ago.

link|flag
show 2 more comments
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 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

Ignorance of one's own limitations. I can't stand it when someone thinks they know everything there is to know about a topic and give useless or harmful "advice" to someone else.

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

Most programmers don't seem to realize that any database product based around SQL is not a relational database. Somehow the whole concept of a relational database gets smeared because of how awful SQL is. Web developers now want to use new untested database paradigms because they just can't stand the idea of using a "relational" (that is, an SQL-based) database. Go ahead and read the SQL standard and try and find any occurance of the word "Relation" or "Relational"

In reality, there has never been a mainstream relational database. There's a couple research programs (like rel) that implement the relational concepts. But it's all got this kind of grampa's suspenders air about it, that nobody wants to touch, because it's just not hip to be mathematically and logically rigorous nowadays.

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

Overengineering, usually to make unnecessary optimizations.

These are usually done by seniour developers. These usually add a lot of complexity with adding minimal (if any at all) speed improvements. What's worse, is that after these are done, someone other unlucky developer gets stuck with the "optimized" code.

link|flag
vote up 3 vote down

My pet peeve is a sort of brain-washing that most programmers don't even realize has happened to them - namely that the von Neumann machine is the only paradigm that is available when developing applications. The first data processing applications using machinery were what was called "unit record", and involved data (punched cards) flowing between processing stations, and the early computers were just another type of station in such networks. However, as time went on, computers became more powerful. Also the von Neumann architecture had so many successes, both practical and theoretical, that people came to believe this was the way computers had to be! However, complex applications are extremely difficult to get right, especially in the area of asynchronous processing - which is exactly what the von Neumann machine has trouble with! On the other hand, since supposedly computers can do anything, if people are having trouble getting them to work, it has to be the fault of the programmers, not the paradigm... Now, we can see the von Neumann paradigm starting to run out of steam, and programmers are going to have to be deprogrammed, and "go back to the future" - to what is both an earlier, and a more powerful, paradigm - namely that of data chunks flowing between multiple cores, multiple computers, multiple networks, world-wide, and 24/7. Paradoxically, based on our experience with FBP and similar technologies, we are finding that such systems both perform better, and are easier to develop and maintain.

link|flag
vote up 3 vote down

Using global variables as a mechanism for parameter passing. I have seen this mainly in VB6 projects. When you open a project you are greeted with a page of global variable declarations. And the functions usually dont take parameters.

This sucks big time because:

  • it breaks encapsulation (the function now has external dependencies)
  • it is reinventing the wheel (there already is a mechanism for parameter passing)
  • it is usually undocumented (the caller needs occult knowledge)
link|flag
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 3 vote down

I didn't/You can't because the house rules of development say you can't!

I can't count how many times I've been told I couldn't write something a certain way, or been told by someone that they didn't write something a certain way, because some preexisting "house rule" said it wasn't allowed. I don't think anything irks me more than encountering a "rule" that prevents me from implementing something in the most efficient, concise, effective, clear, maintainable way possible because it is either:

  1. Not a "standard" for the company
  2. Not allowed because of some wiley rule...usually written decades ago
  3. Not proper coding style for Java, despite the fact that its C# code
    1. Starting type members with a capital...?
    2. Using properties...??
    3. Using LINQ or lambda expressions, or anything 'functional'...???
  4. Not kosher because its "too new" .NET technology, despite the fact that its been out FOR YEARS, and has been thoroughly vetted by the monstrous Microsoft developer community of MILLIONS.
    1. .NET 3.0/WCF/WPF
    2. C# 3.0 features: LINQ, anonymous types, lambda expressions, etc.

These kinds of things just REEK of ignorance. People get so attached to their "purist" or "conformist" ways sometimes that they miss the long- and short-term time, effort, and money saving advantages that are just dangling right in front of their noses.

C# sucks because Microsoft destroyed its original intent as an object-oriented purist language.

I get this one from Java OO purists a lot (no offense). No matter how much I stress the point, provide solid resources (i.e. Eric Lippert's Fabulous Adventures In Coding), or actually demonstrate it...some people refuse to accept the simple fact that C# is a language designed for component development. It was never designed as an OO purist language in which functional features such as lambda expressions, the var keyword, LINQ, etc. are bad things that ruin the language.

Wake up, people! C# was never designed as a pure object-oriented language. Use it for what it is, and reap the benefits!

link|flag
vote up 3 vote down

In C++:

Myth: NULL is not always zero, but it depends on the null pointer address.

Reality: NULL is always zero, and it's not an address. It's an integer.

Many confuse NULL with an address, and think therefor it's not necessarily zero if the platform has a different null pointer address.

But NULL is always zero and it is not an address. It's an zero constant integer expression that can be converted to pointer types. When converted, the pointer created is called a "null pointer", and its value is not necessarily the lowest address of the system. But this has nothing to do with the value of NULL.

link|flag
show 9 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 3 vote down

That rebooting is a first line of defense solution.

This applies to DBAs too. I've encountered more than my share of programmers/DBAs that think nothing of rebooting a production system to fix things. In fact, I am cringing right now. =)

While this may fix things, it is tremendously disruptive and only used as a last resort.

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

Ignorance of the fact that questions like this should be community wiki.

link|flag
2  
Rolled back. If you don't like the answer, vote it down, don't just remove it. – Dan Dyer Jan 8 at 12:36
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 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 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 2 vote down

Programmers that have absolutely no idea whatsoever what "malloc" means/refers to.

link|flag
vote up 2 vote down

Displaying a message box instead of raising an exception when a method fails to do it's job. For example, a Save() method in a Form simply showing a message box, instead of raising an exception, because the user hasn't filled in some required field, etc.

Because they don't raise an exception, any code calling the Save method has no freaking idea that the Save failed or why it failed!

Typically at this point I'd expect at least one person to say that exceptions should be used "exceptionally", i.e. rarely. If you follow this philosophy then you still need some way to tell your calling code that you failed, which results in changing your method signature so it returns failure details either as a result or an out parameter, etc. And of-course your calling code will need to tell it's calling code that it failed and so on. Ahh hello world, this is exactly what exceptions are built for!

Maybe this thinking doesn't work in all frameworks (like web, etc) but in Delphi Windows applications it's perfect as unhandled exceptions don't crash the application, once they travel back to the main message loop the app simply shows a presentable message box to the user with the error details, they click OK and program flow continues to process messages again.

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

Ignorance of the principles of reusable code and parameters. A ColdFusion developer I inherited code from had made several pages with names like getWallProducts.cfm, getFloorProducts.cfm, getCountertopProducts.cfm, getBacksplashProducts.cfm, etc. Each of the pages was absolutely identical except for the WHERE clause in one SQL query.

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

The difference between "I need to get this done" and "I need to get this done here" (as in I need to add code in this specific location). By far the biggest issue I have encountered in scaling systems up is where code written by various people puts a lot of logic that should live in separate levels of abstraction in a single place.

link|flag
vote up 2 vote down

Copying code from another application they've worked on containing the functionality they want to use, and not changing the variable names (that only make sense in context of the original application) because "the client will never see the code."

Oy. Do I try to explain that the client can and will see the code in any variety of instances, or that this will drive fellow team members crazy/confused, or that the PM will have a conniption when she requests full documentation of the system and sees processes named after other clients' products?

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
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 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 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 have many, but this one makes me want to hurt myself:

"...but it was working before."

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
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.