• 3 Posts
  • 320 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle
  • Always cargo shorts or pants (depending on weather):

    • Phone in upper left pocket (galaxy s22)
    • wallet and keys in lower right pocket
    • ear buds in lower left pocket (soundcore space a40)
    • I find it surprisingly uncomfortable to keep anything in my upper right pocket

    Galaxy Watch 4

    my backpack (if occasion requires):

    • Laptop (Thinkpad X1 Carbon 6)
    • A jacket or sweatshirt
    • A tech bag (USB-C cable, wireless cavle for my watch, magic anker wall charger)

    …and that’s about it

















  • I just started writing a programming language! I’m using pest for the grammar/lexing, which makes if super easy. I built my ast using enums and structs, which makes me appreciate Rust even more. I also am coming to love the way rust handles errors. For example, when there’s an error converting from pest -> ast, it feeds all of the error into into my error type, which is so much easier to handle than making it panic out of the function