Hecto: Build your own text editor in Rust

This is a series of blog posts that shows you how to
build a text editor in Rust. It’s a re-implementation of
kilo in Rust, as outlined in this fantastic
tutorial. Same as the
original booklet, these blog posts guide you through all the steps to build a
b… Read more

Similar

Singletons (in Rust)

Singletons are generally not easy to implement safely in any programming language, especially in a multithreaded environment. However Rust’s emphasis on (possibly guaranteed) on memory and concurrency safety sprinkled with some additional language constr... (more…)

Read more »

Building Realtime APIs in Rust

I’ve been working recently on Backtalk, a little toy Rust framework for building realtime APIs. Let’s say you’re building a hot new tech startup — Facebook for Cats. You’re going to need a web server to track all these cats. Let’s build one quickly using ... (more…)

Read more »