Project-Based Learning: The Method That Made Rust Finally Click

7 minute read Published: 2025-02-07

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:

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:

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:

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:

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.

  1. Clear end goals keep you motivated
  2. Real-world projects force you to write idiomatic code
  3. Test suites provide immediate feedback
  4. Building actual tools is more engaging than solving puzzles

Next steps: