The best way to learn
👋 This page was last updated ~12 years ago. Just so you know.
“The best way to learn is to just go out and make stuff, collaborate with people who are better than you at different things, and experiment.”
“That’s what I’ve found, at least. Just be around people who are awesome and learn off them. Trade ideas around and try stuff.”
“Everything I do, I’ve learned from friends, collaborators, people I look up to, and personal experiments. Just going out and trying stuff.”
— Noel Berry, aka @NoelFB
Here's another article just for you:
Getting in and out of trouble with Rust futures
I started experimenting with asynchronous Rust code back when futures 0.1
was all we had - before async/await
. I was a Rust baby then (I’m at least
a toddler now), so I quickly drowned in a sea of .and_then
, .map_err
and Either<A, B>
.
But that’s all in the past! I guess!
Now everything is fine, and things go smoothly. For the most part. But even
with async/await
, there are still some cases where the compiler diagnostics are,
just, so much.