Skip to content

Instantly share code, notes, and snippets.

@tryproxy
Last active January 27, 2025 11:23
Show Gist options
  • Select an option

  • Save tryproxy/fc8fa6843c14211d0534972d75c6dd33 to your computer and use it in GitHub Desktop.

Select an option

Save tryproxy/fc8fa6843c14211d0534972d75c6dd33 to your computer and use it in GitHub Desktop.

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"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment