Live data from Hacker News

I built a website where you can pop confettis for no reason

poptheconfetti.website

1–10 of 44 posts

Re: I built a website where you can pop confettis for no reason

#9
For those who want to experiment with different click speed values without clicking, web console code that clicks twice with a set timeout:

    setTimeout(() => document.getElementsByTagName('button')[0].click(), 1000); setTimeout(() => document.getElementsByTagName('button')[0].click(), 1200);
For those who want to test the limits of your device and your neighbors (100 clicks at once, 1s from now):

    for (var i = 0; i  document.getElementsByTagName('button')[0].click(), 1000);}
Post reply on HN