/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

educatedguesswork.org
| | borretti.me
2.0 parsecs away

Travel
| | A survey of type systems for memory safety.
| | www.integralist.co.uk
1.7 parsecs away

Travel
| | I've been learning Rust recently. This will probably be my third (lazy) attempt to learn the language. The reason I've failed previously is simply because I had no reason to learn it. Other than the memory safety aspects, which I like a lot, I don't actually like the design of the language at all (but that's a conversation for another day). This time around I want to learn the language as it's pertinent to my job.
| | blog.skylight.io
3.1 parsecs away

Travel
| | One of the coolest features of Rust is how it automatically manages resources for you, while still guaranteeing both safety (no segfaults) and high performance. Because Rust is a different kind of programming language, it might be difficult to understand what I mean, so let me be perfectly clear: * In
| | ricardomartins.cc
12.6 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.