Details
-
SkillsC, Java, Spring, Android
-
LocationZurich
Joined devRant on 4/27/2018
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
-
Microsoft pro account.
2018.
16 characters.
2018.
Microsoft.
16.
2018.
Microsoft.
(Screams in French)5 -
Why do programmers take so long in the shower?
They read the directions on the shampoo bottle and follow them to the letter:
Lather, rinse, and repeat.
If only shampoo used for-loops in their instructions...
while(hair.isDirty){
hair.wash();
hair.rinse ();
}
while(hair.isDirty() && !shampoo.isEmpty()){
hair.wash();
hair.rinse();
}
Come on man, we should still stop if we run out of shampoo even if the hair isn't 100% clean yet.
while(hair.isDirty() && !shampoo.isEmpty() && tap.waterStillHot()){
hair.wash();
hair.rinse();
}
This could go on forever, I mean the adding of special cases.
try {
while(hair.isDirty() && !shampoo.isEmpty() && tap.waterStillHot()){
hair.wash();
hair.rinse();
}}
catch(sexException) { self.f___(spouse); } // spouse showed in in mid-rinse
catch(deathException) { spouse.arrangeForBurial(self); } // user died while showering
More importantly, you also need to catch a hairNotFoundException in the event that the user is bald. Or more properly, wrap the whole thing in "if(hair != null)". You don't want bald users throwing an exception every time they shower.
-- From a reddit feed a while back. -
Shame me later for piracy but I think i just found the goldmine of books and vid tuts. Has packt(books, vids) and even O'Reilly books as recent as last month. This good boye has EVERYTHING.
coderprog.com14 -
"Art is never finished, only abandoned"
-Leonardo Da Vinci
"Software is never finished, only abandoned"
-Me8 -
I'm planning to add this in my next project..
Login Critter
Source: https://github.com/cgoldsby/...19