Hacker News new | ask | show | jobs
Pick a number between 0 and infinity (randomhumanslab.com)
3 points by vmax1 1144 days ago
2 comments

Original idea from David Chalmers: https://consc.net/notes/pick-a-number.html
This thing is easy to overflow, consider either represent numbers as strings or ask to pick a number between 0 and FLOAT64_MAX.
Good idea, thanks!