- ๐ญ I'm currently working on Next.js App
const life = () => { return "Code" };
- ๐ฑ I'm currently learning ML / DL
Plot twist: The machines are actually learning me ๐ค
- ๐ซ How to reach me: [email protected]
Warning: May respond with "It works on my machine" ยฏ_(ใ)_/ยฏ
while (alive) {
const day = {
morning: ['โ', '๐ป'],
afternoon: ['๐', '๐จโ๐ป'],
evening: ['๐ฎ', '๐'],
night: ['๐', '๐ก', '๐']
}
try {
await sleep(6).hours
if (coffee.isEmpty()) throw new Error('Need coffee!')
await code(day.morning)
if (Math.random() < 0.5) await nap(15).minutes
await code(day.afternoon)
await game(day.evening)
if (bugs.exist()) await debug(day.night)
} catch (life) {
coffee.refill()
continue
}
}