Skip to content

Instantly share code, notes, and snippets.

@Neobii
Last active June 29, 2023 23:43
Show Gist options
  • Save Neobii/d93c2db71865922c1c3c6f99e00cb383 to your computer and use it in GitHub Desktop.
Save Neobii/d93c2db71865922c1c3c6f99e00cb383 to your computer and use it in GitHub Desktop.
💩 poop!e-cookies
// poop!e-cookies
for(var i=0;i<100000;i++) {
let numPoops = Math.floor(Math.random() * 10);
let poopString = "";
for(var ii=0;ii<numPoops;ii++) {
poopString += "💩";
}
history.pushState({}, '💩', '/poop1e90/' + poopString);
await new Promise(r => setTimeout(r, 20));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment