i'm sold, but please add a historic or archive mode, i need more...
I pulled out the data that I could see; strangely it seems to be the 16th question but the page shows "#736"
Data as JSON: https://gist.github.com/nicktimko/fb48810b448275a4d7817e2b65...
Or if you want to download it yourself (yay for Gemini giving me a Node one-liner to parse a JS object to get JSON. Beware it uses `eval`!!!)
curl -sSL https://ripplegame.app/assets/index-B2aU9M_o.js | \ grep -E -o -p "\[\{id:1\,.+\"}]}]" | \ node -e "const vm=require('vm'); let b=''; process.stdin.on('data',d=>b+=d).on('end',()=> { try { const script=new vm.Script('('+b+')'); console.log(JSON.stringify(script.runInNewContext({}),null,2)) } catch(e) { console.error('Invalid JS') } })"
Try this: https://vladimirtech-eng.github.io/ripple-mirror/
Came here to say the same. The game tastes as too little with just one question; when you get the gist of how it works, it's over.
I pulled out the data that I could see; strangely it seems to be the 16th question but the page shows "#736"
Data as JSON: https://gist.github.com/nicktimko/fb48810b448275a4d7817e2b65...
Or if you want to download it yourself (yay for Gemini giving me a Node one-liner to parse a JS object to get JSON. Beware it uses `eval`!!!)