(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.
One Million Checkboxes
131–140 of 320 posts
Re: One Million Checkboxes
#132Re: One Million Checkboxes
#133(developer here) this is....more popular than i expected. the server's gonna be having some problems for a while
we know what's important here on hn
Re: One Million Checkboxes
#134Re: One Million Checkboxes
#135Re: One Million Checkboxes
#136Re: One Million Checkboxes
#137Re: One Million Checkboxes
#138At first I was clicking the top but people kept unchecking my stuff. Why can't we (we ? who's that we ?) all get along toward clicking them all ? So I figured there would be less people fighting down the window, right ? For a while I was alone. It was a boring and meaningless job but it felt peaceful. Then I met someone who's also checking boxes, 5 seconds top, they are gone. Okay, then I kept scrolling, checking box…
Re: One Million Checkboxes
#139Re: One Million Checkboxes
#140// ==UserScript== // @name Check All Unchecked Checkboxes // @namespace http://tampermonkey.net/ // @version 1.0 // @description Check all unchecked checkboxes on the page // @author MechanicalFish // @match https://onemillioncheckboxes.com/ * // @grant none // ==/UserScript== (function() { 'use strict'; function checkAllCheckboxes() { var checkboxes = document.querySelectorAll('input[type="checkbox"]'); checkboxes.f…
Edit: or just call querySelector('input[type="checkbox"]:not(:checked)') and do them one by one in some kinda while(true) loop