vote up 18 vote down star
8

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

66 Answers

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

Obviously you folks don't know there's a whole art in writing obfuscated code!

  • There's even an international contest running for more than 20 years or so! To introduce yourselves to the darks arts of obfuscation and be delighted with the most impressive code you have ever seen, try this: International Obfuscated C Code Contest
  • Now, if you'd like to keep your jobs writing useful programs BUT in some delicate unmaintainable manner (so you can never be fired because the day you are out the systems are gone), try this: Writing Unmaintainable Code
link|flag
vote up 19 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
12  
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 1 vote down

I only wish I had the code to share... our shop used to be heavy on Lotus Domino. I had to write a "cutting edge" DHTML UI application for a new major application's readiness scorecard. There were roughly 3000 elements needing to be displayed in a collapsable hierarchy.

I stand by the notion that it was done out of necessity, rather than naivety. I KNEW it was wrong from the start. The "solution":

Use a Notes database to extract 40-50k records, mash it around and using Domino syntax and LotusScript, produce code that dynamically produced HTML & JavaScript that would be sent to the browser. The final pages sent over the wire were very JS heavy (before we had fancy JS frameworks mind you), and it was a miracle that it even worked. It actually looked quite nice to the end user, but I would NEVER want to step into that code again.

In typical fashion, since I'm still at my current employer - though in a different division doing architecture and management activities - I get emails when it's down, and the occasional question.

link|flag
vote up 1 vote down
' Grab Unique Check Numbers from all numbers
Dim UniqueCheckNum(1000)
Dim TotalUniqueChecks
TotalUniqueChecks = 0

for i = 0 to TotalUniqueChecks
	for j = 1 to TotalElem
		if NOT ChapCheck(j) = UniqueCheckNum(i) then
			UniqueCheckNum(TotalUniqueChecks) = ChapCheck(j)
			TotalUniqueChecks = TotalUniqueChecks + 1
		end if
	next
next

Written by me in the first project I ever did using VBScript.... It may look odd at first, but when you study it, you'll really wonder HTF it worked (it does work).

link|flag
show 1 more comment
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
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 14 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
1  
This is epic, I actually laughed out loud. It's answers like this I'm glad SO has permalinks to answers... – Chris Thompson Oct 13 at 3:17
show 1 more comment
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
6  
@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 11 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 15 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 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 44 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
8  
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 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 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

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

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 18 vote down
if(password='password')
{
   return true;
}else{
   return false; 
}

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

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

I wrote some INTERCAL once.

link|flag
vote up 8 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 20 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 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 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 8 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 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 28 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
4  
@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
2  
@d03boy: But does this look like VB? How many languages actually start their variables with $? – Mark Oct 13 at 3:12
show 5 more comments
vote up 1 vote down
<?php
$iShower = $_GET['clean'];
if ($iShower) {
     echo getdate();
}
?>
link|flag
show 3 more comments

Your Answer

Get an OpenID
or

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