Diving into Rust with a CLI

A blog post titled, “Diving into Go by Building a CLI Application” has been
making it’s rounds of the internet. It uses a small XKCD downloader as the
subject. I thought was small and self contained enough, that it’d be
interesting to see the same exam… Read more

Similar

Exploring Dynamic Dispatch in Rust

Let me preface this by saying that I am a novice in the world of rust (though I'm liking things so far!), so if I make technical mistakes please let me know and I will try to correct them. With that out of the way, lets get started. My real... (more…)

Read more »

Making Rust as Fast as Go

Go is garbage collected, rust is not. That means rust is faster than go, right? No! Not always. Let’s take an example that I stumbled across while playing around with an algorithm that calculates Levenshtein edit distances. I wanted to compare the perform... (more…)

Read more »