This post will be a bit all over the place.
Several months ago, I wrote Hard Mode Rust, exploring an allocation-conscious style of programming.
In the ensuing discussion, @jamii name-dropped TigerBeetle, a reliable, distributed, fast, and small database w... (more…)
Read more »
A very fast implementation of tldr in Rust. Contribute to dbrgn/tealdeer development by creating an account on GitHub. (more…)
Read more »
Some notes on things I find interesting and important. - frankmcsherry/blog... (more…)
Read more »
Rust, like C, has its own memory model describing how concurrent access to the... (more…)
Read more »
Today we are going to be talking about smart pointers and interior mutability, specifically, the Cell type. Cell is a type that you come across frequently in Rust programs that it can help to have a deeper understanding of what it is and how it works. One... (more…)
Read more »