Settings

Theme

Ask HN: How do you learn Rust in 2023?

32 points by estebandalelr 2 years ago · 18 comments · 1 min read


I will probably lean a lot on ChatGPT, but there has to be something better, hopefully free.

thatxliner 2 years ago

A good resource for learning ownership, borrowing, references and all that jazz: https://rust-unofficial.github.io/too-many-lists/

  • qup 2 years ago

    Thanks. I've been learning rust and haven't run across this yet.

roland35 2 years ago

I found that the oriely book "Programming in Rust" to be very thorough and helpful for me. It helped me really understand the concepts of Rust. Although the free rust documentation is fantastic too!

https://www.oreilly.com/library/view/programming-rust-2nd/97...

owenpalmer 2 years ago

Read the Rust Book. Rust is not like other languages, you need to understand the fundamentals before staring a project, otherwise you will get frustrated.

  • zerr 2 years ago

    Same with C++. Even C++98/03 becomes beautiful after reading TC++PL.

jamestimmins 2 years ago

I have found ChatGPT to be most useful as a way of explaining tricky code examples in Rust.

So while going through Rust by Example, I'll paste programs into ChatGPT and have a conversation with it about how specific pieces work. I've also done LeetCode problems and then asked ChatGPT for feedback about my approach.

bombardier123 2 years ago

Edited for grammar and format Read the 'Rust Book' as others suggested. Make small programs.

- Result and Option ( if let, match etc)

- understand references / mutable references

- ownership and borrowing.

- traits.

- learn generics

- Box, RC, Refcell,

- threads with Arc/ Mutexes.

- std::sync - channels(tx, rx)

- tokio (if you want to get better at an async runtime)

- take up an open source project and do it rust

estebandalelrOP 2 years ago

Thanks! I am looking at The Book (https://doc.rust-lang.org/book/), but hoped there was an amazing person on youtube.

Yeah, I'll build something, finally trying webassembly.

seg_lol 2 years ago

Create a Rust program that writes a PPM file to stdout of a shape you want to draw.

Ask ChatGPT to give you example programs you need to implement based on part of rust you want to learn.

dhux 2 years ago

First read the rust book.. And write your own tiny program.

duped 2 years ago

ChatGPT frequently gives out incorrect code, I suggest you start with "the Book" and then work on some projects, like any other language.

mortallywounded 2 years ago

Probably the same way you learned it in 2018-2022. By using it to build small projects and progressively get larger.

skeptrune 2 years ago

Build something. I think making an actix-web REST API is a great place to start

Mrirazak1 2 years ago

Have you tried freecodecamp? Idk if they do it but it’s a suggestion.

mortylen 2 years ago

First, quickly go through all the documentation. Then start writing whatever comes to mind. And if you don't understand something, go back to the documentation. For me, that's the best way to learn.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection