/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

blog.vashishtha.in
| | mbuffett.com
3.9 parsecs away

Travel
| | In my last project I used Sled and Rocket. I had to piece together how to use the two from a few different places so I put together this quick guide in case it helps others. The full code for this walkthrough is availabe here, if you want to fast-forward to the finished product. A lot of this ends up being about error handling, so that using sled in endpoints is more ergonomic. If you don't care to dive into error handling, you may want to skip those sections.
| | blog.burntsushi.net
3.6 parsecs away

Travel
| | I blog mostly about my own programming projects.
| | ncona.com
3.5 parsecs away

Travel
| | Unrecoverable errors These errors are a sign that the developer made a mistake. An example of this, could be trying to access an index that is out of bounds. For example: 1 2 3 4 5 6 7 8 fn get_number() -> usize { return 5; } fn main() { let numbers = [1, 2]; println!(
| | earthly.dev
14.4 parsecs away

Travel
| Learn how to run a Ruby on Rails application inside a Docker container and discover best practices for building Docker images. This tutorial covers...