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
-
function* getMood() {
while(true) {
yield Math.random();
}
}
const moodGen = getMood();
let moodResult = moodGen.next();
while(!moodResult.done) {
if(moodResult > 0.5)
console.log(goOutWithFriends());
else
console.log(rotInsideAndPlayGames());
moodResult = moodGen.next();
} -
evidently repress everything to the unconsciousness, even feeling your own body, and have a nervous breakdown due to a critical mass of exhaustion, realize what repression is and that you have it, and then obsessively meditate and cleanup the mess hopefully but getting annoyed that the nervous system keeps snapping back all the time -.-
LISTEN TO ME, BODY, GODDAMNIT -
CaptainRant416414hCallback function to escape void hm... so that would mean that function would have to keep bouncing around in memory.
My anxiety runs on an event loop:
while(alive) { overthink(); }
What’s your callback function to escape the void?
(Mine’s () => { orderDumplings(); })
joke/meme