Hello, welcome to my profile page.
I'm very lazy (most of the time), so I do not have anything interesting on my profile.
Nice meeting you.
Hope to see you again. (Maybe tomorrow)
// A summary of my daily life in JavaScript
if (tired) {
takeABreak(20 * 60 * 1000); // take a break for 20 minutes
} else if (hungry) {
eat(Food.snacks);
} else if (sleepy && new Date().getHours() >= 22 && new Date().getHours() <= 4) {
sleep(3 * 60 * 60 * 1000); // sleep for 3 hours
} else {
while (alive) {
code();
}
}