Learning a new programming language is like building muscle - sporadic gym visits won't get you far. After years of starting and abandoning Rust, I finally found a learning approach that sticks: hands-on projects that force you to write real code. This post traces my journey from tutorial hell to actually building things, and shares what worked (and what didn't) in hopes of helping others avoid the same pitfalls.
Why?
I always wanted to learn Rust, with several false starts along the way. The appeal is clear - Rust consistently ranks as the most loved programming language in Stack Overflow's annual developer survey for the past 8 years. It promises memory safety without garbage collection, fearless concurrency, and zero-cost abstractions.
Modern programming languages require robust tools, and Rust delivers with its strict compiler, excellent tooling, and growing ecosystem. As a Python developer, Rust offers me a way to write performant, safe code without sacrificing productivity.
Previous Learning Attempts
My Rust journey has been a series of starts and stops:
Pre-1.0 (2014): A brief experiment that ended quickly after writing a few basic functions. The borrow checker won that round.
2020: My wife gifted me "The Rust Programming Language" book after overhearing my interest in Rust podcasts (particularly Rustacean Station). Finished the book and completed various small contained code examples but it was never put in to practice and started to fade.
2023: Two slightly more serious attempts:
- Explored Rust + Kafka integration for a potential work proposal
- Started on Zero to Production in Rust in October, though as I followed along with the book I was also re-implementing it in Axum instead of Actix Web which the book uses. This was an improvement as the topic of the book aligned nicely with my day job as a Backend focussed engineer but I found I was learning more about Axum than making strides with my Rust fundamentals.
Late 2023: Returned to coding with Advent of Code. While this got me writing Rust daily for a few weeks, I ended up spending more time on AoC problem-solving patterns than Rust idioms.
2024: Started preparing for another AoC attempt starting with some prep in November, more focused this time but still searching for a better learning approach.
Project based learning
It was around this time when trying to form the habit of writing Rust with the aim of working through AoC2024 that I came across the suggestion of PNGme in a response to a similar request for guidance from someone learning Rust in r/rust
PNGme
PNGme bills itself as "An Intermediate Rust Project". It comprises a series of chapters each with a clear goal to build some functionality that will eventually evolve into a CLI tool for reading PNG files and then embedding or reading secret messages stored within. Almost as important as the guidance are the suite of tests to verify each chapter as you go.
My work on this has expanded as the simple library has become a test bed to experiment with other parts of the Rust ecosystem such as:
- Python to Rust binding with pyO3 by building a PNGme python library from the Rust library.
- Experimenting with GUI toolkit eframe using egui by building a GUI interface for PNGme.
- A html frontend for PNGme using Maud and Axum.
- Splitting a codebase into various crates in a single workspace.
Programming Projects for Advanced Beginners
Upon finishing up PNGme the author gives some suggestions of other projects based learning resources. One was Programming Projects for Advanced Beginners, a blog series by Robert Heaton which consist of prompts for small self-contained projects and some guidance on how you might approach and structure solving them.
This led nicely into experimenting with ratatui a library designed to help you to build Text User Interfaces (TUIs) resulting in:
- gridlife: A library and TUI CLI for simulating Conway's Game of Life automatons. This was a classic case of "the interest is smaller than you think". A ratatui maintainer, Orhun Parmaksız, requested changes to my repo for use in a project of theirs. The reason I had used ratatui in the first place was due to watching a talk Orhun gave at EuroRust. This also gave me the nudge I needed to publish the library to crates.io.
- A unfinished snake game.
CodeCrafters
After PNGme's success, I discovered CodeCrafters through Jon Gjengset's videos. The platform offers hands-on projects where you build clones of real-world tools: Git, Redis, Docker, and more. Each project breaks down into small, testable steps with clear feedback.
What sets CodeCrafters apart is its focus on real-world implementations rather than toy problems. Building a BitTorrent client or Redis server forces you to understand both Rust and the underlying protocols. The automated tests provide immediate feedback, while the step-by-step progression keeps you motivated.
The projects I worked on via CodeCrafters are:
- loxide - An implementation of an interpreter for the Lox language by Robert Nystrom from his excellent (and free) book Crafting Interpreter. This has given me a new appreciation for my 4 years studying Computer Science, with some regret that my early roles as a software engineer didn't force me to make better use of what I learned before it started to atrophy.
- rsh - A POSIX shell implementation that gave me a small peek behind the curtain to the complexity within the humble shell.
The real value of CodeCrafters is its focus on production-grade tools rather than toy problems. Building an interpreter forces you to understand Rust, lexing, parsing, and evaluation. Automated tests provide instant feedback, maintaining momentum.
Conclusion and Next Steps
Looking back on the last 3-4 months I am frankly shocked by how productive I have been, in that span of time I have done more development work for my own pleasure than I had in the nearly 10 years preceding it.
- Clear end goals keep you motivated
- Real-world projects force you to write idiomatic code
- Test suites provide immediate feedback
- Building actual tools is more engaging than solving puzzles
Next steps:
- Complete the Lox Interpreter from CodeCrafters, and hopefully continue onto just following the book. As the CodeCrafters Interpreter project is not complete and stops after implementing functions.
- Contribute to some OSS project in the Rust ecosystem.
- Build a non-trivial web service in Axum.