vote up 16 vote down star
5

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

I get remined of a quote: Smart programmers create unmaintainable code.

I've had the first hand experience of this, when a ORM written in C ( back in 1997 ), which used elegant #define tricks, was replaced by the C-pre-processor output, by my successor.

Although it was one of the most beautiful code, the lack of documentation made it one of the worst code I'd written.

link|flag
show 1 more comment
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 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 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 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 12 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 1 vote down
<?php
$iShower = $_GET['clean'];
if ($iShower) {
     echo getdate();
}
?>
link|flag
show 3 more comments
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 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 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 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
vote up 1 vote down

I dimly recall a Crystal Report containing a SQL statement sooooo large that it had to be edited in a text editor and then have all unneeded whitespace stripped so that it would fit within the limits of the Crystal text area (shudder)

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

I wrote some INTERCAL once.

link|flag
vote up 16 vote down
if(password='password')
{
   return true;
}else{
   return false; 
}

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

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

12 years ago, before I knew anything about databases or SQL, I would write the most horrible iterative VBA code to work on data in MS Access. Typically, I'd SELECT the entire table into a recordset and loop through the whole thing, operate on the data via the recordset methods, one row at a time, and batch-update the entire thing at the end. Of course, all of my business logic went right in the loop.

A "SQL in 10 Minutes" book, or just someone to ask questions of, could have saved me sooo much trouble. When I finally learned about UPDATE, INSERT, JOINs and all the rest, it was like discovering fire.

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

In a language from which COBOL was generated we had to write things like:

if 1 <> 1 then
   ... read database tables to memory
end if

because this way it had looked like if the DB data is in memory, so we were able to use the table and field names. I hated it.

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

Written not a few weeks ago, trying to tame an unruly and awful old schema into something that makes a bit more sense. This is just a part of the SELECT clause:

	ISNULL(CONVERT(varchar(50),CASE
		WHEN HouseName is not null or HouseNumber is not null THEN
			CASE
				WHEN COALESCE(LEN(HouseName),0) + COALESCE(LEN(HouseNumber),0) + 3 + LEN(COALESCE(AddressLine1,AddressLine2,AddressLine3)) <= 50 THEN
					--We can merge hn,hn + one address onto line 1
					COALESCE(HouseName + ', ','') + COALESCE(HouseNumber + ' ','') + COALESCE(AddressLine1,AddressLine2,AddressLine3) collate Latin1_General_CI_AS
				WHEN HouseName is not null then
					HouseName collate Latin1_General_CI_AS
				WHEN LEN(HouseNumber) + 1 + LEN(COALESCE(AddressLine1,AddressLine2,AddressLine3)) <= 50 then
					HouseNumber + ' ' + COALESCE(AddressLine1,AddressLine2,AddressLine3) collate Latin1_General_CI_AS
				ELSE
					HouseNumber collate Latin1_General_CI_AS	--Can't get anything else to share space on line 1
			END
		WHEN AddressLine1 is not null THEN
			AddressLine1 collate Latin1_General_CI_AS
		WHEN AddressLine2 is not null THEN
			AddressLine2 collate Latin1_General_CI_AS
		ELSE
			AddressLine3 collate Latin1_General_CI_AS
	END),''),
	CONVERT(varchar(35),CASE
		WHEN HouseName is not null or HouseNumber is not null THEN
			CASE
				WHEN COALESCE(LEN(HouseName),0) + COALESCE(LEN(HouseNumber),0) + 3 + LEN(COALESCE(AddressLine1,AddressLine2,AddressLine3)) <= 50 THEN
					--hn,hn + one address went on line 1, find the next address
					CASE
						WHEN AddressLine1 is not null then COALESCE(AddressLine2,AddressLine3) collate Latin1_General_CI_AS
						WHEN AddressLine2 is not null then AddressLine3 collate Latin1_General_CI_AS
					END
				WHEN HouseName is not null and HouseNumber is not null then
					--HouseName went on line 1, let's try to get the house number in
					CASE
						WHEN LEN(HouseNumber) + 1 + LEN(COALESCE(AddressLine1,AddressLine2,AddressLine3)) <= 50 then
							HouseNumber + ' ' + COALESCE(AddressLine1,AddressLine2,AddressLine3) collate Latin1_General_CI_AS
						ELSE
							HouseNumber collate Latin1_General_CI_AS	--Can't get anything else to share space on line 2
					END
				WHEN LEN(HouseNumber) + 1 + LEN(COALESCE(AddressLine1,AddressLine2,AddressLine3)) <= 50 then
					--HouseNumber + ' ' + COALESCE(AddressLine1,AddressLine2,AddressLine3) went on line 1, let's find the next address line
					CASE
						WHEN AddressLine1 is not null then COALESCE(AddressLine2,AddressLine3) collate Latin1_General_CI_AS
						WHEN AddressLine2 is not null then AddressLine3 collate Latin1_General_CI_AS
					END
				ELSE
					COALESCE(AddressLine1,AddressLine2,AddressLine3) collate Latin1_General_CI_AS
			END
		WHEN AddressLine1 is not null THEN
			COALESCE(AddressLine2,AddressLine3) collate Latin1_General_CI_AS
		ELSE
			AddressLine3 collate Latin1_General_CI_AS
	END),
	CONVERT(varchar(35),CASE
		WHEN HouseName is not null or HouseNumber is not null THEN
			CASE
				WHEN COALESCE(LEN(HouseName),0) + COALESCE(LEN(HouseNumber),0) + 3 + LEN(COALESCE(AddressLine1,AddressLine2,AddressLine3)) <= 50 THEN
					--hn,hn + one address went on line 1, find the next address
					CASE 
						WHEN AddressLine1 is not null and AddressLine2 is not null then AddressLine3 collate Latin1_General_CI_AS
					END
				WHEN HouseName is not null and HouseNumber is not null then
					--HouseName went on line 1, let's try to get the house number in
					CASE
						WHEN LEN(HouseNumber) + 1 + LEN(COALESCE(AddressLine1,AddressLine2,AddressLine3)) <= 50 then
							--HouseNumber + ' ' + COALESCE(AddressLine1,AddressLine2,AddressLine3) went on line 2, let's get the remaining address info
							CASE
								WHEN AddressLine1 is not null then COALESCE(AddressLine2,AddressLine3) collate Latin1_General_CI_AS
								WHEN AddressLine2 is not null then AddressLine3 collate Latin1_General_CI_AS
							END
						ELSE
							--HouseNumber	--Can't get anything else to share space on line 2
							COALESCE(AddressLine1,AddressLine2,AddressLine3) collate Latin1_General_CI_AS
					END
				WHEN LEN(HouseNumber) + 1 + LEN(COALESCE(AddressLine1,AddressLine2,AddressLine3)) <= 50 then
					--HouseNumber + ' ' + COALESCE(AddressLine1,AddressLine2,AddressLine3) went on line 1, let's find the next address line
					CASE
						WHEN AddressLine1 is not null and AddressLine2 is not null then AddressLine3 collate Latin1_General_CI_AS
					END
				ELSE
					CASE
						WHEN AddressLine1 is not null then COALESCE(AddressLine2,AddressLine3) collate Latin1_General_CI_AS
						WHEN AddressLine2 is not null then AddressLine3 collate Latin1_General_CI_AS
					END
			END
		ELSE
			AddressLine3 collate Latin1_General_CI_AS
	END),
link|flag
show 2 more comments
vote up 40 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 1 vote down

I wrote a Perl kludge which was basically a lot of lines of code wrapped around a find command call using backticks. It was more shell than perl.

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

Did a menu tree in php that read from an SQL by an id. Id's were int but if someone put a letter in the $_GET statment it would loop in such a way that it used all the memory resource of the server, in the end crashing it, and all the 200 other webs hosted on it.

link|flag
2  
Sounds like regular PHP programming to me. – FlySwat Sep 27 '08 at 14:59
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.