vote up 0 vote down star

Whether you came across someone elses code, or simply looked back at your own code and thought why the hell did i do that?

flag
I'm pretty sure this question has been asked and closed/downmodded at least 5 times. So don't be surprised if/when that happens. – mdec Nov 6 '08 at 10:08
Refer to the FAQ for help on writing questions: stackoverflow.com/faq – keparo Nov 6 '08 at 10:10
please reopen. this would have been fun – Kozyarchuk Nov 7 '08 at 4:14
Sorry, Didn't find anything similar searching (I did search) – Bill K Jul 21 at 20:18

closed as not a real question by Oli Nov 6 '08 at 10:19

3 Answers

vote up 0 vote down

My co-worker declared a function inside of a loop that was inside another function. And was asking me why the script wasn't working...

link|flag
Depending on the language that is not always wrong. Javascript would be a perfect example of where this is perfectly legal (and even handy in some cases). – kigurai Nov 6 '08 at 10:27
It was Javascript indeed, and I can see the utility of declaring a function inside another function, but inside also inside a loop? – Gabe Nov 6 '08 at 14:00
vote up 1 vote down

I saw come code that was along the lines of:

for(int i = 0; i < 5; i++)
{
    switch(i)
    {
        case 0:
            // do: A
            break;
        case 1:
            // do: B
            break;
        case 2:
            // do: C
            break;
        case 3:
            // do: D
            break;
        case 4:
            // do: E
            break;
    }
}
link|flag
vote up 7 vote down

You can find some of the most outstanding examples on thedailywtf.com. There is little point in repeating them here.

link|flag
awesome site! Thank you! – pearcewg Nov 6 '08 at 18:54

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