vote up 177 vote down star
200

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
12  
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 '09 at 13:17
94  
@ Jon Skeet - That would be the pet peeve of coding a solution before understanding the requirements? – Dan Malkinski Jan 8 '09 at 15:08
24  
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 '09 at 17:07
4  
@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 – johnc Sep 23 at 19:26
show 8 more comments

192 Answers

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

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

When a developer has no idea how to set up their own machine.

I've worked for a few companies now where a programmer is hired and the machine they are given is generic so it needs Visual Studio, SQL, etc. set up on it. Even when handed install media and/or a place on the network to get the installers from, many developers cannot figure out how to install the tools they need or have no idea what they need to install.

Worst case scenario this is proof that you have hired the wrong person, best case scenario they're actually a brilliant programmer who just so happens to have never had to install their own tools before. It pretty much cements the idea that they don't code at home.

Some of this though could be because I'm a snot who doesn't trust others to set things up right

IT: "So, what all do you need installed on this thing?"

ME: "Please just let me have the machine already, I'll put what I need on there"

link|flag
1  
It depends on where you work. When I first started my job, I sat around for the first day doing virtually nothing because I had to wait for the IT guy to come around and install all my software. I would have been happy if he had just left me the media and let me do it!! But the media is sacred, I guess, not just anyone is allowed to touch it! – Chris Dunaway Jul 27 at 14:49
6  
Never mind installing the software. The first company I worked at, the IT guy gave me a motherboard, a dirty cream IBM PC/AT case, 8 MB (!) of RAM, a mouse/keyboard with dust on them, and pointed at a shelf with some old hard drives on it... I ordered another 8 MB so I could try out this new "NT" thing. Also I treated myself to an 80 MB (!!!) harddrive. Kids today, you've no idea what it was like. – Earwicker Jul 29 at 11:20
show 3 more comments
vote up 9 vote down

"Runs on my box"

link|flag
vote up 6 vote down

Many programmers seem to think that their only audience is the compiler, when code is really written for other programmers. Compilers have no taste. It's an odd kind of prose, but it's for people to read. Tell me a story.

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

In C and C++:

Myth: Arrays are just pointers

Reality: Pointers are very different. Arrays are converted to pointers implicitly and often.

An array is a block of elements, while a pointer points to such a block. As this simple observation shows, they can't be the same. And an array also can't be some special kind of pointer, because as it is a block of elements, it doesn't point to somewhere.

Nevertheless, I often see people write that arrays are just pointers pointing to a block of memory. That yields to the fact that people try to pass arrays like if they were pointers. Two dimensional arrays are tried to pass like

void myarray(int **array) { array[i][j]...; } // wrong!

while believing if they have two dimensions, they have a pointer to a pointer. In reality, an array itself consists of the elements, it does not point to them:

int a[4][3]; sizeof(a) == 4 * sizeof(int[3])

There are many contexts in which one needs to address a certain element of it. This is where it converts to a pointer implicitly (i.e without programmers writing it). When passing the array to a function, the function receives a pointer to the first element that points to the array. That pointer is made up by the compiler as a temporary. The two dimensional array of above, would thus be passed like this:

void myarray(int (*array)[3]);

Which makes the parameter a pointer to the first element of it, namely a pointer to the first 3-elements array.

Arrays in function parameters

The programmer may declare a parameter to be an array, like in the following example.

void f(char s[]) { }

This will confuse the crap out of a programmer, at first. Because as the programmer works with the parameter, he finds out that it is actually a pointer. And he is right - it is a pointer, despite being declared as an array. The compiler doesn't care that you told him it's an array, it will make s a pointer anyway. As a consequence, any size you specify in the brackets is silently ignored, too. In this case and only in this case, s is a pointer and you can say it points to memory, because it itself does not own the data you access through it.

Variable Length Arrays (VLA)

Note that C99 introduced variable length arrays, which your compiler may silently support, too. These arrays have a size that isn't known at compile time. Their type is called a variably modified type, and these arrays can be used only for parameters or non-static, local variables (automatic storage duration). Here is an example

void f(int n) {
    int a[n];
}

In this case, the rule is the same as for non-variable length arrays. The array here will convert implicitly to int* (its element type) when required - just as with the other array above. Also, sizeof behaves correctly, and would yield in this case

sizeof(a) == n * sizeof(int)

They are not declared as pointers just because they have a size determined at runtime!

Related answers

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

In C++:

Myth: std::getline is a global function.

Reality: std::getline is not a global function, but a function defined in the namespace std.

There is a common believing that things that are defined in namespaces other than the global namespace are all global. But in fact, that can cause confusion as to not knowing where stuff is really defined.

Here is an example where to avoid confusion: Instead of saying such things as

1) global int variables are initialized to zero if an initializer is omitted.

Say the following, which is more correct and probably is what you really want to say

1) namespace scope int variables are initialized to zero if an initializer is omitted.

Note that just because there is no "namespace... { ... }" around the global scope doesn't mean that there isn't a global namespace: This namespace is not user defined. It's implicitly created by the compiler before anything else happens.

link|flag
show 4 more comments
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 42 vote down

I am a programmer and I do not need to know how to write a gramatically correct email. I also do not need to communicate with a customer on the phone - it is someone else's job. The only skills that matter are related to programming and nothing, nothing else.

Hate this!

link|flag
6  
what do you mean about grammar it doesn bother me atall – JasonFruit May 22 at 20:20
show 4 more comments
vote up 17 vote down

My code is so clear I don't need comments - that drives me nuts. No matter how good you are or how clean the code, comments are still helpful. Even with great variable names, clear formatting, and avoidance of "clever" hacks, sometimes it can still be unclear why code is written a certain way. Maybe you make use of an API such that's not readily apparent why you need to code something a certain way. Maybe you're testing something with unusual conditional statements that wouldn't be clear to another programmer. Whatever the reason, it's good practice to leave comments whether for yourself or someone else, that explain anything that's not very obvious, standard code.

At an absolute minimum, it's helpful to include things like function/method comments that explain what parameters are passed and what return value is expected as well as potential error conditions. Failing to do this because "my code is clear so I don't need comments" is just being lazy, ignorant, or both.

In a similar vein, deciding documentation isn't important because it's boring - that just results in a high "bus factor" where the loss of a single person can cripple the ability for the team to maintain code. This is great for job retention, not great for smooth development, and especially terrible for an open source project where the sharing of the code is an integral part of the ecosystem. Code access is not a substitute for documentation.

link|flag
4  
Interesting how there are answers on this thread complaining about writing unintuitive code that requires a comment to explain it, and answers complaining about the lack of comments in code... – thecoop Jun 6 at 21:10
2  
In the days when functions were called strtok and parameters were called p or n, I could understand this attitude. Today, if I write a method IEnumerable<T> WhereNotNull<T>(this IEnumerable<T> source) where T : class then my colleagues are going to know that it returns a sequence without null references and there's no need to write some clutter about how the source parameter is the input sequence. Comments are sometimes needed, but they are for excuses. You put a comment wherever you have failed to make something self-explanatory, or where there's an ugly hack. – Earwicker Jul 28 at 22:22
show 1 more comment
vote up 8 vote down

Ignoring all performance aspects for the sake of quick and dirty code. We all now the axiom "premature optimization is the root of all evil". However, there's a middle ground between premature optimization, and writing code with abysmal performance characteristics.

No, you don't need to spend hours tweaking your SQL queries to wring an extra millisecond out of them if you're running a tiny application with a mostly idle system, but you DO need to avoid things like "SELECT * FROM table" just because it was easier to code it that way. Things like this work great in a test/dev system, but what about in the real world where someone will be running with 100 or 1000x as much data in the db? Same goes for any code you write.

Take performance into account enough to recognize when you're artificially creating a bottleneck. This is an area where an ounce of prevention is definitely worth a pound of cure...

link|flag
1  
And the idea that developer time (saving a couple of minutes once) is more important than user time (having a 30 second delay hundreds or even thousands of times a day). – HLGEM Mar 24 at 15:14
vote up 9 vote down

Using string concatenation rather than parameters for SQL:

v_sql = "select cust_age from customer where cust_id = " + v_cust_id
link|flag
show 1 more comment
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 6 vote down

Ignorance of a programming language's order of operations. I've had programmers ask me why something like 10 + 20 * 3 - 5 was resulting in 65 instead of 85. I take one look at it and shake my head. On a related note, I always try to use parentheses liberally.

link|flag
show 3 more comments
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 71 vote down

Yet another one: the popular language Sun released in the 90s is called Java, not JAVA. It's not an acronym. There's no need to shout. Grrr.

(I'm thinking of changing my middle name to "grumpy old man".)

link|flag
8  
I'm a .net developer and for the life of me I can't remember if it's .NET, .Net or .net. MS marketing FTL there. – jcollum Jan 20 '09 at 22:43
8  
I always use ".NET" which seems to be what MS uses... but I'm sure at least one series of books has it as ".net" which actually looks more visually appealing. – Jon Skeet Jan 20 '09 at 22:49
4  
Just the same with Ada. – E Dominique Mar 15 at 17:54
4  
Back in the day, using small caps for product names, trademarks, etc. seemed quite the fashion - perhaps this sort of thing is a throwback. "MAC" for (Apple) "Mac" ticks me off. Maybe IT is so full of acronyms people just assume every term is one! – cheduardo Jun 13 at 15:48
3  
If someone who calls him/herself a Java programmer writes "JAVA", then I seriously doubt how well that person knows about Java. – Jesper Aug 14 at 11:46
show 8 more comments
vote up 7 vote down

Oh, just remembered another one...

In C# and Java at least, '? :' isn't called "the ternary operator". It's the conditional operator. It happens to be a ternary operator (in that it has three operands) and it happens to be the only ternary operator at the moment, but that's not its name, nor does it describe the purpose of the operator.

If either language ever gains a second conditional operator (it's possible) then all articles/answers/books etc which refer to the conditional operator as "the ternary operator" will become ambiguous.

Yes, this is very much a pedantic peeve, but it still irritates me. I blame book and tutorial authors who've been spreading the non-name "ternary" for years :(

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

Spelling mistakes.

link|flag
1  
You do realize your code will still compile as long as you misspell consistently, don't you? ;-) – John MacIntyre Jan 14 '09 at 17:45
show 2 more comments
vote up 1 vote down

My favorite one is that linked lists are quicker for adding and removing items in the middle than array lists. So many people fail to grasp the subtler concept and give the canned answer that everyone seems to propagate. This is in Java in particular, but the pet peeve applies to the concept in general. Say you have list.remove(2000) in a list of 4000 items, they claim it will be quicker in a linked list than in an array list. What they forget about is how long it will take the above call to find the 2000th item ( O(n) ) and then remove it ( O(1) ). The iteration will be done in Java code many times over. With an array list, it will be a low-level memory copy which, while is o(n) as well, will be quicker in most cases than iterating a linked list.

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

I don't think any else has posted this - I hate "over inheritance" where the class hierarchy is 8 or 9 classes deep. I've seen code like this written by fairly experienced people and I think it's caused by combination of a naive view of what inheritance is for and an unwillingness to refactor base classes to make better use of encapsulation instead.

link|flag
1  
Ah, classic. I like to call this "OO-wanking". – Rob Jan 17 '09 at 7:55
show 1 more comment
vote up 0 vote down

Pretentious questions like this :-)

link|flag
vote up 11 vote down

Blowing off restrictions/constraints for a framework/library/API/subsystem that are clearly spelled out by its authors in its documentation is a big problem. As a corollary to this, I would include: simply not even bothering to read the documentation.

Here are some examples of mistakes I see cause problems over and over again in Java programming:

  1. Concurrency issues (e.g. modifying things that are non-reentrant from the wrong thread)
  2. Failing to close things properly; a.) either totally omitting the call due to extreme laziness, or b.) failing to structure it in a properly constructed try-catch-finally statement.
  3. Mishandling exceptions; a.) putting things in a catch (Exception ex) statement block that belong in finally, b.) doing catch (Exception ex) and then doing nothing in the body, c.) failing to call a logger with a warn/error/fatal when catching-not-rethrowing ex, d.) logging an exception, re-throwing it, and logging the same exception with same msg, e.) throwing unchecked exceptions and not documenting they are thrown in javadoc, f.) failing to throw a nested exception and instead just throwing a different exception.
  4. Calling a print/println method in production code when using a logger is needed
  5. Not aborting start up of an application when an error is detected in configuration
  6. Syntax errors in generated/entered HTML code; HTML has been out a decade and a half, people - learn the language and use a validator
  7. Generating/entering XML with syntax errors in it, not validating it, and not turning on validation in the XML parser being used
  8. Testing HTML with a particular browser - and completely overlooking the fact that it has lots of errors in it because it "looks right" in that version of that browser.
  9. Spelling errors in comments (decent IDE's point these out now) or worse, in a method name
  10. Declaring a parameter an Object or something too general to use and then down-casting the argument value received. Ninety-five percent of the time, the need for a downcast could have been avoided by using a different approach: overload the method, use generics, keep track of the type being passed by correctly structuring the control flow and data flow of the program, etc.
  11. Using flags and type codes instead of polymorphism in object-oriented langauges
  12. Checking for null AFTER dereferencing the value passed as an argument
  13. Failing to code defensively by checking arguments for correct values: boundary checks, null checks, size checks, and string length checks (empty or too long)
  14. Processing input from CSV (comma-separated value) data files and not handling the myriad special cases: apostrophe(s) in data, double quote mark(s) in data, commas in data, etc.
  15. Concatenating values directly into SQL statements instead of using prepared statements with placeholders and storing the values into it that way. Concatenation is generally an evil way to build SQL statements because of the reasons cited above for CSV data. Plus, has no one heard of "SQL injection vulnerability"?
  16. Calling System.exit method from deep within the bowels of an application, especially one that does not contain resource closing/releasing code in finally clauses of try statements.
  17. Overlooking the fact that ThreadDeath should never be caught (if you catch it, rethrow it) and usually neither should Interrupted Execution unless you consciously are handling it.
  18. C/C++ code that makes JNI calls but fails to check the JNI status after each such call as is required by the spec - and, boy, do they mean it!
  19. Violating the crap out of the architectural constraints/rules for EJBs.
  20. C++ code that throws something insane (like false) instead of a proper exception-explaining class that documents what when wrong; or on the flip side, using catch (...) to catch exceptions. Doing both in the same program really bugs me, pun intended.
  21. Putting code in a static initializer that can fail and not paying attention to the weird context it executes in that will vex anyone trying to debug what you wrote when exceptions occur. Try it - not so happy times, eh?
  22. Writing code such as listed above and then blaming the language, the GUI classes, the SQL server, the J2EE server, the compiler, the operating system, the JDBC drivers, and/or the third party software libraries for your application's slow and/or unreliable behavior.

Those are a few of my least favorite things.

In a more general vein, I have lost track of how many times I have seen code with bugs in it because someone copied code blindly from somewhere else that supposedly "did something similar" to what they were trying to do.

Copy-paste programming without an understanding any deeper than the name of a function and how many arguments to pass it can get your software product into a world of trouble!

The place I see this happen the most often as I work on Java programs is with concurrency issues.

Sun made it way too easy to create a thread in Java - and way too hard, relatively speaking, to detect/prevent cases where some yokel has violated a constraint.

Fortunately, you can check for this problem using AspectJ. There are plenty of good examples of how to do this in books, online articles/tutorials on the web, etc. Program the aspect in a .aj source file not a .java source file. Then, your application proper will not need to be compiled with the AspectJ compiler in general. Only when you want to have the aspect be in effect do you need to use the AspectJ compiler.

Hmmmm... I guess I have seen a lot of defects occur a lot of times and cause a lot of problems.

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

The end-user experience. Most developers have a flat-out disdain of the end-user when it is the end-user who is the entire point of the development effort.

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

The belief that functional programming is new and the belief that functional programming is the end-all be-all to programming.

link|flag
2  
People are gonna shout at me for saying this, but the same applies to OOP as well. Or any other. There is no "one true way" in anything (except driving on the highway) – ldigas Feb 25 at 17:19
show 1 more comment
vote up 2 vote down

I've found that a lot of programmers don't know about the for loop. They'd rather use:

Dim i as Integer = 0
Do Until i > 10
    'do stuff
    i = i + 1
Loop

And when I tried to let one know about the for loop he got mad and said he wasn't going to rewrite all his code just to use a different kind of loop.

link|flag
1  
maybe im using the term "programmer" loosely. :) – John Boker Jan 12 '09 at 14:45
show 1 more comment
vote up 8 vote down

In no specific order:

  • People who pick a certain technology for a project just to get it on their resume. We have this one unmaintainable app at work because the developer (who left about 6 months after starting the project) decided he needed to write it in something neither he nor anybody else knew.

  • People who believe that there is one true way to do something and that everybody else who doesn't agree is either stupid, ignorant, or a heretic.

  • Premature/Nonsensical optimization strategies. This was taken to its extreme by one of my former co-workers at a Java job (I love Java, this has nothing to do with the language). He refused to use interfaces, non-final methods, or non-final classes. He believed everything (EVERYTHING) should be cached to the extent that he wouldn't create objects and would cache even the simplest things. He believed that all this made his code "more performant" (is that even a word?!). Of course, he wouldn't cite any sort of proof that this was the way to do it, nor would he prove that his code needed this optimization in the first place. Code like this is a joy to test, by the way.

  • Job title as a defense. Same job as the last part, we had this guy who was convinced that java.lang.String had some kind of bug in it. When I tried to point out that it might be his code instead, he started in with the "I'm a Lead Developer, and if I say it's in String, that's where it is. You need to follow me. I'M A LEAD DEVELOPER!"

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