vote up 21 vote down star
19

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

vote up 60 vote down

OK, it's two lines, but this is still my favourite:

// initialise the static variable to 0
count = 1;
link|flag
23  
If the comment and the code disagree, mostly both is wrong. – Tim Büthe Oct 14 at 10:10
5  
You, sir, win money. – Adriano Varoli Piazza Oct 14 at 12:56
show 1 more comment
vote up 7 vote down
if (a % 1)
{
   // this will never be reached!
   // but there was real code in here
}
link|flag
vote up 0 vote down

I don't remember exactly what the controls were, but it went along the lines of:
result := ((String1 = '') and (String2 <> '')) or ((String1 <> '') and (String2 = ''));

Shortened it to
result := (String1 = '') xor (String2 <> '');
and suddenly performance improved about 10% from these strings actually being functions.

link|flag
1  
Er… your "short" version is not equivalent to the "long" version. – Ben Blank Oct 14 at 15:19
show 1 more comment
vote up 4 vote down

In a multi-user system, the result of this was used in several subs in VB6 before being committed back to the DB as part of a new row :

SELECT Max(ID) + 1 AS NextID FROM Table1
link|flag
show 1 more comment
vote up 6 vote down
for(;r<c;r++,dst1++,b2++,b3++,mask<<=1)

The surrounding code isn't much better... Yea - right! Easy to understand, eh?

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

came across this in a couple places in a newly checked in file recently :)

if(true) { ...snip... }

and

if(false) { ...snip.... }

no comments or details.

link|flag
vote up 17 vote down

From a project I used to work on:

bool flag = Boolean.Parse("True");

and elsewhere in the same code file, by the same person:

if (chkTerm.Checked == Boolean.Parse("False"))
{
    ...
}
link|flag
show 3 more comments
vote up 1 vote down

I guess you're asking for the location of the The International Obfuscated C Code Contest :-)

As code, the snippet that gives me a oh-no reaction most often is:

if (stringvalue.equals("")) {
link|flag
vote up 3 vote down
// her comes the magic part
link|flag
vote up 0 vote down
public static string GetBytes(string info)

Right out of the "public int GetString()" book.

link|flag
vote up 3 vote down

boolean t1 = true;

.. some code change t1 ..

if( t1 == true ) 
else if( t1 == false)
else
link|flag
show 1 more comment
vote up 0 vote down

I never saw the code, but I remember a developer (a good developer) coming out of his office saying, "You know, I'm actually rather proud of this kludge."

link|flag
vote up 0 vote down

Some code I found (not my code):

do
  j = 0
  if j = 0 then
    ' Do stuff
    ' Some other code here...
    j = 1
  end if
  i = i + 1
loop while i < iCnt
link|flag
show 2 more comments
vote up 7 vote down
if (variable == someObject)
{
    variable = someObject; // yeah! equality and assignment operators are overloaded. God save C++
}
link|flag
show 2 more comments
vote up 6 vote down

I kid you not, this line of code was found in a header file for one of our products when we were doing maintenance a couple of years later:

#define PI 3.141592654		/* What the f**k is that! */

I've had to expurgate the comment, but otherwise that is verbatim ('ve literally just copy-and-pasted it in). No-one would own up to being the programmer who didn't know what pi was...

link|flag
show 4 more comments
vote up 5 vote down

We once had a program that crashed a lot, but could not locate the bug. I added code to write trace lines to a debugging output file:

dbg = fopen("prog.dbg", "w");
fprintf(dbg, "Debugging started\n");
...

Of course, this particular Heisenbug disappeared at that point. Apparently enough of the internal static memory had been shifted around by my change that the bug no longer trashed critical memory enough to cause a crash. Removing the tracing code brought the bug back, of course.

I didn't have time to really fix the bug, so I left the fopen() call in the code, but changed it to be silently benign:

dbg = fopen("/dev/null", "w");

And that's what we shipped in production.

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

Ternary abuse FTL!

On one application I used, every if statement was written in ternary form:

if (someFlag == true ? true : false)
//from the department of redundancy department

Once the developers discovered ternary chaining, the gods themselves weeped:

char status = user.Type.ToString() == "Admin" ? 'C' :
                  administrativeOverride(txtUsername.Text, txtPassword.Text) ? 'X' :
                      user.IsLoggedIn && (user.NeedsEOD || !user.Accounts[0].OutOfBalance) ? 'P' :
                          user.ID == -1 /* test only! */ ? 'T' : '-';
link|flag
show 1 more comment
vote up 1 vote down

Java code, done by an obvious beginner:

String name =  new String("");
String addr =  new String("");
String zip =   new String("");
link|flag
vote up 4 vote down
Dictionary<int, string> dictionary = new Dictionary<int, string>();
                        dictionary = sourceDictionary;
link|flag
show 2 more comments
vote up 3 vote down
// KEKEKE IM DRUNK!!

shudder

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

My own comment after some fixing Microsoft's fuckups:

// MICROSOFT MADE ME DO IT :(

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 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 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 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
 /* TODO holy zombiejesus this is ugly */

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

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

Here's a good one:

if (symbol == null) { lock (symbol) symbol = value; }
link|flag

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