Live data from Hacker News

One Million Checkboxes

onemillioncheckboxes.com

31–40 of 320 posts

Re: One Million Checkboxes

#32

Scrolled down randomly, found a swastika, clicked back.

Honestly that was one of my first thoughts when I saw this, someone is going to draw one of those. People love trying to be offensive in something that barely allows communication. I remember seeing some MMORPG that had no chat where players would log in and just stand in the shape of a swastika.

Makes me wonder if it's reasonable to write an algorithm to detect that.

Re: One Million Checkboxes

#34
post #8

(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

#37
> I don’t really know. The idea came up in a conversation last Friday and I felt compelled to make it.

That's probably one of these reasons that cross your mind to justify buying new domains. Which is an addiction to some folks (including me)

Re: One Million Checkboxes

#38
Tried and seems to work.

async function main(){ let elems = Array.from(document.querySelectorAll("#root > div > div.grid > div input")).filter(v=>!v.checked) for(let ee of elems){ await (new Promise(resolve => setTimeout(() => { resolve() }, 500))) ee.click() } }

main()

Post reply on HN