5 ms·
A snappy "guess the flag" game with no trackers etc.
- dabacaba 2y agoMinor issue: sometimes several "countries" (not actually countries, but dependent territories) have the same flag, but the game only accepts one answer as valid.
- mxxc 2y agothat's my favourite feature :)
- mtmail 2y agoSolver: window.setInterval(() => { var g=currentFlag.commonName; checkGuess(g); document.getElementById('search-input').value = g;}, 600);
- codingdave 2y agoNice, but I wrote one 10x as fast: window.setInterval(() => { var g=currentFlag.commonName; checkGuess(g); document.getElementById('search-input').value = g;}, 60); /s