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
Related Rants
So yesterday evening when going to bed I wanted to sleep asap.
Therefore I used a 'tactic' called count to ten and then start over again. This is supposed to be relaxing so you stop thinking about other things an you get sleepy faster.
It usually works...
...But then my brain decided to write a program for said procedure in my mind. I actually started thinking:
int count=0;
While ( ! isAsleep() ){
think(count);
count++;
If( count == 10 ){
count = 0;
}
}
It didn't really help me falling asleep...
rant
sleeping
brain
programming
java