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.- If
rust-analyzer
error tooltips are unreadable in NVIM (e.g. red text on light pink background), addau VimEnter * au VimEnter * colorscheme default
to your vimrc. - A list of all primes in Haskell:
= 2 : [x | x <- [3,5..], all ((/= 0) . (mod x)) $ takeWhile ((<=x) . (^2)) primes] primes
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.