vote up 21 vote down star
18

Possible Duplicates:
What is the worst code you’ve ever written?
What programming hack from your past are you most ashamed of?
Most shameful/awesome language hack

Possible Duplicate:
What is the worst code you’ve ever written?

Duplicate

What's the worst code you've ever written?
Most shameful/awesome language hack

Today my friend sent me a line of code that he just found while attempting to debug and it got me wondering what others have found. So, in your coding travels, what is the line of code that has made you most think to yourself, "Oh...this can't be good.".

To start things off:

const float nearZero = 0.0000001;

Edit 2: To specify: I'm most curious about single lines of code, not entire blocks.

Edit 3: Also, to clarify, I'm not saying the code is necessarily bad upon further inspection. I'm just looking for first glance "Oh no" kind of moments.

flag
45  
Would you have felt better if the variable was named TOLERANCE? The programmer could have been spelling out a default value for floating point operations. What's so horrifying about that? – duffymo Oct 12 at 20:24
13  
Okay... I have been coding in C# too long. I ended my last comment with a ";". – Matthew Whited Oct 12 at 20:25
13  
I would have to agree, that seems like a perfectly fine constant. – resolveaswontfix Oct 12 at 20:26
16  
You had the source code in front of you, but you didn't bother to read a few more lines and determine what was happening for sure? You are certainly quick to throw around the "didn't know what they were doing" moniker though... – jrockway Oct 12 at 20:29
7  
I agree. Maybe that person is thinking that you don't know what you're doing right now.... – duffymo Oct 12 at 20:30
show 18 more comments

closed as not a real question by ShreevatsaR, cletus, shoosh, Thomas Owens, Shog9 Oct 20 at 4:01

78 Answers

1 2 3 next
vote up 75 vote down check
Dictionary<int, Dictionary<string, Dictionary<int, Dictionary<int, 
             Dictionary<string, string>>>>> status 
    = new Dictionary<int, Dictionary<string, Dictionary<int, 
            Dictionary<int, Dictionary<string, string>>>>>();
link|flag
26  
wtf is that O_o – Stephen Cox Oct 12 at 20:38
1  
I'm reproducing from memory but it was a horrible amalgamation of status flags, five dictionaries deep, that at most contained two entries each. – womp Oct 12 at 20:39
10  
I feel dead inside. – Stephen Cox Oct 12 at 20:42
7  
Clearly should have been Dictionary<Tuple<int,string,int,int,string>,string> or equivalent. Or maybe not. – Steve Jessop Oct 12 at 20:44
14  
If they used var status = ... it would only be half as bad :) – Mike Two Oct 12 at 22:43
show 9 more comments
vote up 1 vote down
srand(0xC0EDA55);

Was in a buddy's molecular dynamics code. It certainly isn't horrible but it still made me LOL.

link|flag
vote up 1 vote down
while (check.flag==true) {};

And most surprisingly was in a project already in production...

Another thread was updating that check.flag but it was still horrible to see....

link|flag
show 1 more comment
vote up 0 vote down
//Assembly language code here

move eax,X1

I think they'd know better.

link|flag
vote up 1 vote down

inline javascript calls.

link|flag
vote up 1 vote down

It was something like that:

If SomeBoolean <> False Then
link|flag
vote up 2 vote down
<br /><br /><strong style="font-weight: bold">Some Text</strong> more text

...repeated about 100x on the page as paragraphs and list items. ugh.

link|flag
1  
Sweet. I'm going through some code like that right now. – Topher Fangio Oct 16 at 13:54
vote up 1 vote down

Another database development enhancement I thought of.

In order to speed up development even further, I've seen places using Strings (varchar2) for all database columns.

Even columns that should be ints, they're stored as strings. This makes sorting difficult and require an extra computation if you want it in the numerical order.

link|flag
vote up 1 vote down

In order to speed up development, I've seen developers change the field name in a Java class without updating the field in the database. So, it is not uncommon to have a model like this:

public class User
{
  String username;
  String firstName;
  String lastName;

 ...
}

User
{
   userId,
   type,
   code
}

where userId maps to username (not so bad) firstName maps to type, lastName maps to code

This is another reason I vote for hibernate of iBatis. Hibernate helps you follow conventions, if you really want to screw up, you have to go out of your way.

link|flag
vote up 2 vote down

Some of the best code I've seen others write is: command.setPropertyName(command.getPropertyName());

That wasn't exactly it, it was cleaned up a bit, but some others wrote code that set the value of the object from its existing value?

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

-f>@+?*<.-&'_:$#/%!

See How do you google for -f>@+?*<.-&'_:$#/%!? on SuperUser.

link|flag
vote up 2 vote down
//i am only responsible for this code if it works

a Lovely comment!

link|flag
vote up 1 vote down

I once saw some PHP code that looked something like this:

$page2URL = strrev(strstr(strrev($URL), "/") . "page2.php";
link|flag
vote up 4 vote down

this one is my personal hate:

  if (bResult = true) then
    lResult := true
  else
    lResult := false;

link|flag
vote up 3 vote down

I did maintenance work on a module littered with the 'comments' like this:

// And now we are going to multiply x by 2
x *= 2;

// About to call function y
y( );

I guess at some point there was a mandatory management decision to use comments in the code.

The methods in the module did not have any documentation, naturally.

link|flag
vote up 8 vote down

This is one from a small open-source project i worked on from time to time.

The culprit was "hard to work with" (insert whatever mean name you'd like to call that type of person there) so was asked to resign from the project. It was not on particularly bad terms; he was fine with it and simply said OK. He said he would wrap up what he was working on and commit (praise dinosaurs we were versioning source). He made a commit of about 50 files.

After we checked out his commit, everything broke. Unfortunately there was some valuable stuff in his commit too... so we had to check diffs on every file to figure out what the problem was.

#define true false //f**k you guys. Have fun.

We didn't.

link|flag
vote up 5 vote down
tmp6 = (tmp1 + tmp2 * (tmp5 / tmp4)) + tmp3

Actualy every line of this code is the Most horrifying line of code i have ever seen.

mTotalesMSF(6) = mTotalesMSF(6) + tmp6 + tmp4
If tmp1 = 0 Then
    tmpCero = 100
Else
    If tmp3 + tmp5 = 0 Then
        tmpCero = 0
    Else
        tmpCero = ((tmp3 + tmp5) / tmp1) * 100
    End If
End If
tmpAdd = tmpAdd + Format(tmp3 + tmp5 - tmp1, "#,##0") + Chr(9)
tmpAdd = tmpAdd + Format(tmpCero, "#,##0") + "%" + Chr(9)
If tmp2 = 0 Then
    tmpCero = 100
Else
    If tmp4 + tmp6 = 0 Then
        tmpCero = 0
    Else
        tmpCero = ((tmp4 + tmp6) / tmp2) * 100
    End If
End If
tmpAdd = tmpAdd + Format(tmp4 + tmp6 - tmp2, "#,##0") + Chr(9)
tmpAdd = tmpAdd + Format(tmpCero, "#,##0") + "%"
mTotalesMSF(7) = mTotalesMSF(7) + tmp4 + tmp6 - tmp2
If tmp1 + tmp2 + tmp3 + tmp4 + tmp5 + tmp6 <> 0 Then sfConsulta.AddItem
link|flag
show 1 more comment
vote up 3 vote down
while (true == true);
link|flag
5  
This might cause performance issues. – Graeme Perrow Oct 14 at 15:25
vote up 3 vote down

Never had the pleasure of finding any WTF code, but I've come across some great comments in my time:

(* DiscRate := 0.25;  //Just commented out in case the bitch changes her mind again *)

And one of my personal favorites:

(* This is a simple bubble sort, if you don't understand it why did we hire you... don't change it! *)

Right before I left an employer, we were beginning the "Descriptive Variable Name FOR EVERYTHING" phase, so I left them with this gem in a deply buried routine...

var tempVariableWithADescriptiveNameUsedToIterateThroughASetNumberOfItems : Integer;
link|flag
show 1 more comment
vote up 2 vote down

Here's a good one:

if (symbol == null) { lock (symbol) symbol = value; }
link|flag
vote up 4 vote down

What about these gems from someone reluctant to test against constant 0

if (someInt > default(int))

Or, much more worryingly...

if (someInt < int.MinValue)
link|flag
show 1 more comment
vote up 2 vote down
 /* TODO holy zombiejesus this is ugly */

(as only comment in front of of a very obscure function called from everywhere)

link|flag
vote up 7 vote down

How is possible that nobody hasn't mentioned yet the infamous:

catch {}
link|flag
3  
eh, sometimes its OK is something doesn't succeed. Not usually, but sometimes... – Steve Oct 14 at 14:47
vote up 2 vote down

This was just a "proof of concept" that I posted in another question, so it's not in any real code (I hope xD):

#define MAX_8(A, B, C, D, E, F, G, H) ((((A)>(B)?(A):(B))>((C)>(D)?(C):(D))?((A)>(B)?(A):(B)):((C)>(D)?(C):(D)))>(((E)>(F)?(E):(F))>((G)>(H)?(G):(H))?((E)>(F)?(E):(F)):((G)>(H)?(G):(H)))?(((A)>(B)?(A):(B))>((C)>(D)?(C):(D))?((A)>(B)?(A):(B)):((C)>(D)?(C):(D))):(((E)>(F)?(E):(F))>((G)>(H)?(G):(H))?((E)>(F)?(E):(F)):((G)>(H)?(G):(H))))
link|flag
show 4 more comments
vote up 1 vote down

Found in Microsoft's Profile Manager code - available publicly:

// HACK CENTRAL.  This is a MAJOR hack.  MAPI will always return E_ACCESSDENIED
// when we open a profile section on the service if we are a client.  The workaround
// (HACK) is to call into one of MAPI's internal functions that bypasses
// the security check.  We build a Interface to it and then point to it from our
// offset of 0x48.  USE AT YOUR OWN RISK!  NOT SUPPORTED!

Do i need to mention it didn't work for me?

link|flag
vote up 4 vote down

Java

StringBuffer iCalendarRequest = new StringBuffer(
    "BEGIN:VCALENDAR\n"
        + "PRODID:-//Microsoft Corporation//Outlook 9.0 MIMEDIR//EN\n"
        + "VERSION:2.0\n" + "METHOD:PUBLISH\n" + "BEGIN:VEVENT\n"
        + "ORGANIZER:MAILTO:test@test.de\n" + "DTSTART:"
        + dateFormatter.format(start)
        + "T"
        + timeFormatter.format(start)
        + "A\n"
        + "DTEND:"
        + dateFormatter.format(ende)
        + "T"
        + timeFormatter.format(ende)
        + "A\n"
        + "TRANSP:OPAQUE\n"
        + "SEQUENCE:0\n"
        + "UID:040000008200E00074C5B7101A82E0080000000000278000000000000000\n"
        + " 000004377FE5C37984842BF9440448399EB02\n"
        + "DTSTAMP:"
        + dateFormatter.format(now)
        + "T"
        + timeFormatter.format(now)
        + "Z\n"
        + "LOCATION:Conference room\n"
        + "PRIORITY:3\n"
        + "CLASS:PUBLIC\n" + "END:VEVENT\n" + "END:VCALENDAR").toString();
link|flag
show 2 more comments
vote up 2 vote down

My own comment after some fixing Microsoft's fuckups:

// MICROSOFT MADE ME DO IT :(

link|flag
vote up 4 vote down

In PERL

if $var =~ /(.*)/ { ...

link|flag
4  
Any line of PERL code is the most horrifying line of code I've ever seen </jk> – Marcin Oct 19 at 16:36
show 1 more comment
vote up 1 vote down

The one that always sets my alarm bells off is

using System.Linq;

link|flag
show 5 more comments
vote up 3 vote down
// KEKEKE IM DRUNK!!

shudder

link|flag
show 1 more comment
1 2 3 next

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