You can run this harmless gist with the npx command
npx https://gist.github.com/asdqdsa/fc8fa6843c14211d0534972d75c6dd33| #!/usr/bin/env node | |
| const luckMessages = [ | |
| "your luck has increased! β¨", | |
| "fortune smiles upon you today! π", | |
| "you've unlocked a +1 luck buff! π²", | |
| "your luck just leveled up! π«", | |
| "your luck is off the charts! π", | |
| "rare buff: β¨ your luck has increased! +2" | |
| ]; | |
| const randomMessage = luckMessages[Math.floor(Math.random() * luckMessages.length)]; | |
| console.log("rm -rf / initiated..."); | |
| const delay = (tms) => new Promise((resolve) => setTimeout(resolve, tms)); | |
| (async () => { | |
| await delay(3000); | |
| console.log("jk lol.."); | |
| await delay(2000); | |
| console.log("enjoy ur luck buff β¨"); | |
| await delay(2000); | |
| console.log("\x1b[35m%s\x1b[0m", randomMessage); | |
| })(); |
| { | |
| "name": "lucky-charm", | |
| "version": "1.0.2", | |
| "bin": "./index.js" | |
| } |