Becoming Rustacean: Resources to Learn Rust Programming
1–10 of 48 posts
Re: Becoming Rustacean: Resources to Learn Rust Programming
#2Re: Becoming Rustacean: Resources to Learn Rust Programming
#3I really like the speed of rust. It’s very difficult to learn it though
There are three points here:
- Rust lends itself to certain structures (that you might not be used to) and makes others very harder to pull off (that you might be used to). The trick is not try to do the latter when the former is perfectly fine. E.g. me trying to do object oriented programming in Rust, or starting off with a linked list as a C programmer
- Rust can be written on different levels. For example you can go for "perfect" code in terms of performance and dive into things deep or you can just not bother at all and do the totally naive thing and still end up with quite fast programs most of the time
- Rust has a type system that it strictly enforces. This makes some things harder, others simpler. Make sure to be aware what you can do with a type system and why it can be a good thing to have one.
Re: Becoming Rustacean: Resources to Learn Rust Programming
#4Re: Becoming Rustacean: Resources to Learn Rust Programming
#5Re: Becoming Rustacean: Resources to Learn Rust Programming
#6I really like the speed of rust. It’s very difficult to learn it though
This is similar to the psychological trick of how an obese person, to make himself/herself feel better, stands next to an even more obese person :)
Re: Becoming Rustacean: Resources to Learn Rust Programming
#7I really like the speed of rust. It’s very difficult to learn it though
(*) https://pixeldroid.com/jailang/overview/Features/Factorabili...
(**) https://www.gingerbill.org/article/2018/03/12/on-the-aesthet...*
Re: Becoming Rustacean: Resources to Learn Rust Programming
#8Re: Becoming Rustacean: Resources to Learn Rust Programming
#9i think interactive tutorial works best for absolute beginners, it'd be great if anyone can provide link to the sources.
Re: Becoming Rustacean: Resources to Learn Rust Programming
#10I really like the speed of rust. It’s very difficult to learn it though