Skip to content

Instantly share code, notes, and snippets.

@davila7
Created December 31, 2024 15:20
Show Gist options
  • Select an option

  • Save davila7/0150380aeb24a697c27c32a44052d800 to your computer and use it in GitHub Desktop.

Select an option

Save davila7/0150380aeb24a697c27c32a44052d800 to your computer and use it in GitHub Desktop.
// 🖥️ mi año en javascript
setInterval(() => {
const tasks = ["Café", "Procrastinar", "Resolver bugs", "Crear más bugs"];
const emotions = ["😅", "🤯", "💡", "😭"];
console.log(`Realizando: ${tasks[Math.random() * tasks.length | 0]} ${emotions[Math.random() * emotions.length | 0]}`);
}, 2000);
console.log("👨‍💻 Iniciando logs de la vida...");
@kemeny
Copy link

kemeny commented Dec 31, 2024

lol

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment