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

People who stick to the framework's way of doing things, even when it's not the best/easiest way of doing things. A lot of times you are trying to do things the framework didn't anticipate, so you end up doing tons of hacks just to get things to work right. When really, if you just forgot about the framework, you could have done everything much easier. This is kind of a counter point against

people who develop .NET like classic asp apps

People who just blindly follow the framework, and don't look at what the best solution is to solve their problem. In almost every instance where I've used ASP.Net, I've never used the webcontrols and viewstate tools that are provided by Microsoft.

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

What irritates me most about maintaining other's code is when they have a unified framework for certain specific code, like form output in a CGI application, and then use the standard output buffer to instead make custom output. When restyling or looking for code that breaks, this exception to the status-quo is always the trouble. And whenever the HTML markup or stylesheet changes, every exception must be checked for consistency.

link|flag
vote up 0 vote down

Poorly formatted code is definitely up there. I've been having to deal with dynamic SQL producing stored procedures and everything is collapsed and left-justified so it is REAL hard to find all the joins and relationships in a hurry.

Inconsistent code is probably my next ulcer inducer. Ok, I understand if you have too many cooks in the kitchen, you're bound to run into variations and different points of view. Fine, I get it. But when you have something like a CMS and everything is CRUD, and you already have say 10 resources within the same project, 100 resources from another project you could copy/modify, was it really necessary to engineer new code? Sure, I'd love to do things right all the time too, but when you have limited time and funding, "git 'r done" is acceptable.

All time favorite, "New tool syndrome". I forget the exact wording, but whenever a developer reads an article online, say, about Ajax and how you can generate dropdowns, now suddenly, EVERY dropdown on the site is done in Ajax... even a boolean True/False.

Or the person who never actually learned the language they are working in, and ask me how to determine a way to remove add/remove commas to make a string list proper, when the system already provides a ListAdd, ListDelete... /palmface

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

Being borderline evangelical about accessibility, semantic markup, easily readable script and well grouped style information, spaghetti code that mashes content, design and interaction together drives me up a wall. Things like DOM id's and classes that better describe what something looks like rather than what something is. Stuff that locks you into the design. I do realize this is more my issue and neurosis than anyone else's thing, but I really don't want to give up that bit of elitism.

But most recently, completely unindented markup.

link|flag
vote up 0 vote down

People creating several versions of the same file and only using one. All with completely irrelevant names.

We have a php page that tracks emails called default.php. We also have stuff.php and crap.php that do the exact same thing. I spent 2 weeks debugging the wrong one of course thinking it was the right one.

Note: the unprofessionalism of all this is due to all of this being done by interns. Me being one of them. But even I know the value of naming files appropriately.

link|flag
vote up 0 vote down

Aha-code or code you have to be clever to follow. It may look like you're incrementing a counter but in reality you're removing objects from a collection while accumlating a register or something stoopid. I'm to tired to post an exampke but you know what it's like when you hit AHA code.

Then there's the NIH (Not Invented Here) fanatic that wants to re-implement everything from the lowest level because Java regex is broken, or because we can save 4 bytes if we roll our own gzip algorithm.

Also I can't stand static references and tightly coupled logic that encourages copy/paste. When you see a method body a page or so long then you can't use the method anywhere that the stars aren't aligned. You make a change to the callee and it breaks everywhere. You try to break it into a separate project but then you realize you have to port all of it's dependencies as well even if they won't be used in your particular use case.

link|flag
vote up 0 vote down

Its got to be when the code is just obviously very inefficient, and suffers from the copy and paste syndrone, thus causing you hours of pain to maintain just one thing.

Another good example is vba, where all the code in Excel just uses Offset(x,y) so inserting columns breaks the entire "application".

link|flag
vote up 0 vote down

I've just been moved to a live WinForms project which has been going on since 2003.

  • The main form where all the action takes place is called Form1.
  • We support multiple document types. Each type of document is handled within Form1 itself using a documentType flag.
  • There is no separation of Model and View. Form1 serves for everything.
  • Cursors are being loaded/set in the OnPaint... No wait! There is no OnPaint override; they've chosen the add an event handler instead of overriding OnPaint.

All of the original programmers have left long ago. Management still thinks that a rewrite is a bad idea.

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

Something like this for the main working thread of an application that I had to write a new plugin for:

bool WorkNotDone = true;
while (WorkNotDone)
{
    try
    {
        // Load Plugins
        // Plugins do a lot of complicated things here
    }
    catch (Exception ex)
    {
        Log("An exception occured: " + ex.Message);
    }

    WorkNotDone = false;
}

Took me days to find out that my plugin was throwing an exception every once in a while, because the exception got caught and written to some logfile in some obscure directory somewhere in the project...

link|flag
vote up 0 vote down

White spacing. For some reason, code that's done in any other tabbing style then my own drives me up the friggin wall.

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

Code with no documentation, no one at the company knows who wrote the code or when, it doesn't exist in source control, and some end user is complaining about something changing between yesterday and today without saying that they are using different parts of an application where the whole thing may have been broken for a long time.

link|flag
vote up 0 vote down

Typos in variable/db field names.

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

In java, useless interfaces. I'm working on something now where someone thought, a few years back, that everything should have an interface. There are probably a good 100 or so pointless interfaces that only have 1 implementation. There was never any real need for it, someone thought it was good style.

 public interface IPointless{
   public String getName():
 }

 public class SomethingNecessary implements IPointless
 {
   public String getName(){ "I am necessary"};

   ...

 }

 public class SomethingVeryVeryFarAwayInADifferentProject {
  private IPointless foo;
   ....
   log.info("It's important that you know that "+foo.getName()... 
 }

Extra points for misuse of spring dependency injection, so all you have is a reference to something whose semantic meaning has disappeared. So anytime you want to trace you have to trace to the config, find out what they're actually using, figure out where the implementation is.

Project actually has a front end to a properties file that has a hard-coded getter for every property, and an interface to the hard-coded functions in the getter. So there's a good thousand lines of code to read properties, spread through property files, an interface and an implementation.

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

A lot of folks have complained about whitespace issues.

A simple fix, under CSH (UNIX/Linux):

alias use-emacs-to-untabify-file '\emacs --batch --eval='"'"'(progn (find-file "'"'"'\!:1'"'"'") (untabify (point-min) (point-max)) (save-buffer))'"'"

For bonus points, automate it during repository checkin.

link|flag
vote up 0 vote down

In some dank corner, I found the source for "the editor". The editor that everyone said was a great thinkg, although no-one could show me a working copy of it.

The source had a build file. The build file had a target "build webapp".

What it didn't mention was that part of the build involved generating the database tables from the turbine config, and this involved dropping the existing tables.

Oh, and the build (naturally) was configured to run against the PROD instance.

link|flag
vote up 0 vote down

I've had to do a lot of this recently, so I'll be honest.

  • Variables declared at the top of the function, uninitialized, in C-style C++ code. This hasn't been required for years and has no benefits, especially if you're not initializing them. It's redundant and pretty much asks for unused variables if the compiler warnings for that aren't turned on. Restricting the definitions to the smallest scope necessary can make odd logic flow in the function more obvious. It's a good change that was made in C99 and C++, and should replace the old method.

  • Uncommented, illogical program flow. Often I see pointless infinite loops, gotos, and longjmps all over the code that make no real sense. They all serve a purpose, but if you can't write complex program logic in a way that makes sense, you should at least comment it.

link|flag
vote up 0 vote down

1- functions that passes implementation to others functions for no reason 2- Long 1k > codes that soar your eye 3- Missing dataflow and logic 4- Code written by some1 who never had a programming language and started with html design tool 5- Code the uses includes of chunk of code from different files as opposed to functions calls 6- Highly coupled codes

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