Quotebook by Tom Reeves
M L U P D E S S A B Q T A D T T G E N T I N W R M L U P
A friend's eye is a good mirror.
594
Total Quotes
352
Authors
39
Sources
457
Short

Nerdy aside: the “Random” button relies on a tiny chaos machine called Fisher–Yates. It walks the array from the end to the start, swapping each element with a random earlier one. Why it works (ELI5): imagine shuffling a deck by pulling a random card to the top over and over—every card gets an equal chance to land anywhere. It’s O(n), perfectly uniform, and very happy inside a browser.