Ausnahme gefangen: SSL certificate problem: certificate is not yet valid ๐Ÿ“Œ 58 Rust Resources Every Learner Should Know in 2023

๐Ÿ  Team IT Security News

TSecurity.de ist eine Online-Plattform, die sich auf die Bereitstellung von Informationen,alle 15 Minuten neuste Nachrichten, Bildungsressourcen und Dienstleistungen rund um das Thema IT-Sicherheit spezialisiert hat.
Ob es sich um aktuelle Nachrichten, Fachartikel, Blogbeitrรคge, Webinare, Tutorials, oder Tipps & Tricks handelt, TSecurity.de bietet seinen Nutzern einen umfassenden รœberblick รผber die wichtigsten Aspekte der IT-Sicherheit in einer sich stรคndig verรคndernden digitalen Welt.

16.12.2023 - TIP: Wer den Cookie Consent Banner akzeptiert, kann z.B. von Englisch nach Deutsch รผbersetzen, erst Englisch auswรคhlen dann wieder Deutsch!

Google Android Playstore Download Button fรผr Team IT Security



๐Ÿ“š 58 Rust Resources Every Learner Should Know in 2023


๐Ÿ’ก Newskategorie: Programmierung
๐Ÿ”— Quelle: dev.to

Exciting Announcement!

The Apollo Labs Merchandise store has been launched to support the continuity of this blog. The store includes a variety cool Rust related merchandise designs. Click HERE to check it out right now! Worldwide free shipping is being offered as part of the store launch event.

Last year, I set out to learn Rust mainly for applying it to embedded systems. Back then I also shared an aggregation of all that learning material I came across in the post "35 Rust Learning Resources Every Beginner Should Know in 2022". Ever since I haven't really stopped learning Rust as I keep working on solidifying my background. As such, I keep on looking out for new learning resources.

In this post, I will be expanding on the post from last year by adding more resources and thoughts on some paid resources that I didn't get to leverage before. As a reminder, back then, I split the resources into 6 main categories: 1) reading material, 2) practice resources, 3) youtube videos, 4) git resources, 5) cheat sheets, and 6) question forums. This year I add 3 more categories which are 7) courses, 8) podcasts, and 9) newsletters. Where relevant, I am also adding an annotation for the level of the resource whether it's beginner (๐Ÿ‘ถ), intermediate (๐Ÿ‘จ), or advanced (๐Ÿ‘ด) level.

I would like to state again that my learning journey started with the official Rust language resource known as "the book" and then I practiced mainly by doing the amazing Rustlings exercises. All other resources I mention in this post, I came across along my learning journey to clarify concepts I read in "the book" or when I got stuck in a certain rustling exercise and wanted to explore more. Lastly, when I am asked if I would do anything differently learning Rust, if anything, based on the resources at hand, I probably would have started with the quick summary resources mentioned below first and then tackled "the book". If I were to go for a paid resource, the "Beginning Rust" book would be the one.

1) Reading Material ๐Ÿ“š

Quick Summaries

1. ๐Ÿ‘ถ Tour of Rust is a step-by-step guide for the Rust programming language. It gives a nice overview of the language and allows the learner to also modify the code examples to experiment.

2. ๐Ÿ‘ถ A half-hour to learn Rust is a nice and quick summary that goes over a lot of concepts of the language with quick examples. Everything is on a single webpage page! This resource is also very useful for refreshing quickly on various concepts.

3. ๐Ÿ‘ถ A Gentle Introduction to Rust is sort of a short book that summarizes the main Rust concepts. The idea, as mentioned by the author, is to "try before you buy" to get to know enough about the language before digging into the more involved resources like "the book".

๐Ÿ†“ Free Online Books:

4. ๐Ÿ‘ถ Rust Book "The Book": This is the official book on the Rust programming language, written by the Rust development team at the Mozilla Foundation. ITs where I started and one of my absolute favorites. I find myself going back to it often as I write code in Rust.

5. ๐Ÿ‘ถ Rust By Example: Rust by example has a collection of runnable examples for the various concepts in Rust. I found it useful to refer to alongside "the book" whenever I learned a concept there.

6. ๐Ÿ‘ถ Easy Rust: This is a resource that tries to focus on using "easy English" for learning Rust for non-native speakers of English. I personally found it useful to clarify concepts along the way. The nice thing about this book also is that there is a youtube video linked in the book and associated with each chapter.

7. ๐Ÿ‘ด Rust Atomics and Locks: This book is written by the awesome Mara Bos and is available for free. As the book's name implies, it talks about Rust atomics and locks. As such, the content of this book is largely relevant for writing concurrent application code. Typically not a beginner feat, however, a must-know resource as you advance your knowledge in Rust.

8. ๐Ÿ‘ด Rust Design Patterns: If you want to get into writing more idiomatic Rust this is a good resource. This is not a book to pick up as a beginner for sure but rather when you advance in Rust. If you come from a different language, the book would also help you navigate differences in design patterns. Reading parts of this book actually helped me as I got more into reading other people's codes.

๐Ÿ’ฒ Paid In-Print Books:

I personally relied completely on the free material to learn Rust, however, the books listed here are ones I acquired later in my learning journey. Additionally, some might prefer a more tangible form of free books of which "the book" itself is also available as a hard copy here.

9. ๐Ÿ‘จ Rust in Action: I purchased a copy of this book last year. Rust in Action is a great read and offers many examples, but not one that I would recommend for a beginner. The author (Tim Mcnamara) himself also recommends the book to those already familiar with some Rust. My personal experience is that the book helped me clarify various concepts in Rust that were still unclear to me. On the flip side, deeper into the book there are some chapters that I skipped. I found those chapters more specific to particular application areas. Finally, on a side note, the author, Tim Mcnamara, also maintains a youtube channel relative to Rust listed in the video section below.

10. ๐Ÿ‘จ Programming Rust: Fast, Safe Systems Development: This book is rated as an Amazon bestseller. I got my hands on one last year as well. The book goes into a lot of detail and different ways to do the same things in Rust. I would say it is a very good type of reference book as I felt it covers every aspect of the language. I wouldn't recommend it for a beginner though, for one reason, it may be a bit overwhelming at times.

11. ๐Ÿ‘ถ Beginning Rust: From Novice to Professional: If you would like to pay for books, and you are a beginner, I would say this is the one to go for. I found this book to be one of the most digestible books teaching Rust. The nice thing about this book is that its material also ties to practice material on Educative.

12. ๐Ÿ‘ด Rust for Rustaceans: This is a popular book among advanced users and has great reviews, though one that I haven't got my hands on yet. I'm also recommending it because, the author, Jon Gjengset, has a youtube channel I absolutely love (more details in video section below).

2) Practice Material ๐Ÿ‹๏ธโ€โ™‚๏ธ

๐Ÿ†“ Free Resources

13. ๐Ÿ‘ถ Rustlings is a git project with small exercises to learn Rust. I really loved this resource as it covered each topic in "the book" and was challenging at times. I worked through the whole set of exercises and felt quite accomplished every time I got through a tough one. My favorite was figuring out how to write a function to find the factorial of a number in a single line using iterators.

14. ๐Ÿ‘ถ Exercism has a hands-on Rust learning track. I found the exercises interesting in the way they are presented. Though I found the exercises to be a bit more simplistic. This could be because I came about the resource later in my learning.

15. ๐Ÿ‘ถ Codewars allows you to do coding challenges with peers. It is really cool and helps hone your skills. I found it useful to figure out if I understood certain concepts correctly.

16. ๐Ÿ‘ถ Coding Game is a game-based learning how to code website that also supports Rust. I didn't get to delve too much into it though Coding Game has a lot of good reviews as it helps make learning fun.

17. ๐Ÿ‘ถ StackUp is a developer community that allows you to learn and also earn money for participating in our campaigns and quests.

18. ๐Ÿ‘จ๐Ÿ‘ด Advent of Code is a yearly event where you can solve small (but high-quality) programming puzzles in any language you want. It can be applied to any language that you are learning. You might find this, this, and this repo useful as well where they provide templates and solutions for prior years.

19. ๐Ÿ‘ถ๐Ÿ‘จ๐Ÿ‘ด LeetCode is a popular platform for interview prep with various levels of code problems to solve. There are also various repositories and videos for developers that solved the code problems in Rust if you get stuck.

๐Ÿ’ฒ Paid Resources

20. ๐Ÿ‘ถ Egghead.io is more project-oriented and helps developers build portfolios through projects for jobs. There are various interesting options, though one of the nice ones is a course that walks through the Rustlings exercises.

21. ๐Ÿ‘ถ Educative has several resources to learn Rust hands-on of which one ties to the Beginning Rust from Novice to Professional book.

3) YouTube Videos ๐Ÿ“น

23. ๐Ÿ‘ถ Rust Tutorial, by Doug Milford was one of my favorite resources. Doug does a great job of explaining a lot of the sticky concepts in Rust. The videos also go over different code examples and scenarios to explain.

24. ๐Ÿ‘ถ CS Honors @ Illinois was another favorite go-to channel to clarify concepts. The series of videos is based on the CS196 (now CS124) freshman course at the University of Illinois at Urbana Champaign which is run by students. The course videos are not entirely about Rust, however, for the ones that do cover Rust concepts, I found them to be extremely helpful.

25. ๐Ÿ‘ถ Lets Get Rusty is a useful channel that provides weekly videos about Rust. It has a nice playlist that goes over "the book" chapters one by one. Though I did find the videos to be fast-paced at times and struggled a bit with some of the explanations.

26. ๐Ÿ‘ถ Rust Crash Course, by Brad Traversy is a great quick tour that introduces various concepts to the absolute beginner.

27. ๐Ÿ‘ถ Ryan Levick is a former Microsoft engineer that works on Rust and has a series of videos with useful explanations for certain concepts. There is also a cool project where Ryan builds an SDK for Microsoft Flight Simulator 2020 using Rust.

28. ๐Ÿ‘จ timClicks is a channel by Tim Mcnamara that covers various topics in Rust and also offers live coding streams. Tim is also the author of the Rust in Action book mentioned earlier.

29. ๐Ÿ‘ถ Free Code Camp provides a beginner tutorial for Rust that works through a CLI application. Although somewhat useful, I didn't spend much time on this one as I struggled with the audio quality and the video was hard to view on Mobile.

30. ๐Ÿ‘ด Jon Gjengset provides a series of videos about Rust concepts, however, these videos are not really entry-level as they assume a certain level of knowledge. These videos would probably be better when you become more comfortable with Rust concepts. That being said, after I got more into Rust, this is a channel that I absolutely adore. In the videos, Jon would pick up a certain topic in Rust and tackle it from almost every angle. Watch out though, the videos can get very long! Probably nothing less than an hour per video. The longest video is at 7 hours and 20 mins long!

31. ๐Ÿ‘ถ Code to the Moon offers nice videos clarifying particular sticky concepts in Rust.

32. ๐Ÿ‘ถ Noboilerplate offers interesting fast technical videos about Rust.

33. ๐Ÿ‘ถ Dcode offers a playlist for some high-quality Rust Programming tutorials.

34. ๐Ÿ‘ถ 300 seconds of Rust provides really nice shorts of different Rust concepts. It is great if you want a quick refresher or insight into a particular concept.

35. ๐Ÿ‘ถ The dev method offers a list of Rust videos explaining particular concepts. I've found explanations to be quite clear and enjoyable to follow.

4) Git Resources ๐Ÿ’พ

36. The Rust Programming Language is where you would find most documentation and guides related to the language itself and its crates/libraries.

37. Awesome Rust is a great repo with a huge curated list of plenty with Rust code and resources. You can find complete applications in different areas that were built based on Rust.

38. Ferrous Systems is a Rust consultancy and one of the leading contributors to the Rust ecosystem. In their repos, Ferrous provides publicly all the training material (code examples and slides) in their paid private training courses. This also includes their embedded training.

39. The Algorithms Rust git repo offers code examples for many essential standard algorithms for data structures, sorting, and strings, among many others. This is a very good resource if you are trying to practice for job interviews.

5) Courses ๐Ÿ‘จโ€๐Ÿซ

40. ๐Ÿ‘ถ First Steps in Rust is a free course provided by Microsoft providing an introductory view into Rust.

41. ๐Ÿ‘ถ Rust in Motion is a paid short video course by Carol Nichols and Jake Goulding. Carol Nichols is the co-author of The Rust Programming Language book mentioned earlier. The videos provide some introductory coverage of the basic aspects of Rust.

42. ๐Ÿ‘ถ Rust Essential Training is a paid course available on LinkedIn with good reviews. It covers basic aspects of Rust essential for a beginner.

6) Cheat Sheets ๐Ÿ“ƒ

There are various options, just pick what suits you most

43. The Rust language cheat sheet

44. Rust beginner cheat sheet

45. Rust cheat sheet

46. Let's get rusty cheat sheet which you'd have to sign up for a newsletter here to get.

7) Question Forums ๐Ÿ™‹โ€โ™‚๏ธ

Asking Questions is obviously a crucial part of learning. What made it better is how helpful and friendly Rustaceans are. Also for the resources listed below, the awesome part was that you get your questions answered really quick (almost immediately most of the time).

47. The Rust Programming Language Discord

48. The Rust Programming Language Community Discord

49. The Rust Programming Language Subreddit

50. There is the Rust Language Forum which I personally didn't leverage at all as I found what I need in the previous.

8) Podcasts ๐Ÿ“ป

The following are some useful podcasts that I came across over time that discuss Rust concepts and interesting topics.

51. New Rustacean

52. Rustacean Station

53. Building with Rust

54. Rust Game Dev

9) Newsletters ๐Ÿ“ฐ

To stay informed with everything Rust, these are some newsletters that would be beneficial to subscribe to. The newsletters provide an aggregation every week of everything going around relative to Rust.

55. Awesome Rust Weekly

56. This week in Rust

57. Rust Weekly

58. Rust in Blockchain

Conclusion

Learning Rust is no easy feat, as such leveraging as many resources as possible becomes necessary to assert acquired knowledge. In my journey, I've come across many resources that I found useful and summarized in this post. I hope that learners can find it useful. What was your experience like? What were your favorite Rust learning resources? Share your thoughts in the comments ๐Ÿ‘‡.

...



๐Ÿ“Œ 58 Rust Resources Every Learner Should Know in 2023


๐Ÿ“ˆ 72.63 Punkte

๐Ÿ“Œ 20 Github repositories every developer should bookmark(high value resources)


๐Ÿ“ˆ 27.48 Punkte

๐Ÿ“Œ 10 Tools and Technologies Every Developer Should Know About in 2023โš’๏ธ.


๐Ÿ“ˆ 26.47 Punkte

๐Ÿ“Œ Watson Proves a Fast Learner in Cybersecurity Test Run


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ Oracle iLearning 6.2 Learner Pages privilege escalation


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ Oracle iLearning 6.2 Learner Administration privilege escalation


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ Oracle iLearning 6.1/6.2 Learner Administration privilege escalation


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ Oracle iLearning 5.2.1/6.0 Learner Pages unknown vulnerability


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ Oracle iLearning 6.0 Learner Pages unknown vulnerability [CVE-2014-0389]


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ CVE-2016-0508 | Oracle iLearning 6.0/6.1 Learner Administration unknown vulnerability (SBV-55868 / ID 1034717)


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ CVE-2022-31553 | rainsoupah sleep-learner up to 2021-02-21 send_file path traversal (ID 669)


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ Stuck at Beginner/Intermediate Learner


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ Beginner programer self learner // Rainmeter


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ Cybersecurity Education and Workforce Development: Employer-Driven and Learner-Centered


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ KnowBe4 Launches New Mobile Learner App for Cybersecurity Learning


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ UL2 20B: An Open Source Unified Language Learner


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ Meet Cheryl Murphy: Full-Stack Developer, lifelong learner, and volunteer Project Team Lead at Web Dev Path


๐Ÿ“ˆ 25.67 Punkte

๐Ÿ“Œ 5 Resources Each TypeScript Developer Should Know About


๐Ÿ“ˆ 24.99 Punkte

๐Ÿ“Œ Learn what every PC game dev should know about Windows 10


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ Learn what every PC game dev should know about Windows 10


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ What Every Millennial Should Know About Phone Scams


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ 13 Basic Linux Commands Every Beginner should know


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ Top Time-Saving Tips Every Linux User Should Know


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ O'Reilly Site Lists 165 Things Every Programmer Should Know


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ Top 5 Windows and Microsoft Store Trends Every Developer Should Know


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ 20 Linux command every SysAdmin should know


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ Five Azure services every developer should know


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ What Every Programmer Should Know About Memory - Ulrich Drepper


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ Top 5 Monitoring Tools Every System Administrators Should Know


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ Top 5 Monitoring Tools Every System Administrators Should Know


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ GPN19 - What every programmer should know about inline assembler


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ What every Visual Studio Code user should know about GitHub | BOD116


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ Security In 5: Episode 412 - Top Things Every Programmer Should Know


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ Tools, tips, tricks and apps every new PC gamer should know


๐Ÿ“ˆ 23.44 Punkte

๐Ÿ“Œ Tools, tips, tricks and apps every new PC gamer should know


๐Ÿ“ˆ 23.44 Punkte











matomo