Earlier this year, DeisLabs released Krustlet, a project to implement Kubelet
in Rust. 1 2 Kubelet is the component of Kubernetes that
runs on each node which is assigned Pods by the control plane and runs them on
its node. Krustlet defines a flexible API... (more…)
Read more »
As of stable Rust 1.39.0, it is possible to
implement a very basic and safe
coroutine library using Rust's
async/await support, and
in under 100 lines of code. The implementation depends solely on std and is
stack-less (meaning, not depending on an separ... (more…)
Read more »
What are the pros and cons of using Rust for production applications? Find out in our interview with Benjamin Chastanier, a senior software engineer at Qovery. (more…)
Read more »
In Python there is a thing called a context manager. It looks like this: with open('file.txt') as f: # setup code runs here print f.read() # teardown code runs here do_other_thing(f) # error: f is not bound here Inside the indented block t... (more…)
Read more »
The book “Writing Secure Code, 2nd Edition” written by David LeBlanc and Michael Howard, published by Microsoft Press in 2002, was once required reading at Microsoft, following Bill Gat… (more…)
Read more »