# Trivia * RV64G is shorthand for RV64IMAFDZicsrZifence. * Use `RUSTC_BOOTSTRAP` to use unstable features on stable. * `RUSTFLAGS="-C target-cpu=native"` to make Rust go brrrrrrrrrr. * A list of all primes in Haskell: ```hs primes = 2 : [x | x <- [3,5..], all ((/= 0) . (mod x)) $ takeWhile ((<=x) . (^2)) primes] ``` * Use `RUSTDOCFLAGS='--cap-lints allow'` if someone uses `rustdoc::all` but it is too strict on your (nightly) compiler ## Todo * "Multiplayer Multi-Armed Bandit" - I came across this while looking for information on distributed consensus algorithms. No clue what it actually is though. * On a somewhat related note, if you have any info on techniques for decentralized real-time physics simulation I'd like to know.