Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Johnni3297yLucky my IDE tells me the fault everytime I do this. (i do this everytime i write a if statement LOL)
-
Tobyvw6987yThat's one of the reasons some people prefer
if(1==somestate)
over
if (somestate == 1) -
As long as it's not
if (runningState == 1)
return true;
else return false;
you're good.
Related Rants
-
rephiscorth38Everyone here ranting about a fucking missing semicolon. I can't remember the last time a missing semicolon wa...
-
CodesNotHot10-Laughed at Gitlab the other day -Accidentally dropped my db today. fuck karma
-
codeclod15When you have a super annoying problem that Google has been unable to help with... But you stumble upon a link...
Fucking fuck, I have been coding for so long yet I still make this mistake:
I wrote:
if (stateRunning = 1)
instead of:
if (stateRunning == 1)
rant
fuck