Notes

Synopsis

Notes + cheatsheet for all kinds of things

Rust

  • update compiler rustup update stable
  • create new project cargo init

For loops

  • classic for loop (excluding upper bound)
for i in 1..n
  • for loop (including upper bound, note the = before the upper bound)
for i in 1..=n

AI image generation

  • www.bing.com/images/create (requires Microsoft login)
  • stable diffusion (locally, dysfunctional as of 2025-12-20)

51 Words

2025-05-04