vote up 6 vote down star

We've all done them, the short fix that will get the system back up and running until we can Do The Right Thing.

What have you marked in your code with the dreaded //Hack comment?

flag

18 Answers

vote up 16 vote down check

Ctrl+C, Ctrl+V

link|flag
1  
I call this the Clipboard Board Factory pattern. – Chris Noe Sep 24 '08 at 1:34
vote up 3 vote down

Any kind of hard-coding.

link|flag
vote up 11 vote down

When I make a minor change and it works, but I'm not really sure why.

link|flag
These ones always make me nervous! – ConroyP Oct 3 '08 at 15:46
vote up 5 vote down

Throwing DLLs into the same directory as the executable so that they can be found.

link|flag
vote up 0 vote down

Changing the timezone instead of fixing the timestamp problems.

link|flag
vote up 0 vote down

Commenting out the line that is causing a segfault.

link|flag
vote up 1 vote down

replacing a faulty peice of code with an if / else

link|flag
vote up 2 vote down

Coding something without proper exception and argument handling.

  • i.e. Not checking for null or empty variables.
  • Opening a connection (which could fail) and then running methods on that.
  • Selecting from a list of elements (which may not return anything) and doing logic on the first element (which may not be there since the list could be empty).
link|flag
vote up 0 vote down

When using a truly Object Oriented language, typically anything that requires an if statement, or especially a switch. It's usually a sign that you're not doing OO correctly.

link|flag
you don't always want to use OO – grom Sep 24 '08 at 11:29
vote up 2 vote down

Writing my own function rather than taking the time to figure out how to use somebody else's pre-existing, tested, and proven function.

Writing code is easier than reading it.

link|flag
vote up 0 vote down

Table based HTML design when x-browser issues made me realise my CSS skills need more work

link|flag
vote up 2 vote down

Using the windows registry as a communications channel between different parts of the same software system, because it's so much easier than doing it correctly.

link|flag
vote up 1 vote down

My fellow workers have this ritual ( not exactly but some sort of )

Copy resource files all over the computer for the program to find them.

Shutdown the app.

Shutdown the IDE

Shutdown the messenger ( just in case )

Shutdown all the applications ( to make it sure )

Shutdown the whole computer ( not restarting it but actually shut down and leave it for exactly 2 minutes )

Jump three times on one foot.

Turn the lucky cup up side down 1 time

and walk around the block clockwise ( otherwise It won't work ) .... .

Ahh and give a little pray.

When they do this, it makes me so angry. I tell them there is not such a thing like Voodoo programming.

But.. when I'm all alone, at 3 a.m. on a holyday ( like .. independence day or some other ) I ask my self... what if I do the ritual....

link|flag
Hey, what have you got to lose? – KevDog Sep 24 '08 at 3:34
vote up 1 vote down

This just never works..

public static void sanityCheck () throws ScaryException {
  // TODO
}

also, putting in all initialization values at the beginning of the program, with a "this will go into a config file" comment. Should just put it in the config file.. it'll take 5 minutes! And yet, I start off this way every time.

link|flag
vote up 3 vote down

Any bug fix that's committed without a non-regression test...

link|flag
vote up 2 vote down

"Find/Replace All."

Even scarier when it works.

link|flag
vote up 1 vote down

Code that is dependent on the date because of changes in other systems. Code like, "after 2008-10-xx, remove this check".

link|flag
vote up 2 vote down

Adding null checks where null should not be possible, but not figuring out how a null ended up there. (But I never leave the code like that!)

link|flag

Your Answer

Get an OpenID
or

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