(Distributed systems, storage engines, cloud)
I’ve used Rust for quite a few years, even before 1.0. There were rough times where compilation would break between nightlies. Now the language and compiler seem far more predictable and stable.
I’ve used Rust for quite a few years, even before 1.0. There were rough times where compilation would break between nightlies. Now the language and compiler seem far more predictable and stable.
It turns out, type systems are pretty useful. I prototyped a new script that one would likely reach for python (“data analysis”) and found Rust to be a way better fit because of compile time type checking
It turns out, type systems are pretty useful. I prototyped a new script that one would likely reach for python (“data analysis”) and found Rust to be a way better fit because of compile time type checking
I’ve done a little JavaScript and know that the NPM registry can be… sketchy at times. You have to know what you’re pulling down. I worry this is going to be a pain for the Rust ecosystem
I’ve done a little JavaScript and know that the NPM registry can be… sketchy at times. You have to know what you’re pulling down. I worry this is going to be a pain for the Rust ecosystem
Even after about a year away, I find myself writing easy-to-read code that doesn’t feel like it’s littered with lifetimes or clones. Or maybe I’m just better at Rust now 🤷
Even after about a year away, I find myself writing easy-to-read code that doesn’t feel like it’s littered with lifetimes or clones. Or maybe I’m just better at Rust now 🤷
Async traits, impl Trait, and a mature library ecosystem are some really big improvements. I used Futures back in the day when I had to hand roll these things… those days are likely behind me :)
Async traits, impl Trait, and a mature library ecosystem are some really big improvements. I used Futures back in the day when I had to hand roll these things… those days are likely behind me :)