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

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

As a joke, I once recently wrote this. Please note that there were no comments originally.

import flash.utils.*;
import flash.display.*;

function printIt(event:MouseEvent):void {
   var mc:MovieClip
   var th:MovieClip =
       // This line fires a constructor which then types an object by a parent class
       // then it sets the variable mc to that object, cast as its original class
       // after adding it to the root.
	   ( mc = ( root as MovieClip ).addChild( new MovieClip() ) as MovieClip ).addChild
		   (
               // new implies that the next three lines or so will translate
               // into a Class.
			   new (
                        //Convert the string class name to an object
						getDefinitionByName(
                             // Do a string look up of this object's class name
                             getQualifiedClassName( this )
                                           // It now has to be turned into 
                                           //a constructor
										   ) as Class
                 // Treat the above as a function and cast that as 
                 // a DisplayObject
					)() as DisplayObject
             // Cast the result into a MovieClip which is stored in the th variable.
		   )as MovieClip;

   //Scales and rotates a MovieClip in the most obscure way possible.
   mc.getChildAt( 0 ).transform.matrix = new Matrix( 0, 1.07, -1.07, 0 );

   var txtFld:DisplayObject
   var txtFld2:DisplayObject
   for( var i:int = 0; i < numChildren; i++ )
   {
       // Notice the two assignments inside of the if statement?
	   if( !( txtFld  = getChildAt( i ) ).hasOwnProperty( "text" )  ||
		   !( txtFld2 = th.getChildByName( txtFld.name ) ) ||
		   !txtFld2.hasOwnProperty( "text" ) ) continue;

       //Followed by the string look-up of the property?
	   txtFld2[ "text" ] = txtFld[ "text" ];
   }
	 var printer:printEx = new printEx(mc);
   ( root as MovieClip ).removeChild( mc );
}
link|flag
vote up 0 vote down

Just seen this one on stack overflow : http://stackoverflow.com/questions/1611641/unable-to-pause-the-loop-how

link|flag
vote up 0 vote down

This isn't exactly the code, but this is the gist of it. This was in a shared library that we were forced to use at a workplace.

public class CustomException : System.Exception
{
    public CustomException()
    {
    }

    public CustomException(Exception exception): base(message)
    {
        try
        {
            //log something
        }
        catch
        {
            throw new CustomException(this);
        }
    }
}
link|flag
vote up 1 vote down

someVar = (1000d / (((value > 1000) ? 1000d : value) < 1d) ? 1d : value)

as a property setter. Looks fine aside from the terseness right? Look at it a while longer...

And i was wondering why it wasn't behaving right!

link|flag
vote up 1 vote down

I remember my very early days, playing with VB. I wrote this bit that still makes me smile!

On Error Goto Hell

//my code

Hell:

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

Try programming a game before you know what variables are.

I succeeded.

I was using VB.net and basically what I ended up doing was creating little textboxes all over the place, and storing numbers in them. Variables baffled me for at least a few minutes after I discovered them: "but they're invisible!!"


After discovering variables, but not arrays and then being told a handful rules of thumb (global variables are evil, break your code up into functions), I wound up with functions that took about ten or more parameters just so that I could get all the data I needed into them, and I had dozens and dozens of variables named like weapon1name, weapon1dmg ... this is what happens when you get ahead of the class and your teacher doesn't teach you enough :\ Teach me one little concept and I'll take it to the clouds.

link|flag
vote up 1 vote down

In my sordid past, I once wrote a game in which you battled zombies in a cemetery. Zombies had states like this:

#define ZOMBIE_STATE_ALIVE 0
#define ZOMBIE_STATE_SPAWNING 1

And so forth. The switch/case state handling was certainly bad enough, but the worst part is that when a new enemy type was added, the following constant appeared:

#define ZOMBIE_STATE_ZOMBIE_IS_ACTUALLY_A_HAT 8

It is a good thing that we tend to learn more from our failures than from our successes, but I still can't shake the feeling that I will never quite repay my debt to technology. On the plus side, the code/game saw no public release.

link|flag
vote up 2 vote down

It's a tie between

if (char < '0' && char > '9') doStuff();

and

if (char >= '0' || char <= '9') doStuff();

The first was never true and the second was never false. Gee, I wonder why?

link|flag
show 2 more comments
vote up 1 vote down
if(file_exists($file4)) { incFile($fName, $file4); } 
    elseif (($fType2 = $gf->attributes()->type) != null)
    {if ($fType2 == 'jquery') {if(file_exists($incFname ="$locFolder/jquery.$scanArea.$fName"))
     {incFile('js', $incFname);}}}

All for a simple jquery program. Oh, and the navigation ran off a file-finding snippet in the html. About half a year ago I rewrote it in an OOP style with XML config, not flat file discovery (on runtime), and it's happily running about four websites, including my own.

Oh, and when debugging:

if (1==1){//$logged_in==1){
    $user = do_something()
    echo $logged_in
    return $user
}

PHP file scanning (particularly with version 4), isn't that fun.

link|flag
vote up 2 vote down

Once I wrote the following:

char *buf;
assert(buf = new char[length]);
buf[0] = ...

This was crashing with a segfault at that last line. In release mode. Go to debug mode, everything works. Back to release mode, it crashes. The worst kind of error you can have.

Took me a while to realize that the assert (and everything in it) was being removed in release mode. Lesson: never write error-checking code that at the same time has side-effects.

link|flag
vote up 0 vote down

parootNodeiring

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

When I first started programming in Visual Basic, I used to create lots of invisible Label controls just to store data in their Tag property. That is, until I discovered that I could declare properties and fields in the modules themselves...

link|flag
vote up 3 vote down

What I thought that was a very smart pattern turned out to be more difficult that I expected to maintain and understand...

It was a list of functions in Python which output could be another function to do further processing or a false value if it couldn't handle the input.

Something like this:

def foo(x):
  if testfoo(x):
    return lambda y: morefoo(x,y)

def bar(x):
  if testbar(x):
    return lambda y: morebar(x,y)

def etc(x):
  if testetc(x):
    return lambda y: moreetc(x,y)

list_of_funcs = [foo, bar, etc]

def some(l):
  for i in l:
    if i:
      return i

f = None
for i in input:
  if f:
    f(i)
    f = None
  else:
    f = some(g(i) for g in list_of_funcs)

Smart overflow = dumbass.

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

A few weeks ago I found something like:

string number = 1.ToString();

Of course when I saw it again I instantly shocked, checked out, fixed, checked in... but yeah, it sucked.

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

I worked on table ( not created by me...) were you have code1, code2..., code7.

For each codex, you have amountx.

Holes weren't permitted.

If you have 2 codes, they must be into code1 and code2.

You can imagine what happens when you delete a set of data. You can imagine also what happens when you need to to do calculations on the amounts...

Instead of writing a lot of crapy code, I should have "fight" against the analyst to create a better data design.

Too late now...

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

It works, but some of the ugliest:

using perl, parse HTML files that contain table definitions (exported from sqldeveloper) and create VB class definitions, including the SQL to select, insert and update.

link|flag
vote up 2 vote down

A few weeks ago I found an old PHP script with some code that did the following:

  • select every row from a database table (~300 rows)
  • loop through every row and store only a couple of the fields from each row in a big multidimensional array
  • loop through the array and do some processing on the data (I think it was converting something to uppercase)
  • use one of the PHP sort functions to sort by one of the fields
  • loop through the new array and display just the first 20 results

Obviously a bit of overkill that should have just been a proper database query selecting specific fields, ordering and limiting, with one loop displaying the output (or maybe two loops if you're using an MVC variant).

link|flag
vote up 2 vote down

Not exactly bad code I wrote, but I recently copy-pasted a set of about 10 lines of code (not written by me) to a dozen other places in the code. (I only did it because that was already done everywhere in the code by the previous coder and I was too lazy to sort it out at the time.)

Apart from the fact the lines should have been in their own function (they are now!) the most stupid thing was that amongst these 10 lines there were 2-3 lines of commented-out code, and at least 1 line declaring an unused variable! Oh, and the variables all has "2" at the end (e.g. lSqlQuery2).

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

Not exactly the worst code I've written but definitely a mistake I learned from.

So, when I was a child, at age 9 or 10, I wrote the "Tron" game in Basic. You know, the famous lightcycles scene from the film. I did, as surely many others have, copy the idea and make the game. I wrote the whole thing in one single afternoon, and then I typed "run". That was my methodology back then: write the whole program and type run. No unit testing or scrum meetings or so.

Anyway, the program didn't work. At all. It was not a minor bug, there was just something very wrong that prevented the game to run. I reread the code again, checked every line, but could not find what the mistake was.

A couple of years later, I decided to try it again. I had lost the original source. I could find the first printed page, but everything else was lost. So I rewrote it from scratch. Not from my memory but starting the design again. When it was finished, I typed "run". And again, it did not work. Crash. I could not believe it. What was wrong? And how come it was failing exactly the same way the other time did?

This second time, fortunately, I could find the bug through some primitive debugging. I was storing the number of players, that could only be 1 (single player against the computer) or 2 (two players sharing keyboard) in a variable called "j". And, obviously, "j" was also used everywhere in nested loops, overwriting itself. The program crashed somewhere when j as in "number of players" was more than 2.

The amazing thing is that I had commited the same mistake twice.

The lesson I learned was to name my variables more carefully in the future, to prevent duplication.

(Note: "j" is the first letter of "jugadores", which means "players" in spanish. Thus the variable's name)

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

Several years ago I had to create a way to order callee information in a database according to 15 custom fields and 5 permanent fields. Custom fields could be of any basic type (integer, string, date, bit).

Instead of building a query generator in the application, I decided to build a HUGE function in SQL and, obviously, the guys at my company were far from happy when I left for another job and they had to change / debug it.

Several of them still do not talk to me, even though it has been 7 years since this happened.

link|flag
vote up 2 vote down

It was some sort of searching or sorting code involving a large array. This was a long time ago and I don't remember the details. It was after I had a math degree and before I had a CS degree. Anyway, I remember that I implemented it in a horribly inefficient way. A year or two later, I was a CS major and taking an algorithms class. I then realized what my mistake was (I didn't even know it was a mistake at the time and there was a more efficient way of doing it).

That was when I realized the importance of taking at least an introductory data structures and algorithms course if you want to be a programmer. Before that I had been a math snob and thought studying math would make you a better programmer than studying CS would. I still think studying math will make you a better programmer, but it's not sufficient in itself.

link|flag
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 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
1  
Wow! This function inadvertently solves the meaning of life. – Damien Feb 9 at 10:43
2  
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 1 vote down

The worst code I have written was any code that seemed to fix the problem without my full understanding of why. I believe that Dave Thomas and Andy Hunt call this "Programming by Coincidence". My sincere apologies to anyone who has had to work with those fixes of mine, because they probably broke later.

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