Fun Stuff Small tools for deciding things

Small tools for deciding things

Little tools that make a choice for you, split a group up, or put a list in a random order. Each one runs in your browser and nothing is uploaded.

Why these are fair

Most random pickers on the web use Math.random() and take whatever segment the animation happens to stop on. That makes the easing curve part of the draw. These tools decide the result first, using the browser's cryptographic random number generator with the biased tail rejected, and then animate to the answer that was already chosen. The spin is presentation, not the decision.

That difference does not matter when you are picking who makes the coffee. It matters a great deal when there is a prize on the wheel, and it costs nothing to get right.