/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

ntietz.com
| | andreabergia.com
2.1 parsecs away

Travel
| | This post is part of the Writing a JVM in Rust series. In this post, I will discuss how rjvm parses .class files. The code I will discuss today is contained in the reader crate. A warning before you read: this is the earliest part of the project and, since I have written this project to learn Rust, it is also the one that contains the least idiomatic code. Don't take this as an example of the best Rust ever written!
| | blog.sylver.dev
2.6 parsecs away

Travel
| | As we saw in the opening post, SQLite stores metadata about tables in a special "schema table" starting on page 1. We've been reading records from this table to list the tables in the current database, but before we can start evaluating SQL queries a...
| | blog.lohr.dev
2.7 parsecs away

Travel
| | A review by a Rust enthusiast
| | manishearth.github.io
25.3 parsecs away

Travel
| A colleague of mine learning Rust had an interesting type / borrow checker error. The solution needs a less-used feature of Rust (which basically ...