Ask HN: Recommended Rust Resources?
Couple days ago I started learning rust and I am amazed how helpful the compiler is, and how well-documented the packages are.
Do you guys know any resources that you find crucial to learn for starters? I've found the following helpful but im curious for more..
- https://doc.rust-lang.org/book/
- https://cheats.rs/
- https://fasterthanli.me/
14 comments
[ 6.3 ms ] story [ 62.3 ms ] threadhttps://doc.rust-lang.org/rust-by-example
Why did you post https://cheat.rs/ ? Links to a spam page.
I wrote it from my notebook sorry for the errors.
https://rust-unofficial.github.io/too-many-lists/
https://rust-unofficial.github.io/patterns/
https://nnethercote.github.io/perf-book/
https://doc.rust-lang.org/nomicon/
https://tokio.rs/tokio/tutorial
https://doc.rust-lang.org/reference/
https://doc.rust-lang.org/nomicon/
Documentation aimed at beginners often assumes a lack of prior programming experience, which is useful if you are (for example) a high-school student learning about pointers and abstraction but IMO not a good use of time for most people posting on Hacker News.
The Rust reference manual is well-written and comprehensive for basic Rust, and the Rustonomicon has often answered my questions about more advanced topics (FFI, concurrency).
https://www.manning.com/books/rust-web-development
https://www.zero2prod.com/
https://github.com/rust-unofficial/awesome-rust
If you're into backend web development, take a look at "Zero to Production" in Rust for an applied, hands-on approach to building a server.
I really like rustlings.