vote up 16 vote down star
6

Step into the confessional. Now's your time to come clean.

  • What's the worst code you personally have ever written?
  • Why was it so bad?
  • What did you learn from it?

Don't tell us about code you inherited or from some co-worker. This is about your personal growth as a programmer and as a person.

flag
4  
I cannot tell you all how excited and ashamed I am to have the two highest voted entries for "worst code ever written". Do I get a special badge? – Toby Hede Sep 28 '08 at 3:36

65 Answers

1 2 3 next
vote up 37 vote down check

I don't have the specific code, because this was a LONG LONG time ago but my very first programming job out of university was using ColdFusion and SQL Server. I didn't really know what I was doing, as I had never really used a "real" database before. So I didn't know some pretty rudimentary things. Like JOINS.

I made this rather large and rather complex web application for a rather large and rather complex organisation and all the way through the codebase was this startlingly awesome pattern:

 - SELECT * FROM table
   - loop through each record
     - SELECT * FROM another_table WHERE key = table.key
       - loop through each record
         - SELECT * FROM yet_another_table WHERE key = another_table.key 
           - loop through each record
             - probably some complex IF-THEN-ELSE-ELSEIF-UNLESS-ARGH condition
               - etc
                 - etc

Any change to the database would cascade through loops and conditions nested in ever-increasing levels of insanity and ignorance.

I still remember the awe I felt at being to simple write a single query that joined all the data together.

link|flag
7  
You worked for Boeing didnt you? – radioactive21 Sep 25 '08 at 5:19
5  
I once had a boss that was convinced that this method was: 1) easier to maintain, and 2) faster. :| – agentj0n Sep 27 '08 at 15:10
2  
Oh this brings me back ... When your'e totaly self taught like me, things like this can seem quite alright when you stumble on SQL and databases for the first time. – Charlie boy Oct 14 at 11:50
show 1 more comment
vote up 38 vote down

1969, Lancaster PA, summer job: building an accounts payable application to run on an NCR-500. I had no idea how negative numbers were represented on this machine, so in my first iteration, I guessed "nines complement". Reading a few cards keypunched with credits quickly revealed my guess to be incorrect; they were all off by a penny. "No problem", said the company's comptroller, who knew nothing about computers, "we'll just tell the keypunch operators to add a penny to each credit they enter". To avoid confusing the keypunch operators, every other application I wrote that summer -- accounts receivable, general ledger, payroll -- used the erroneous nines complement representation for negative numbers.

I went back to visit many years later, and they were still adding a penny when keypunching a credit -- but no one remembered why.

link|flag
7  
And you didn't tell them, did you? – jmucchiello Feb 16 at 18:13
1  
Most awesome story ever told! – Xetius Oct 6 at 11:48
vote up 26 vote down

Oh, and suffering a severe lack of sleep, the other day I stared at:

if ($value = $some_value) {
  // do stuff
}

For what must have been at least 30 minutes.

link|flag
2  
I don't get it, do you mean your variable names were actually $value and $some_value? – DisgruntledGoat Nov 22 '08 at 17:38
3  
@DisgruntledGoat: not sure if you are joking or not :P, but the error is because I am using assignment "=" instead of comparison "==". In PHP, = is always true, and also assigns $some_value to $value. – Toby Hede Nov 25 '08 at 9:27
1  
And this is why we need to specify language... VB uses = instead of == – d03boy Feb 16 at 17:53
show 6 more comments
vote up 19 vote down

I once inherited an stored procedure that is 40 thousand lines long.

That is a single stored procedure.

The file is about 1.5 MB.

I'm still looking for the person who wrote that to get his confession.


Ok, now for my confession.

About a decade ago, I wrote a very buggy function called InitFirstChar (I don't archive copies of source code from previous work/companies so I can't show it here). This is part of a barcode scanning library. That piece of code is so complicated and buggy that whenever we got a problem - that is immediately the very first suspect.

That function got so famous that even on our other projects - projects that is entirely unrelated to that barcode scanning library - the team still mentions InitFirstChar whenever were looking for a defect.

link|flag
vote up 16 vote down

It took me forever to figure out why this would always run even if the condition was false:

if (some_bool);
{
    //do stuff
}

Damn C-like languages and their semicolon shenanigans. :-)

link|flag
8  
Had you not mentioned the semi-colon... – Mark Oct 13 at 3:18
2  
I spent an hour or so trying to fix this exact problem in PHP. I feel so much better that i'm not the only one. – Neil Aitken Oct 14 at 9:39
vote up 15 vote down
if(password='password')
{
   return true;
}else{
   return false; 
}

I was simply stubbing out an authentication function for later development... but... :-)

link|flag
6  
How did you name your authentication function? anyPasswordWillDo? – presario Aug 13 at 9:21
show 1 more comment
vote up 13 vote down

For a university project I needed to get to a different location in code fast from a few places, but I also needed to handle some edge cases based on how I got there, and make sure everything was set to be in that area. Rather than do it in any sane way I ended up with something like this at the destination area:

// May need to cleanup here
if (false) {
    label:
    // Some code
}

And then I had a goto elsewhere to get to that label. I don't recommend that method >)

link|flag
2  
madness. Trust me, when someone sees an if(false) they don't think much about deleting that chunk of code... – tloach Sep 25 '08 at 18:07
show 2 more comments
vote up 12 vote down

code circa 1985

This is probably not the absolutely worst code I've ever written. There are lots of things about this code that make it bad. I hope I've learned something since then.

link|flag
5  
@MiffTheFox: Yes, because it wouldn't have been green and black like we used to do it in the good ole days! – Lucas McCoy Oct 13 at 3:16
show 5 more comments
vote up 12 vote down

I think this has to be a serious contender for the worst code I've put together. Names of objects have been changed to protect the innocent.

Class myClass = someoneElsesObject.getClass();
Field privateDoNotTouchField = myClass.getDeclaredField("doNotTouch");
privateDoNotTouchField.setAccessible(true);
Object myValue = privateDoNotTouchField.get(someoneElsesObject);
privateDoNotTouchField.setAccessible(false);
MyRealObject mro = (MyRealObject)myValue;

Breaks encapsulation to access a private field? Check. Depends on the internal implementation of a library I don't control? Check. (someoneElsesObject really was someone else's) Shatters like glass if someone later puts in a SecurityManager? Check. Done for convenience alone? Check.

Edit: I should also mention that this cut right through a layer of indirection. SomeoneElsesObject was actually an interface: the doNotTouch field was specific to the class that appeared at runtime in my debugger.

link|flag
1  
Been there, done that. Fixing vendor bugs is annoying sometimes. At least I control when we upgrade. – Joshua Feb 27 at 20:21
show 2 more comments
vote up 11 vote down

Worst code you could ever find is usually Research Code.
Pressing deadlines, general lack of supervision and the notion that no one is going to see or use this except me produced some real wonders.

link|flag
3  
+1000. I worked at a research company and saw some pretty monstrous code. – ThisSuitIsBlackNot Oct 13 at 1:42
vote up 11 vote down

Not quite sure how or why, but I ended up writing:

public string GetUsername (string userName)
{
	User user = DbLookup.GetUser(userName);
	return user.Username;
}

Really have no idea why. Not sure what I was smoking...

link|flag
1  
Looks pretty innocent till you read it :) It's like writing code when you drunk, and trying to find out the next day what you did. – leppie Oct 10 '08 at 16:31
2  
Wow! This function inadvertently solves the meaning of life. – Damien Feb 9 at 10:43
3  
Totaly valid code. If the username provided does not exists in the database it will return nothing, else it will return the name. Only that it should be renamed to CheckIfUserExistsByUsername(string userName) :-) – Stefan Feb 9 at 11:29
show 2 more comments
vote up 10 vote down
/////////////////////////////////////////////////////
//      WARNING!  PLACEHOLDER FUNCTION!
// This function to sort the data is hugely inefficent,
// Use only for initial testing on small data sets
// MUST BE REPLACED BEFORE FULL DATA SET IS USED!

A poorly coded bubble sort on a custom data type works great for testing during the initial proof-of-concept phase to show the core design works, but when a pointy haired boss decides against your advice the app is ready to show off with prodution data and the number of elements increases from a few dozen to a few million ... not so good.

This was more a lesson in dealing with management than in coding, since I knew all along exactly what would happen if the code didn't get replaced. (Eventually it was rewritten using quicksort, which reduced the sort time from several days to a few minutes.)

link|flag
1  
Mitch, BubbleSort is faster than quick sort in an edge case, and that case is the list is almost ordered, and the only elements that must be swapped are adjacent, basically the bubble sort loop needs to run just twice. Every sort algorithm has his strengths and weaknesses. – Pop Catalin Sep 25 '08 at 7:23
1  
ehem.. Why are you not using std::sort (C++) or in Java and C#, the .Sort method? – Aaron Sep 26 '08 at 20:38
show 5 more comments
vote up 10 vote down

I once wrote:

if (strSomething != "somevalue" || strSomething != "othervalue") {
  //do something (this allways happens)
} else {
  //do something else (this never happens)
}

.. until I realized that the statement was allways true.

link|flag
1  
I've done that too! Took me ages to figure it out. – DisgruntledGoat Nov 22 '08 at 17:28
1  
Enter: Augustus de Morgan ;) – AdrianoKF Feb 9 at 9:59
show 1 more comment
vote up 9 vote down

I wrote some research code for a massively parallel application that ran for about 2 months, after which I realized that a single if statement was wrong :(

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

When I was a kid, I LOVED a TI99/4a game "Tunnels of Doom". I really wanted to write a game like that. I didn't know anything about even the most simple of data structures (arrays, etc), so I did not know how to make a maze. I remember considering hard-coding each cell in a maze (ie: if (cell=1520) then allowup = 1 etc) I ended up writing a game called "The Endless Corridor", which was, you guessed it... an infinitely long hallway. Your character would take a step east, and then fight a monster. Take another step, fight another monster.

There were no graphics calls, but you could redefine ASCII characters using a 8x8 (or something) pixel map. I had great fun in drawing monsters using graph paper and translating them into hex. Players and monsters were 2x2 character blocks. I had stacks of graphing pads full of this stuff. In defense, this all took place around age 10.

A couple years later, I wrote a game called "Castle Zadrexiak" (something like that) which was inspired by Wizardry. (Fake-3D dungeon crawler where moving was either forward, back, or a 90deg turn left or right) It at least was 2D array based, but the line drawing code was horrible. The view was defined by which walls needed to be drawn. Variables representing which wall was to be drawn were "a" for the wall to the left, "b" for a wall in front of you, and "c" for a wall to the right. If there was nothing blocking your view to the left, then the walls in that area were prefixed with "a", so "ab" would be something like a front facing wall in the square to your left. This went sometimes 3 map squares deep, so variables ended up "aabc", "abcca", etc. There were several hundred lines of code checking map square contents and deciding which walls to draw. I totally lost any ability to debug it about 1 day after finishing it.

Oh yeah, the monster balance was all off... and after about 10 minutes you'd almost always get your butt kicked by a vampire or something.

I love these memories of early programming, but the code was absolutely awful. It's too bad I've lost the code from those times.

Each time something like this happened, I knew I had to learn something. These problems absolutely drove my progress as a programmer. Back then, everyone around me was totally nontechnical. There was nobody to help me. There were no books, really. (Just the reference manuals that came with GWBasic, etc) It really taught self reliance and problem solving.

I remember the need to figure out how to save player stats so you didn't start from scratch every time being a particularly hard one at the time. I think that was about the only time I ran to my parents to explain and show off a solved programming problem... which considering they could barely turn one on had to be really hilarious. "That's nice, dear." "... but with RECORD syntax my variables will come back!" ... "That's nice, dear."

link|flag
vote up 9 vote down

Unnecessary code = bad code.

My worst code = My most unnecessary code.

It was many years ago. I didn't know regular expressions.

I wrote about 30,000 lines of sophisticated parsing code. It was robust code... but a half dozen regexes would have done the trick, and been a thousand times easier to maintain.

Regexes can do almost anything. Learn them.

link|flag
2  
Regular expressions: now you have two problems; 30,000 lines worth of parsing code: now you have 30,001 problems. ;p – MiffTheFox Oct 13 at 2:26
show 1 more comment
vote up 9 vote down

A class that I wrote had a method named GeneratePolySplitCommandsForSphereTrisectingSharedEdgeOfTwoTrianglesOrOneTriangleAndOneQuadrilateral.

link|flag
2  
Obviously, you should have shortened it to GPSCFSTSEOTTOOTAOQ()...so much more intuitive... – Drew Hall Oct 6 at 12:10
vote up 7 vote down

I once made an on-screen keyboard that checked if the user was pressing a key like this:

-- A
if stylusInBox( 54, 101, 68, 115 ) then
    insertCharacter( "A", 54, 101 )
end

-- B
if stylusInBox( 121, 116, 135, 130 ) then
    insertCharacter( "B", 121, 116 )
end

-- C
if stylusInBox( 91, 116, 105, 130 ) then
    insertCharacter( "C", 91, 116 )
end

And the same repetitive code for every letter and number.

Also, this was pretty bad:

// Even though the user id is passed to the function, only call this with the user currently logged in.
function update_users_online($user) {
link|flag
vote up 7 vote down

I once created a singleton object that permeated the entire code base. A new requirement came in that required slightly different forms of processing (which will be done by that singleton object!) depending on the source of the input. To address that requirement I marked the singleton with a [ThreadStatic] attribute and had the various sources running off separate threads, so that each thread would have its own singleton reference (which knew how to process the input differently)!

It's the not-so-single singleton! :( mea culpa...

link|flag
show 3 more comments
vote up 7 vote down

Every Swing Control I've ever written has been an abomination stuffed with FlowLayouts nested in BoxLayouts with margins that were determined by trial and error.

I eventually gave up on Swing and accepted that I shouldn't code GUIs

link|flag
1  
I feel that pain ... Swing always makes you realise that HTML, CSS and JavaScript, for all their flaws, are actually an incredible good way of describing an interface. – Toby Hede Sep 28 '08 at 3:35
1  
Down with SWING! – Joshua Feb 27 at 20:22
vote up 7 vote down

On my first programming job, I spent a whole day to write a function to add a day to a given date. Taking into account leap-years etc.

The language back then was Progress 4GL, that understands a syntax like:

nextDate = oldDate + 1
link|flag
show 2 more comments
vote up 5 vote down
 string @string = @"new @string()".ToString();
 @string = @string == @"string" ? @string : @"Hello World!";

Why was it so bad: Obfuscated, redundant… and useless.
(It made for a nice background though.)

link|flag
vote up 5 vote down

Many moons ago I was doing Excel macro programming in VBA. I didn't know anything about creating functions for repetitive code, or just generally "being efficient." So I was copying blocks of code over and over, until I finally hit the limit of the number of lines allowed in a VBA module.

I have wished many times that I could spend one week at that position and rewrite all of my old macros. I hope my name isn't in the code anywhere... :-)

link|flag
vote up 5 vote down

I first learned about OOP when I was working on a registration form for a website in PHP. The form was pretty elaborate, several pages total, probably a thousand LOC. I contained all the code in a RegistrationForm class, and I was proud of it.

Then changes came. The client wanted both a registration form and an update form. Both shared so much code that I decided to copy my Registration class, make a few changes, and call it an UpdateForm class. I thought I was being so smart.

Then more changes had to be made to both forms.

More changes.

And more.

Lesson learned: Code duplication is the devil.

link|flag
vote up 4 vote down

I had a variable named "zomghack" in my last project. It's too painful to talk about the nested conditionals that used it...

link|flag
vote up 4 vote down

Unfortunately, this was so long ago I no longer have the code. However, there is a particular instance that stands out in a rather spectacular fashion: It was an Win32 App I wrote using MFC in C++. In summary: there was a lot of incredibly complex Windows GDI code. When the application was ran it didn't merely crash, it killed the display driver (as observed by the cool unintentional visual effects and the frozen mouse cursor). At least I can have some measure of pride in writing an application that brings down an entire 32-bit Operating System in a matter of milliseconds without bothering with the dull "Blue Screen of Death".

link|flag
vote up 4 vote down

I once created an XSLT (ok, this alone should be enough for a dozen upvotes!) that generated shell script that invoked another XSLT N times with different parameters. I was working around XSLT 1.0's limitation of "1 output file per transformation".

link|flag
vote up 4 vote down

Some VB6 code that I've inherited:

If some_condition Then
    send_email()
else
    'An error occurred!
End If

I love it when comments substitute for proper error handling.

link|flag
1  
I call shenanigans (as in thedailywtf.com/Articles/… ;) ). – MiffTheFox Oct 13 at 2:33
vote up 3 vote down

Don't know about "worst" but this (well, similar) was in production code that came up in a code review :) The if was supposed to check for some special condition to avoid bugs.. hmm..

if (someVariable == someVariable) {
    // do something
}
link|flag
show 3 more comments
vote up 3 vote down

Not entirely compliant with the request, as I didn't initally create it and I didn't do it willingly, but I did contribute to it:

At my first Real Programming Job, we had a client who wanted their existing COBOL app ported to Visual Basic. Not a VBish rewrite, but a direct port, preserving the appearance and the behaviour of the original.

Imagine a window filled with two-hundred-and-some text entry boxes, none of which do anything at all except let you type into them, except for the last one at the end of the page, which has an OnExit handler that's three miles long and validates/processes all the data from the entire screen...

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.