This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @::sfh55667frandom | |
| @set masver=3.9 | |
| @setlocal DisableDelayedExpansion | |
| @echo off | |
| :: For command line switches, check mass{}grave{dot}dev/command_line_switches | |
| :: If you want to better understand script, read from separate files version. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // to copy and paste in your browser console after successfully loading https://onemillioncheckboxes.com/ | |
| let currentPosition; | |
| function getRandomInt(min, max) { | |
| return Math.floor(Math.random() * (max - min + 1)) + min; | |
| } | |
| function getUncheckedCheckbox() { | |
| const uncheckedCheckboxes = document.querySelectorAll('input[type=checkbox]:not(:checked)'); |