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

prev 1 2 3
vote up 13 vote down

Comment

// We should remove this terrible hack before we ship

In a file that has not been revised for years

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

So I don't have a line of code to post, but I feel that it is along the same line as the question.

DBA: "There's something wrong with your batch processing code concerning the interest calculation of auto loans."

Programmer Team Lead: "I know."

DBA: "Don't you think you should fix it?"

Programmer Team Lead: "No, since they are all wrong, we know they are all wrong, and changing the code would change that. Consistency is better than accuracy."

link|flag
4  
Well, when I did archery they did teach us as beginners that we should be striving for "good grouping", and worry later about how to get that group in the right spot on the target. But I stress, beginners. It wasn't long before we started learning to, like, adjust the sights. – Steve Jessop Oct 12 at 20:38
show 1 more comment
vote up 2 vote down

Usually the comments scare the most

Like

// I hope I'll fix this bug some time later
link|flag
show 1 more comment
vote up 25 vote down
if (boolean_test_here_which_is_usually_true); {
  // stuff
}

Took me a while to figure out why the block was running even in the rare case when the condition was false.

link|flag
15  
Been there, done that, got the t-shirt. And coffee mug. And stress ball.... – Tom Oct 12 at 22:43
1  
Ugh. I made the semi-colon typo for the first time ever a couple weeks ago and I was nearly crying by the time I figured out what was wrong. – Dana Oct 14 at 14:35
1  
I've done this before, but in general, I ALWAYS use curly braces for all if statements, so I find I don't do it as often. My feeling is that if I want a one line if statement, I use a ternary operator. – Topher Fangio Oct 14 at 14:44
show 6 more comments
vote up 1 vote down

http://thedailywtf.com/ for all your poor programming needs!

link|flag
vote up 12 vote down

How about comments like this?

# test if this value is true, and if it is, print result
if (value is True):
    print result
link|flag
13  
It's even better when that same comment precedes if (value is False) – Austin Salonen Oct 12 at 20:32
2  
I had a (n otherwise brilliant) coworker who wrote comments like that. including the gem: "sleep(10 * 60); # Wait for the prescribed time interval" but no indication of the business logic behind the 10 minute delay; when quizzed months later he was sure there was a reason, but he no longer knew what it was. – OtherMichael Oct 14 at 12:48
vote up 17 vote down
void *myPtr = Ox0BADC0DE;
link|flag
24  
I like the way Ox0BADC0DE is a variable name, not a numeric literal. – Steve Jessop Oct 12 at 20:51
2  
See: en.wikipedia.org/wiki/… for more information. – John Gietzen Oct 12 at 21:56
4  
@John Gietzen, thanks, great link. I especially love this one: 0xDEFEC8ED ("defecated") is the magic number for OpenSolaris core dumps – Evgeny Oct 13 at 5:29
show 4 more comments
vote up 15 vote down
Dim isResult as Boolean = doesWork()
If isResult = true then
    If isResult = false then
        ' do Some Work
        ''' don't know how they planned on getting here
    Else
        ' do Some Work
    End If
Else
    'do some work
End If
link|flag
10  
that is the longest single line of code I have ever seen – Gegtik Oct 14 at 14:30
show 2 more comments
vote up 35 vote down
On Error Resume Next
link|flag
6  
Except that in VBScript (Not VB) that is the only error flow control that you have :-(( – Peter M Oct 12 at 20:59
1  
Doesn't make it any less scary. – quillbreaker Oct 12 at 21:19
5  
@Peter -- that's what makes it horrifying... – Austin Salonen Oct 12 at 21:34
show 6 more comments
vote up 0 vote down

This usually wouldn't work but it makes me cringe.

rm -rf /

link|flag
3  
rm -rf / is better ;) – Byron Whitlock Oct 12 at 20:30
5  
rm -rf * .o instead of *.o – Alexander Pogrebnyak Oct 12 at 20:40
show 3 more comments
vote up 44 vote down
'Option Explicit

"Hey! I sorted it! It was this line at the top, comment it out and the error goes away!" :)

link|flag
9  
/* hahahahahahahaha */ – comichael Oct 13 at 15:33
show 1 more comment
vote up 2 vote down

In my own code recently:

if (someCondition)
{

}

Just like that. I thought to my self, oh my god, what did I delete without realizing it? After some research and testing, I realized it was only a left over fragment though.

link|flag
2  
+1 Been there multiple times! I always hate that feeling. Thank goodness for source control ;-) – Topher Fangio Oct 12 at 20:51
show 1 more comment
vote up 27 vote down
pointer = 1+1-2; // null out the pointer properly.

or how about...

//UpdateSomething(deltaTime);  // TODO: uncomment this after the show.
link|flag
show 4 more comments
vote up 38 vote down

Within a piece of code brought in by an interview candidate:

Dim Dave as String

Unsurprisingly he has forever been referred to as 'dim dave'

link|flag
6  
shit, he got the job? – comichael Oct 13 at 15:31
2  
We nearly took pity on him, he was young and just badly taught - but no, he was declined and is still remembered / referred to. His Team Lead also applied for a position and brought in similar code, so we could see where he learn't his 'skills' from. – Andrew Oct 13 at 16:13
4  
Wait, call me an idiot (I'm not familiar Visual Basic), what is wrong with that code up there? – Papuccino1 Oct 14 at 13:41
1  
Nothing VB special. Bad variable name, and the part "Dim Dave" meaning something like not bright dave (forgive me if it's a bad translation). – Ikke Oct 14 at 13:53
2  
Ikke is correct, Dave's (the interviewee) code was 'Dim' in every sense of the word. Brought in as a code example where you expect them to bring you their best piece of work it was surprising to say the least. It has entered our office language as a colloquism for bad naming of variables. – Andrew Oct 14 at 14:40
show 4 more comments
vote up 40 vote down
bool b = (i == 3) ? true : false;
link|flag
41  
@Byron: No, it doesn't look good to me. Why on earth would you use that line when bool b = i == 3 would have been just as correct, and clearer? – Chris Jester-Young Oct 12 at 20:32
9  
The ternary is fancy. I usually see b being set in and if..else block. – Bill the Lizard Oct 12 at 20:36
5  
Use of ternary operator where not necessary; arbitrary magic number use; and short, non-descriptive variable names. – Sarah Vessels Oct 12 at 20:40
9  
@Bill: yes, I'd expect more like bool b = true; if (i == 3) { b = true; } else { b = false; }. – Steve Jessop Oct 12 at 20:46
3  
@onebyone: Argh! My eyes, my eyes! screams – Chris Jester-Young Oct 12 at 20:55
show 16 more comments
vote up 9 vote down
// there be dragons here
link|flag
8  
// Author: Jeff Atwood – jrockway Oct 12 at 20:27
1  
That's an old classic. Wouldn't surprise me if it predated the invention of COBOL. – Mark Ransom Oct 14 at 15:29
1  
Call me crazy but I thought this was // here there be dragons ? – TM Oct 14 at 16:46
6  
According to Wiki its here be dragons so we're all wrong. – Will Oct 15 at 12:38
show 1 more comment
vote up 7 vote down
if (true)

At least there was no else statement.

link|flag
19  
I do that all the time when prototyping, to enable/disable blocks of code (óften with an else-statement) – truppo Oct 12 at 20:31
1  
@truppo - this was not a prototype. I've been known to do what you describe, but this developer really thought he was checking a condition. – Mike Two Oct 12 at 20:36
5  
Ouch. I've seen similar code: if(condition) { do something; } else { do exact same thing }. – Topher Fangio Oct 12 at 20:53
show 2 more comments
vote up 15 vote down
CommentId1, CommentId2, CommentId3, .... , CommentId78 = 0;
link|flag
5  
It's very scalable. You just have to add CommentId79, CommentId80... – Luc M Oct 14 at 13:51
show 2 more comments
prev 1 2 3

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