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

Code which is lacking comments of complex algorithms/methods, poorly formatted or has bad variable names.

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

Going overboard with "normalization" so that the actual problem domain is hidden behind cryptic codes.

For example:

lblStateProvince.Text = myObject.StateProvince; // Good
lblStateProvince.Text = Utility.LookupCode(myObject.StateProvinceCode); // Bad
link|flag
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 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 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 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 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 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 1 vote down

Code where someone undisciplined decided that they had to do things their way (usually because it is the ONLY way according to them) instead of sticking with the convention that the code already had going. Then you have to sift through all the different styles.

link|flag
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 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 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 0 vote down

Kind of nit-picky, but when everything in an OO system is get and set with no comments, I end up needing to bug a co-worker to find out what the heck is going on, which I think is wasteful.

I also hate useless Middle Men that do nothing except forward messages to another class. The only reason these classes exist is because some architect decided it was required. Gah.

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

Too many classes that don't do anything. On one project that I inherited, I found a pair of classes named "And.cs" and "Or.cs". The And class added " AND " to the end of a string, and the Or class added " OR ". They were used for building dynamic SQL.

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

Any code that makes me guess, which means that I'm happy with pretty much anything I'm allowed to refactor or rewrite; and I'm fairly unhappy when there are pieces I can't rewrite.

I can only really understand a group of code by getting it all into my head. Code that's really poorly factored is very hard to get your head around. As you refactor and eliminate 2/3 to 9/10 of the code, it all becomes much more understandable--and the process is fun.

When I'm not allowed to refactor it, it can be difficult to impossible for me to work on it because I can't stand guessing. I don't just poke a variable and retest to see what happens, then if it happens to pass the test call it "Fixed" (which is what it seems like most people do).

It's not that I have anything against other people just kinda guessing and poking stuff in and seeing how it reacts, I'm just a bad guesser.

link|flag
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 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 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 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 2 vote down

Infuriate - no. Left asking why - yes.

  1. Pointers to pointers to pointers to pointers ****someVariable (yes I've worked on this code).
  2. Long methods with names like i and j for variables used everywhere not just for iteration.
  3. Long methods with variables named after people (yep rewrote that one too).
  4. Methods named after people (You haven't lived until you've seen a stack trace that says Error in Jeff).
  5. Long methods with variables that change what they mean over time. For example i is a counter, now it's the number of bytes in a file, now it's the screen width, etc...

Those were tough code reads, but they make for a good story.

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

I have inherited programs in COBOl that were completely littered with GOTO statements and variable names that started with A and when the alphabet ran out they started over with AA, AB, AC etc...

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

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

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