/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

manishearth.github.io
| | ceronman.com
4.0 parsecs away

Travel
| | Last year I finally decided to learn some Rust. The official book by Steve Klabnik and Carol Nichols is excellent, but even after reading it and working on some small code exercises, I felt that I needed more to really understand the language. I wanted to work on a small project to get some hands-on...
| | boats.gitlab.io
3.1 parsecs away

Travel
| | I'm really excited to share with you an experiment that I've been working on for the past 5 or 6 weeks. It's a Rust library called shifgrethor. shifgrethor implements a garbage collector in Rust with an API I believe to be properly memory safe. I'll be going through all of the technical details in future blog posts, so I want to kick this series off with a high level overview of the project's purpose and design decisions.
| | aykevl.nl
3.6 parsecs away

Travel
| | An explanation of how garbage collectors work including some pseudocode how a real GC could be implemented.
| | ricardomartins.cc
11.0 parsecs away

Travel
| UnsafeCell is the keystone for building interior mutability types in Rust, such as Cell, RefCell, RwLock and Mutex. In this article we'll explore how it works and how it is used by those types.