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
Search - "goto sleep goto sleep!"
-
1. Put headphones
2. Put videogame OST (Chrono Trigger is the best)
3. Start Atom
4. Sacrifice a male virgin to my Code Muse to replenish her mana stock
5. Jerk off seeing a fat granny midget porn
6. Clorophorm and put my coworker to sleep so he doesn't interrupt me to show the FailArm best fails of 2016
7. Atom is still loading, so I curse all the GitHub fuckers
8. Give up and start my emulator to play Chrono Trigger
9. Receive a pull request and realise I need to work and be a productive member of society
10. Goto 110 -
I wish I could tell my dog not to get up from his comfortable position or sleep each time when I simply want to goto the bathroom or stretch.
Like bro no need I’ll be right back..7 -
18pm: *starting to work on own project. Listening to classical music for better concentration*
22pm: *no progress*
22:10pm: *putting on some good old death core on max volume coz fuck it.*
22:30pm: *realizing I did more in the past 20mins than in the 4h before*
22:45pm: *super motivated*
2am: *same song again? Quick look on the clock...* "fuuuuuu" *apparently listened to my whole playlist. OK. Let's search for more stuff on my 2TB HDD I dedicated to death core etc*
4am: "lul" *go to sleep*
6am: *wake up, go to school"
*goto 18pm*2 -
Glad to support this awesome community! Thanks @dfox & @trogus for the quality shipment!
I'll look like a DevRant salesman with this Tee and the stickers on my Macbook :D Goto sleep, wake up covered in bitches with all this swag :D5 -
[Me at night]
1 Me: should I sleep?
2 Brain: right after finishing this module
3 Me: <drinking coffee>
4 goto 16 -
So, I finally got a bicycle today. Time to start working on my health...
Am I the only one who's daily regime was:
1 - Go to work, sit around for 8 to 9 hours
2 - Come home, sit around for 8 to 9 hours
3 - Sleep for 8 hours
Goto 1?
I was surprised how the bikes these days are so incredibly light. I could lift it and keep it up no problem!10 -
The best/worst code comments you have ever seen?
Mine:
//Upload didn't work, have to react:
system.println('no result');
//$Message gives out a message in the compiler log.
{$Message Hint 'Feed the cat'}
//Not really needed
//Closed source - Why even comments?
//Looks like bullshit, but it has to be done this way.
//This one's really fucked up.
//If it crashes, click again.
asm JMP START end; //because no goto XP
catch {
//shit happens
}
//OMG!!! And this works???
asm
...
mov [0], 0 //uh, maybe there is a better way of throw an exception
...
mov [0], 0 //still a strange way to notify of an error
// this makes it exiting -- in other words: unstable !!!!!
//Paranoic - can't happen, but I trust no one.
else {
//please no -.-
sleep(0);
}
//wuppdi
for (int i = random(500); i < 1000 + random(500 + random(250)); i++)
{
// Do crap, so its harder to decompile
}
//This job would be great if it wasn't for the f**king customers.
//TODO: place this peace of code somewhere else...
// Beware of bugs in the code above; I have only proved it correct, not tried it.
{$IFDEF VER93}
//Good luck
{$DEFINE VER9x}
{$ENDIF}
//THIS SHIT IS LEAKING! SOMEONE FIX IT! :)
/* no comment */5 -
Again found myself before deadline. My excuse? I'm more productive during the deadline rush :D
How everyone else sees it: you fucked up
What do I say to myself: never again!!!
```
sleep(until_next_deadline);
goto begining_of_this_post;
``` -
function myLife(time){
if(time.current() < time.alarm1)
sleep();
if(time.current() = time.alarm1){
wakeUp();
if(tired || hungover){
snooze();
sleep();
} else{
getReady(speed.Normal);
goTo(work, speed.Normal);
doMyJob(function(){
goTo(home);
});
}
}
if(time.current() = time.alarm2){
wakeUp();
if(tired || hungover){
snooze();
sleep();
} else{
getReady(speed.Fast);
goTo(work, speed.Normal);
doMyJob(function(){
goTo(home);
});
}
}
if(time.current() >= time.alarm3){
wakeUp();
if(tired || hungover){
workFromHome();
} else{
goTo(work, speed.Fast);
doMyJob(function(){
goTo(home);
});
}
}
}3 -
Found this gem in my news feed yesterday and can't get it off my mind: catch exception, sleep, goto try-block and, well, try again:
$attempts = 0;
start:
try {
$attempts++;
// (...)
} catch (Exception $e) {
if ($attempts <= 10) {
usleep(100000);
goto start;
)
}
Did we go full-circle? Is "goto" the next big thing? Is this a late april fools joke? What am I missing here? This can't be real.
Source: https://blog.frankdejonge.nl/back-t...4 -
I was expecting that my insomnia would be less annoying since I don't have to go out anymore for anything but food shopping.
Nope. This little bitch is still very annoying.
I swear if I get a headache tomorrow while staring at computer screen during work hours, I'm gonna shoot myself. (figuratively, not really)3 -
Today I've confirmed that there actually are real developers that aren't monkeys in my company and team.
Me: {discussing how to fix something, he said we will use some new tech} ... So how do you up with all this latest tech?
Him: https://www.thoughtworks.com/radar
Me; Thanks! I was thinking it was just a web dev skill :) I mean looking at it package.json, I always think how can someone pick all these modules for a single app... And there's always a new JS framework.
Him: You goto sleep knowing be day will bring new frameworks to keep up on :D
So yea there are actually people here that actually know what they're doing... -
I'm wondering if the computer let me win...
Up to now it was ahead and got me on the ropes... Granted I haven't played an actual Go game in years...
But then somehow it made a mistake? here... A 100 point game turning mistake... which I don't notice until 30+ moves later
Maybe I should just goto sleep.... It's actually 2:30am here...3 -
Music on, use half an hour on selecting project to work on, start working and forget time... Realize it's 4am and goto sleep 😐
-
<?php
date_default_timezone_set('Asia/Kolkata');
$current_time = date('Y-m-d H:i:s');
$alarm = new DateTime('2016-06-13 04:05:00');
if( $current_time == $alarm)
{
wake_up();
eat('suhur');
pray('fajr');
browse('devRant');
browse('Instagram');
sleep(18000);
}
shower();
goto('friends office');
browse('YouTube');
work(14400);
pray('zuhr');
pray('asr');
goto('gym');
exercise(5400);
goto('home');
pray('maghrib');
eat('iftaar/dineer');
pray('isha');
goto('store');
work(7200);
goto('home');
sleep(7200);
?>11 -
At 10pm I was ready to goto sleep... Feeling tired so I thought I'd just browse a bit of NLegs to start the weekend.
It's now 1am and I'm still awake... And look longer sleepy or at least until my adrenaline? goes down a bit...
The site admin tightened it's bot check so that I couldn't actor the full pictures....
Have to rewrite whole download module...
But I win again... For now.... -
Recently I've purchased a new laptop and so far it's working smoothly as I expected.
And yesterday I had a dream in which, laptop was got broken in the middle where the screen gets attached. And there was a last day for replacement as per return policy (idk really whether they allows if laptop got physical damage). But I was trying very hard to get the internet to submit a request for replacement and suddenly I woke up and very first I checked the laptop condition.
Anyway today I'll goto sleep and again will try to place replacement request for my laptop before date get expired.7