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:
Peeking inside a Rust enum
During a recent Rust Q&A Session on my twitch
channel, someone asked a question that
seemed simple: why are small string types, like SmartString
or SmolStr
,
the same size as String
, but small vec types, like SmallVec
, are larger
than Vec
?
Now I know I just used the adjective simple, but the truth of the matter is: to understand the question, we’re going to need a little bit of background.