up vote 51 down vote favorite
18
share [g+] share [fb]

Maybe infuriate is not the politically correct term, but what kind of code would qualify for a genuine face palm?

Addendum: For me, it's the misuse of technology. The group of people who develop .NET like classic asp apps are very likely the same group of people who use recursion for simple iteration, standard array where linked list is blatantly the answer, massive number of individual variables in combination with if-statements for hash tables, functions for properties, validating input forms with only javascript, placing important naked-eye readable information in cookie,and on and on and on....

link|improve this question
2  
Actually, based on the other items in your list, I think it's more likely that you'll find a mass of complicated (and usually wrong) iteration when recursion would have solved the problem far more effectively. – Hank Gay Oct 25 '08 at 3:31
show 2 more comments
feedback

closed as not constructive by Tim Post Nov 1 '11 at 18:23

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

83 Answers

1 2 3
up vote 108 down vote accepted

Finding essentially the same code cut-n-pasted in dozens of locations throughout a project, sometimes with one or two subtle changes.

link|improve this answer
1  
I love finding these. Refactoring them can be really fun, and can pull out some great OO patterns in your code that you wouldn't have thought existed. – Bill K Oct 24 '08 at 23:38
2  
I love fixing this bits of code. My favorite type of refactoring – Nathan W Oct 25 '08 at 5:13
33  
I've heard this referred to as "clipboard inheritance". 8) – Carl Oct 25 '08 at 11:26
1  
"Clipboard Inheritance" is now a stock phrase in my refactoring comments. +1 to you sir! – Electrons_Ahoy Oct 31 '08 at 17:16
4  
At one of my old jobs, I used to say we had 100% code reuse: Control-C, Control-V. – Kyralessa Jan 15 '10 at 21:45
show 5 more comments
feedback

Inane comments. For example:

// increment i
i++;

A better comment:

// i is off by one after the above, so adjust it
i++;

What the code is doing should already be obvious to any competent programmer who's familiar with the language. Comments are for explaining why it's doing it.

link|improve this answer
2  
I agree, but I think your second example is flawed. It actually says why the increase happens. – Daniel Rikowski Nov 18 '08 at 13:26
show 6 more comments
feedback

Poorly-formatted code. There's just no excuse for that.

All code gets crufty, complex, messy and obscure. But a basic sense of taste is sufficient to keep the code well formatted.

link|improve this answer
1  
This really bugs me too, because with all the prettyprinters and IDE's these days, someone almost has to put in physical effort to deliberately misformat code - yet it still appears everywhere :-( – Orion Edwards Oct 26 '08 at 0:05
1  
@Bill K: The problem comes when the section of code in question have generated tens of bugs. If you ctrl-shift-F it, you will be winning the raffle of the tiger ( does that saying exists out of where I live ) I mean, the VCS will give you the paternity of such code. :S :S – OscarRyz Dec 6 '08 at 1:41
show 4 more comments
feedback

Kilometric methods. I've found methods of about 100 to 400 lines of code, with 5 - 10 nested if, for, while, do..whiles and tens of variables with names as

tmp

var

var1

a

i

x

y

z

I really hate those methods!!!

link|improve this answer
show 9 more comments
feedback

when they lie in the comments

link|improve this answer
7  
I like Steve McConnell's quote from Code Complete: "If the code and comment differ, then they are both probably wrong" – Mitch Wheat Oct 25 '08 at 3:09
show 2 more comments
feedback

Regions.

I hate opening a file just to see 50 collapsed regions, each of which containing another 50 collapsed regions. It's bad enough I have to dig through the object hierarchy, but now I have to dig through the region hierarchy the developer came up with!

link|improve this answer
1  
Use ctrl + m + l to expand all if you don't like them rolled up. – DancesWithBamboo Oct 24 '08 at 22:54
6  
I actually like regions if it's well defined. If your company has a standard policy of collapsing class fields, properties, event handlers, ETC, it can be very convenient and time-saving. But like all other tools, it can be abused. – Haoest Oct 24 '08 at 23:05
2  
Amen. Regions are even worse when you think about how much time programmers spend on them, when they at best offer a tiny bit of utility (I'm being polite). – MusiGenesis Oct 24 '08 at 23:19
1  
Amen! to that. There should be a global IDE option to completly ignore Regions. They are the work of Beelzebub! :) – Mitch Wheat Oct 25 '08 at 3:07
show 5 more comments
feedback

Reinventing the Wheel

I just hate it when I come over some internal implementation of functionality which is in fact part of the platform.
And no one has a real clue about why it was implemented that way, and not used the existing platform implementation.
Especially when the internal implementation is a sub set of what is provided by the platform.

link|improve this answer
1  
This gets even worse when other programmers take the reinvented wheel and reuse it without themselves knowing it. – JesperE Oct 25 '08 at 6:06
3  
Even worse than that is reinventing the square wheel. – CesarB Oct 25 '08 at 14:55
show 4 more comments
feedback

Massive 4000 line files or classes, with massive if statements everywhere.

link|improve this answer
feedback

I really hate "Smart" algorithms without any comment. They cost enormous amount of time to comprehend, and most of the time, the "smart" factor is not that high.

link|improve this answer
1  
you mean "cryptic", not "smart" – Jimmy Oct 24 '08 at 23:05
3  
I've redefined "elegant" to mean "the most obvious way to do something". Spread the word. Hopefully it will catch on. – Bill the Lizard Oct 25 '08 at 0:17
show 4 more comments
feedback

In my younger, more vengeful, days, I was once irritated by a colleague who declined to fix a trivial bug that I had reported. It was a very quick flicker of the fields in the GUI when items changed.

The bug was bothering me because it showed the potential of being a serious flaw in the logic, but no-one else cared because the final output was still correct and the unit tests were passing. Eventually the team leader assigned the bug to me to fix just to shut me up.

So, I may have been a bit grumpy as I looked through his code for the bug, I had my red pen out and my notebook ready, to jot down every problem I found with his code, every potential bug, every confusing variable name, every inefficient loop, every violation of the coding standard.

His code was... immaculate. Well commented, well abstracted, good variable names, correct use of language features. It was probably the cleanest code I had ever seen in that organisation. It was flawless.

HOW INFURIATING!

p.s. When I eventually found the bug, it turned out to be trivial in its impact. There was no serious underlying logic flaw, and no-one cared that it had been fixed.

link|improve this answer
5  
Well, this was a nice breath of fresh air among a lot of (entertaining) negativity! I hope you made it a point to learn from the guy. – Software Monkey Dec 24 '08 at 7:53
2  
LOL. I worked with a guy like that - ex-chemist. Great code. – paulmurray Mar 15 '09 at 12:00
feedback
try {
 // 1000 lines of code handling lots of different tasks
} catch(Exception ex) {
 // nothing
}
link|improve this answer
2  
The pokemon design pattern. Gotta catch em all! – Glen Robertson May 3 '11 at 4:28
feedback

Code that was written for the compiler, rather than other programmers.

Code that was written because it's "clever", rather than just being smart.

Code that is written in such a way that you cannot easily dig into it using your toolchain.

link|improve this answer
show 3 more comments
feedback

Hundreds of lines of commented out methods and other code interspersed throughout the actual code. I once turned a C# class from a 2200 liner to 400 lines in about 5 minutes.

Clearly the offending developer had not realised he had a full version history in SourceControl should he ever need it.

link|improve this answer
3  
I've actually had arguments with coworkers about that. "But we might need that code in the future!" – Jesse Weigert Mar 15 '09 at 12:29
show 1 more comment
feedback

Excessive "wiring", where some idiot developer got so jazzed about eliminating "dependencies" that none of the classes actually refer to each other, and everything is hooked together in an enormous XML file.

Reading the code, you can't actually tell how anything works anymore, because the ordinary flow of logic is obfuscated until runtime, when all the functionality is magically woven together by some over-architected framework.

Yeah, sure, you can ALT-TAB back and forth between the code and the XML and try to remember how all the classes are wired together.

But first, you should walk down the hall and punch that jackass in the teeth.


ON EDIT:

Incidentally, I'm familiar with the DI and IoC patterns, and I'm perfectly happy to admit that they're occasionally useful. In fact, if I may be so bold as to quote Martin Fowler:

Inversion of control is a common feature of frameworks, but it's something that comes at a price. It tends to be hard to understand and leads to problems when you are trying to debug. So on the whole I prefer to avoid it unless I need it. This isn't to say it's a bad thing, just that I think it needs to justify itself over the more straightforward alternative.

http://martinfowler.com/articles/injection.html

There have been certain (rare) cases when I've happily used DI. But only under these circumstances:

  • When you actually have multiple implementations of a service, AND

  • When the selection of those services must be applied at configuration time (not at compile time or runtime)

In my experience, this combination is extremely rare. Most projects I've been involved with have exactly zero justification for the injection of any dependencies. Sometimes there's a legitimate need, and yeah, in those cases DI is a lifesaver, because there's really no other way to do it.

But I can't tell you how often I've worked on a project with hundreds of service interfaces, each of which has one class implementing that interface. And then there's a configuration file with thousands of lines of XML to connect each service interface with its implementation and to inject constructors into every single private field.

It's madness!!

link|improve this answer
show 6 more comments
feedback

Inconsistency.

You can't trust anything in inconsistent code. Even if the previous developer used conventions and techniques that make me wince in pain, if he was consistent about it I can at least learn to identify with my torturer. Inconsistent developers deny me even that faint comfort.

You can't really trust anything in consistent code either, mind you. But it's one thing to be able read code like a programmer, and another thing entirely to have to read it like a compiler or interpreter.

link|improve this answer
feedback

What infuriates you the most when maintaining others’ code?

I can't believe I'm the first person to say this, but having to maintain other peoples' code instead of writing my own is infuriating. Everything else is just salt in the wound.

/And yes, I know that I'm being unprofessional, childish, and immature. But honest.

link|improve this answer
feedback

I just got done maintaining some database code and the guy just did not understand the concept of working with sets of data. EVERYTHING was single row actions, looping through using cursors. There were no multi-row updates, just a cursors looping through updating each and every row.... That was just a recent example.

So in a nutshell, developers not understanding the type of system they are working with and writing appropriate code.

link|improve this answer
show 2 more comments
feedback
public class Programm{
     public static void main(String[] args){
     if(bla bla bla bla)
     ...
     ...  

     ...
     //few thousand line later, the record is 60k
     }
}

arg...

muuuust kiiiilll


Another thing that kills me is finding new patterns...

ever seen an Abstract Singleton anybody !!!

link|improve this answer
show 8 more comments
feedback

Layers of code for no reason. Why have a business logic layer if you never use it? Ever.

In the last 3 projects I've worked on, every function in the business logic layer simply passed data through it. None implemented any processing or "rules" at all.

Meanwhile, I have an idea to save myself a lot of typing... :D

link|improve this answer
feedback

When programming in Java or other languages that have a Boolean data type, I find annoying when people don't treat it that way, for example:

something like this

Boolean istrue;
if(bar<foo)
{
   istrue = true;
}
else
{
   istrue = false;
}

whcih could easily be replaced by:

Boolean istrue = (bar < foo);
link|improve this answer
7  
a blatant sign of noob programmer. – Haoest Oct 26 '08 at 8:27
feedback

Slope code:

if(...){
    if(...){
        if(...){
            if(...){
            }
        }
    }
}

And people who over used singletons. WHY!? I know you read a book on design patterns, but that doesn't mean you have to use every single one you find.

link|improve this answer
4  
This is also known as arrow code: codinghorror.com/blog/archives/000486.html – Cristián Romo Nov 6 '08 at 19:59
show 3 more comments
feedback

I hate when people write functions that do 2 things, like:

public void DeleteUserAndSendEmail()
link|improve this answer
5  
I agree 100%, with the caveat that the above function should still exist if the combined functionality is needed often (especially if both operations take parameters). It should be implemented as calling the two separate functions. – rmeador Dec 31 '08 at 0:10
1  
+1 for the funny function name. – Cam Jul 5 '10 at 21:41
feedback

The codebase I'm working on now was originated by someone who clearly never decided whether to use spaces or tabs for indentation - so they used both, completely inconsistently, often on the same line.

Sure, this project has just about every other anti-pattern you've ever heard of, but finding another line indented with "space-space-tab-space-tab-tab-space" is what really sets my teeth on edge.

(I finally started re-formatting every code file whenever I touched it, and I've got a chart on my office wall of which pages have been "fixed.")

link|improve this answer
1  
This usually happens to me by accident when a file is edited in different editors. Some use actual tabs, and others insert x spaces instead of tabs, where x varies. That can make things fun, as you described. – moffdub Oct 24 '08 at 23:44
show 2 more comments
feedback
  • I'm not sure why, but Hungarian really gets my goat. I just can't stand it.

  • I hate it when people don't name things well.

  • And I despise over-architecting. My last job was working on a large, years-old, conglomerate system that exemplified every bad practice I'd ever read about. It was spaghetti code in the pure sense.

    My current job is working on a system that was designed by a self-proclaimed guru who over-architected everything, rewrote major portions of the .NET Framework because he "knew better than Microsoft", and completely ignored decades of advancement in database theory.

    I am constantly longing for that old spaghetti-code system. It was at least grokable.

link|improve this answer
1  
Joels article on this is interesting to read joelonsoftware.com/articles/Wrong.html – Greg Domjan Dec 31 '08 at 0:11
feedback

Given that I work mostly in the C++/Java/Perl world:

Global variables: They are the plague! Use them as a last resort!

Goto's: fall into this category too! Mostly for their tendency to create the most dreadful spaghetti-code.

Non-descriptive variable/function names: Really! Don't abbreviate & comment it. I don't want a lookup table. That's what the name is for in the first place! The point of code is to communicate effectively with other humans. Binary is for machines.

Abbreviations in variable/function names: You know what they mean. Nobody else does. (Bonus points if they are in your native tongue, and nobody else on the team speaks it!)

Similarly named identifiers: The joy of trying to discern FooBarCharlie and FooBazCharlie throughout your code really makes my day. (Bonus points when combined with abbreviations and multiplied: ABDF-HGIK-LMNP-STVW, ABDF-HGIK-LMNQ-STVW, ABDF-HGIK-LNNP-STVW, & ABDF-HGIK-LNNQ-STVW.)

Unrolling Loops: Trust me, the compiler is better at this than you are. You are just going to introduce some really painful bugs!

Excessive Complexity: If you have 20 lines that start out "foo(...).bar(...).charlie(...).delta(...).echo(...).", then for gods sake use a reference or a macro to make the code human-readable.

Lack of discernible design: If I can't tell what you are doing, this is not going to go well. Put some UML in the comments! Document!

Multiple names for the same concept: Use xColumnWidth and yRowHeight if you have to. But don't use (x,y) for one method, (column,row) for another, and (width,height) for yet a third! (Bonus points if you reversed the order between methods, mixing (x,y) and (row,column).)

Cut & Paste coding: Really! Others have said this too and I'll say it again! Don't put the same broken chunk of code in 10 different places. Some day, I'm going to have to fix that. Or maybe just change it. Use a macro or a static function!

Shadowing variables: 'Nuff said.

Fixing compiler warnings by commenting out -Wall in the makefile: Me, you, and Mr. Bat need to have a little talk!

Lack of comments: If you are going to put some hairy piece of math into the code, document where it came from! At some point I'm going to have to fix it! (I know, I'm hitting commenting twice. But it's important! Especially when your pulling math out of a book or matlab. (Just give me a prayer of a chance here! That's all I need!)

Checking in broken code: Just because it compiles doesn't mean you are done!

Core leaks: This is going to come back to haunt us... Or, more precisely, me!

Sadly, all of these have been experienced first-hand.

link|improve this answer
feedback

Right now? Large amounts of CPP files with only 1 H file for the entire project.

link|improve this answer
show 4 more comments
feedback

Violations of abstraction.

For example, a stack is a stack. It is not an array. It is not a linked list. It is an abstract data structure that is to be accessed using the defined interface, not by directly accessing the implementation details. What bothers me is, for example, code not in the stack implementation that "knows" the stack is "really just a linked list" and accesses it as such.

link|improve this answer
show 1 more comment
feedback

When the code they give you doesn't even compile

link|improve this answer
5  
@Haoest, I would hate you too. – Simucal Jun 16 '09 at 4:14
show 1 more comment
feedback

Here's a classic: When I see a base class handling stuff for its derivatives based on a 'type' member.

link|improve this answer
feedback

Global variables.

link|improve this answer
1  
I've seen a lot of global variables named X or x ... Nightmare! – danimajo Nov 2 '08 at 12:10
show 1 more comment
feedback
1 2 3

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