One Million Checkboxes
101–110 of 320 posts
Re: One Million Checkboxes
#102Earlier quoted context omitted.
it's a tiny flask server, a bitset stored in redis, updates broadcast (too frequently! but i don't want to change it now) via websockets, and react-window to only render the checkboxes that are in view. I'll do a writeup when i finish putting out fires!
Fun challenge: userscript to make an animated fire out of checkboxes
Re: One Million Checkboxes
#103Scrolled 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.
I very quickly realized I needed some manual content moderation because some people immediately started sharing patterns that looked like dicks and swastikas lol
Re: One Million Checkboxes
#104Re: One Million Checkboxes
#105Re: One Million Checkboxes
#106tried doing: ``` $$('input[type=checkbox]').forEach(elt => elt.click()); ``` and got an alert that said "CHILL LOL". fun site
document.querySelectorAll("input[type=checkbox]").forEach(i => { i.checked = false; }); seems to work for a second. no alert.