Summary: Computers weren't designed to have outside concepts, such as units of length, expressed in their function.
Because of this Rust, being a systems language, also has no concept of it.
But just because the computer runtime has no concept of length o... (more…)
Read more »
Web Assembly Demo with Rust and JavaScript. Contribute to hsnice16/hello-wasm development by creating an account on GitHub. (more…)
Read more »
This is a day long course to quickly learn the inner working of hypervisors and techniques to write them for high-performance fuzzing. (more…)
Read more »
The Result type is the de facto way of handling errors in Rust, and it is clever; maybe too clever. I will explain Result in plain English. (more…)
Read more »
Proptest is a property testing framework (i.e., the QuickCheck family)
inspired by the Hypothesis framework for
Python. It allows to test that certain properties of your code hold for
arbitrary inputs, and if a failure is found, automatically finds the
mi... (more…)
Read more »