Comment by nick238
3 days ago
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') } })"
No comments yet
Contribute on Hacker News ↗