Videos
Videos are now available on my self-hosted PeerTube instance:
If the redirect doesn’t work, please click here to go to PeerTube.
(JavaScript is required to see this. Or maybe my stuff broke)
Did you know I also make videos? Check them out on PeerTube and also YouTube!
Here's another article just for you:
Catching up with async Rust
In December 2023, a minor miracle happened: async fn in traits shipped.
As of Rust 1.39, we already had free-standing async functions:
pub async fn read_hosts () -> eyre:: Result < Vec < u8 >> {
// etc.
}
…and async functions in impl blocks:
impl HostReader {
pub async fn read_hosts ( & self ) -> eyre:: Result < Vec < u8 >>