rust
ALL TAGS
Deriving Deserialize on Structs as Arrays
Was watching Decrusted: Serde and found out when you derive #[serde(Deserialize, Serialize)] it can be to an array as opposed to a mapping of some key:value. This is especially hel...
til
rust
impl anyhow Errors into Axum Responses
Been playing around with reimplementing this site using axum and maud, using incremental static generation. Took my eyes awhile to see the axum example of how to convert anyhow err...
til
rust
Wasming a Rust Package for Fun
Whilst getting interested in Library.JSON and building my own library, one of the issues I continually run into is slight variations between slugifying in javascript and rust (whic...
dev
rust
web-assembly
Iterator Chaining
Trying out Simon Willison's suggestion about what to blog about. This Reddit Comment TIL, chaining iterators in rust doesn't mean that each operation happens on the entire list in ...
til
rust
Recipe Grabber
Keeping track of things you find on the internet is hard. Every service either wants to be the service for everything on the web and does a poor job displaying/indexing the content...
dev
rust
web-assembly
Readability
What do you do when you want to keep online content that's password protected, offline? For the past year or two, A shortcut to add to iA Writer worked fantastically! Except that a...
dev
rust
Parsing Northeastern's Graduation Audit
See the full example here Northeastern's graduation audit software is unattractive, unintuitive, and annoying. I've had to use it on and off for over 4 years and each time I hav...
dev
rust
Bashdoc - Parsing with Nom
Part 3 of the unintended Bashdoc series. Since October, my interest in rust has gone from curiosity to "what can I make next in Rust." One of the things I'd discovered ...
dev
rust
Bashdoc - Round 2
When I make something like bashdoc, once the idea and way to make it happen is in my head, I work on it over and over again until it's done. And when it's something like bashdoc wh...
dev
rust
Bashdoc - Round 1
I believe there is a moment where all developers discover how powerful and efficient mastering the command line is. When using Finder or actually clicking on things or moving the m...
dev
rust
Building a Mini Shell in Rust
Disclaimer: I'm sure there is a much more elegant way to do this. There are 4 parts to a shell: Read Evaluate Print Loop (REPL) for short. A recent assignment for one of my cla...
dev
rust
Cancel