One Million Checkboxes
261–270 of 320 posts
Re: One Million Checkboxes
#262(developer here) this is....more popular than i expected. the server's gonna be having some problems for a while
I think there's a severe problem with this implementation. By using wrapping, I can't write "boobs" and have everyone else read my graffiti without them having having the same zoom wrapping point.
Re: One Million Checkboxes
#263Earlier quoted context omitted.
I made https://shru.gg/r for this reason
I added a Mac keyboard shortcut, so anywhere I type "shrg" it expands to ‾\_(ツ)_/‾ If I need an escaped version, that's "shrgg": ‾\\\_(ツ)\_/‾
`std::shared_ptr shrg = ...` or similar?
Re: One Million Checkboxes
#264Re: One Million Checkboxes
#265Earlier quoted context omitted.
Is it ok if I try to write a script to uncheck all the boxes? I don’t want to spam your server and ruin it for everyone if there’s no rate limiting. (I wince mentioning this publicly; still have flashback trauma from when some HNer wrote a script to download as much data as possible from our Firebase and got a $1k bill overnight.)
Hi! Sorry it took me a bit to get to this, I've been hacking to keep the server up for the last several hours. Lots of people are botting, I don't think there's anything wrong if you bot too. There's a tiny bit of client-side rate limiting and originally i had server side rate limiting too, but I got rid of that a while ago (I was cutting anything I could to speed things up).
Re: One Million Checkboxes
#266Re: One Million Checkboxes
#267(developer here) this is....more popular than i expected. the server's gonna be having some problems for a while
You announced it on the FediVerse, where it has already been boosted almost 700 times as I write this 4 hours later, and it spread to Reddit within 2 hours of that, as you know because you replied to the Reddit post. There is definitely going to be an initial spike of activity, given those. (-:
Re: One Million Checkboxes
#268function clickTickedCheckboxes() { // Find all checked checkboxes const checkedBoxes = document.querySelectorAll('input[type="checkbox"]:checked');
// Iterate through each checked checkbox
checkedBoxes.forEach((checkbox, index) => {
// Use setTimeout to add a delay between clicks
setTimeout(() => {
// Click the checkbox
checkbox.click();
// If this is the last checkbox, call the function again after 2 seconds
if (index === checkedBoxes.length - 1) {
setTimeout(clickTickedCheckboxes, 2000);
}
}, index * 2000); // 2000ms (2 seconds) delay between each click
});
}// Start the process clickTickedCheckboxes();
Re: One Million Checkboxes
#269Re: One Million Checkboxes
#270(developer here) this is....more popular than i expected. the server's gonna be having some problems for a while
Is it ok if I try to write a script to uncheck all the boxes? I don’t want to spam your server and ruin it for everyone if there’s no rate limiting. (I wince mentioning this publicly; still have flashback trauma from when some HNer wrote a script to download as much data as possible from our Firebase and got a $1k bill overnight.)