Created
December 31, 2024 15:20
-
-
Save davila7/0150380aeb24a697c27c32a44052d800 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 🖥️ 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..."); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
lol