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

prev 1 2 3
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 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 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 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 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 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 27 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 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 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 40 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 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 73 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 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 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 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 0 vote down

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

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

Your Answer

Get an OpenID
or

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