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

vote up 4 vote down

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

link|flag
vote up 4 vote down

CoWorkers who still use .net as if it was vb6. IE. just about all code in the form load and behind button_click events and hardly using classes :(.

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

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

Finding really neat code that I didn't think of first!

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

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

1) Code that is not written to be self-explanatory (read this http://www.codinghorror.com/blog/archives/001150.html)

2) Massive amount of code in a single file, class or method

3) No coding standard. A bad standard is better than no standard.

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

The thing I hate the most is when the delivered code does not work as promised - when it should implement a certain functionality but only the most basic paths of execution are covered.

This infuriates me because I know that what has been implemented is generally the tip of the iceberg and I know I have to implement the rest of it (and people who are aoutside of the project will think I'm just loittering with code instead of delivering real functionality).

link|flag
vote up 2 vote down

Having to correct a bug in a "shared" component.

And by "shared", I mean "shared" as in "Hey, everyone touch this component and add his/her prefered feature to it."

It has an orgy-like smell that makes me gag everytime I have to delve into a less than stellar code which grew by random iteration and patching without a clear vision of what it was supposed to do ("specifications are not mandatory, you know").

You know, the kind of code where there are more ifs and switchs than variables and functions. The kind of code proving that a code quality of a component is of the level of the less skilled developer that once contributed to it. The kind of code that makes your eyes cry tears of blood, and wonder if you should not become Serial Killer instead of Developer...

Because, when you "touch" this kind of code, your greatest wish is to have it work the same way as before but for your little corner case (thus, you add a bunch of ifs atop a mountain of ifs).

Because your worst nightmare is to have a bug assigned to you because you were the last one to modify the code. Or even to look at the source. Or even, to use the component (This is the moment you lose your innocence).

Having to correct a bug in an unmaintained "Core Component"

In "our" team, we have a bunch of in-house developments. Like Joel Spolsky said, "if a module is the core of your business, then do it yourself". Apparently, everything in my team is the core of the business.

To make the taste more spicy, until recently, everything was developed using Win32 API (again, we can't trust MFC or whatever amateurish external library like QT).

So far so good...

But mix it with the "shared" philosophy mentioned above, and the fact that the author of the component did quit years ago and that no one is now (or feels now) responsible of the component.

you know, the naive faith of some non-technical managers about the fact developers are interchangeable monkeys...?

Welcome to the zoo... (Real life example)

This is a real-life example. It happened this week, in fact (truth to be told, it is a real core component, which adds its own perversion to the subject).

In the current case, one year ago, I mentioned the fact we would lose less time by using already existing libraries. The counter argument used was that we did not control the code of external libraries, nor the speed of their bugs correction, and thus, it was better to have our own code, as we could always correct any bug when needed.

Some days after (destiny has its own sense of irony), I discovered one of the core components had such a bug. This bug was serious, but it would only express itself in some corner case situation. They tried to assign its correction to me, but as I was overbooked (Lucky me!), no way I would spend days or weeks in 20,000 lines of old C code using obscure Win32 API functions you don't want to know they exist.

One year after, and guess what, the bug was still there. So much for the "Hey, we develop in-house because we can correct it fast."

And guess what? Someone outside the team saw it.

And guess what? They assigned it to me.

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

Similar to some of the above posts, not understanding the technology used is a real problem. I had to work on one outsourced system that was where the code could've been straight C, but was proudly claimed to be C++ by nothing more that changing the file extension!

Trying to get these clowns to use the STL was also quite an eye opener, their idea of using an STL map was to copy the STL map header file, then go and hack their copy of the header file to contain the data types they wanted!

link|flag
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 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 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 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 1 vote down
  1. Implicit Code !!!! - The one design flaw or mistake that most programmers make is to have implicit "you just have to know code". a programmers assumptions are baked into the code. This is why pairing, code reviews, etc are needed . .someone programming alone can do lots of damage . . .

  2. Classes with multiple responsibilities - The second is classes that have multiple responsibilities. People who code without unit tests often evolve into multiple responsibility classes that are coupled and hard to maintain.

link|flag
vote up 1 vote down

I could write a book on this topic, but what about inconsistent function naming?, e.g. having all variants of :

functionName

FunctionName

function_name

Function_Name

littered throughout a single file. Throw in the above method for naming files while you're at it.

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

Reusing the same variable for different, unrelated purposes inside the same massive method as if there were a shortage of the things.

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

Putting tabs after the equals sign when assigning values to variables so that everything lines up.

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

From my current project: Where the (C++) coder gets embarrassed about the huge class he's writing and decides to 'refactor' by cutting and pasting the member functions into 13 different source files. Corollary: When the same coder, confident now, applies the same technique to the other bloated classes in the system, so that one source file may contain fragments of three different classes.

link|flag
vote up 1 vote down

Finding that code doesn't work at all or as expected!

link|flag
vote up 1 vote down
  1. No Comments
  2. No Encapsulation - everything public
  3. Misuse of OOP - big-ass switch in base class to make decisions that belong to subclasses
link|flag
vote up 1 vote down

Unnecessary abstraction. I think some people feel the need to apply every OO design pattern to every problem and encapsulate everything, regardless of how unlikely it is to change. Abstraction always comes at the price of making the implementation more difficult to understand, if you need to reason about its performance, fix a bug in it, etc.

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

1.) Stupid variable names, like i or x,y,z

2.) Untested code that breaks the build

3.) Classes derived from derived from derived from derived from ... finally and abstract class

4.) GOTO

5.) Try ... Catch used for logic

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

when a function has 20+ parameters.

and better yet, when those parameters start to get numbers on the end of them.

cost1, cost2, netcost1, netcost2, etc.....

link|flag
vote up 1 vote down

Along with the other great comments ('clever code', over complicating simple tasks, etc), it 'infuriates' me when the other C# developers (with 7+ years experience over me) don't understand my confusion trying to understand their code structure. For example, single files stored in a deep hierarchical folder structure C:\VisualStudio\WebSites\OurSite\Common\Products\Data\DataSources\Db\SQLServer\SqlServerDataSource.cs

Nearly every file is configured that way (and each project has an identical Data\DataSources\DB\SqlServer folder) with similar 5+ level namespace hierarchy (which doesn't match the folder structure)

Why not simply \AssemblyProject\MyClassFile.cs? Files easy to find, easy to maintain..why so complicated?

When I get to that level of experience (I have over 13 years of Delphi development experience, other developers are from different backgrounds, come from different companies and all have the same mindset)..will I start 'thinking' like that? Will I loose the K.I.S.S. way of doing things? I hope not.

link|flag
vote up 1 vote down

I totally feel the misuse of technology. All stemming from a lack of caring and failure to improve. When a brain becomes stagnant, and I can tell by reading your code, it is a sad day.

link|flag
vote up 1 vote down

Business Logic and Data Access code mixed in with the GUI code (in asp pages, or even worse aspx.cs files). That really irritates me.

And, to agree with an earlier answer, neat stuff I didn't think of first :)

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

Your Answer

Get an OpenID
or

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