DEV Community

Cover image for What is the weirdest piece of code that you have written and does the job?
SwissGreg
SwissGreg

Posted on

 

What is the weirdest piece of code that you have written and does the job?

Have you ever written a piece of code that was not exactly the definition of 'clean code' but does what it has to do? (and does it good for a long time?)

Feel free to share it!

Top comments (4)

Collapse
 
artyomgazizyanov profile image
Artemiy Gazizyanov

One night, being tired and sleepy, I wrote something like this

if(a == true)
{
   doSmth();
}
else if (a == false)
{
    dontDoSmth();
}

In the next morning, when I found this, I decided to leave this code on its place, because it was so embarrassing and stupid, so I monumented it in my code.

Collapse
 
ankitbeniwal profile image
Ankit Beniwal

ohh... you missed a check for NULL πŸ˜‚πŸ˜‚

Collapse
 
predragnikolic profile image
ΠŸΡ€Π΅Π΄Ρ€Π°Π³ Николић

If a can be true, false or null.
In that case the if statement could make sense :-)

Join 900k+ Developers on DEV

You'll see more of the content that brought you here.