Tag: rust
-

fini, an interactive cli task manager
I’ve done it; as with every programmer into the depths of time… I’ve written yet another “to do list” program. Task managers or “to do list” programs are so ubiquitous as to be cliché at this point. It’s a classic coding exercise for learning a language to write one as it is probably the simplest…
-

Elegant error handling in Rust
I’m slowly becoming more proficient working in the Rust language. I’ve now made my third tool, a command-line task manager called fini, and I’m starting to see the patterns that work well. One of them that I really like is how Rust provides convenient ways to handle errors. I think that other languages could really…
-

Rust and Grepdef 3.0
As part of my summer vacation from work this year, I decided to learn Rust, a programming language that’s been gaining a lot of popularity recently. After using it for a few months I can see why. Rust is a systems-level language designed for things that need to be very efficient and fast. It’s designed…