vote up 28 vote down star
11

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

flag
show 3 more comments

77 Answers

1 2 3 next
vote up 72 vote down

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

link|flag
1  
I've heard this referred to as "clipboard inheritance". 8) – Carl Oct 25 '08 at 11:26
show 8 more comments
vote up 39 vote down

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|flag
show 5 more comments
vote up 32 vote down

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|flag
show 5 more comments
vote up 26 vote down

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|flag
show 9 more comments
vote up 24 vote down

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|flag
1  
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
show 7 more comments
vote up 23 vote down

when they lie in the comments

link|flag
1  
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
vote up 21 vote down

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|flag
show 6 more comments
vote up 16 vote down

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|flag
show 5 more comments
vote up 16 vote down

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|flag
show 3 more comments
vote up 16 vote down

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

link|flag
vote up 14 vote down
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|flag
show 6 more comments
vote up 13 vote down

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|flag
show 2 more comments
vote up 12 vote down

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|flag
vote up 12 vote down

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|flag
show 6 more comments
vote up 11 vote down

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|flag
vote up 11 vote down

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|flag
show 2 more comments
vote up 8 vote down

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|flag
show 4 more comments
vote up 8 vote down
try {
 // 1000 lines of code handling lots of different tasks
} catch(Exception ex) {
 // nothing
}
link|flag
vote up 7 vote down

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

link|flag
show 2 more comments
vote up 7 vote down
  • 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|flag
show 1 more comment
vote up 7 vote down

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|flag
show 1 more comment
vote up 6 vote down

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|flag
show 3 more comments
vote up 6 vote down

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

public void DeleteUserAndSendEmail()
link|flag
1  
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
vote up 6 vote down

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|flag
show 2 more comments
vote up 5 vote down

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|flag
vote up 5 vote down

When the code they give you doesn't even compile

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

Global variables.

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

The reviewer shall also need to keep in mind the old adage: To every programmer, other programmers' code is s***t ;)

  1. Lack of automated Unit Tests...
  2. Not leaveraging language features (if you're using VS.Net 2008, you better use Automatic properties, etc.)
  3. Mind numbing readability ;)

    if(x ==1) { y = 5; } else { y = 10; }

  4. Use of hungarian in C# code
link|flag
show 4 more comments
vote up 4 vote down

Code written by someone who hasn't taken the time to learn the language and any standard libraries. For example (and this is by someone I know), using arrays and array.resize to store a list of objects rather than std::vector or Generic.List. Not taking advantage of OO and type safety when using OO languages (someone else I know didn't use the class keyword anywhere in their C++ application, did use try/catch though).

Skizz

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

Any code that is way too complicated for the job at hand. To quote a colleague:

Don't take the space-shuttle to Kansas City: just take the bus.

(I am in St Louis, USA, 5 hours from KC. Replace cities as appropriate for your locale).

link|flag
show 4 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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