File tree Expand file tree Collapse file tree 8 files changed +283
-15
lines changed Expand file tree Collapse file tree 8 files changed +283
-15
lines changed Original file line number Diff line number Diff line change 1
1
# Learning Rust in 2024
2
2
3
- _ 21 September 2024 · #rust · #programming · #exercises_
3
+ _ 21 September 2024 · #rust · #coding · #exercises_
4
4
5
5
** Table of contents**
6
6
- [ TL;DR] ( #tldr )
@@ -28,9 +28,9 @@ This is my opinionated guide on how to go from knowing nothing about Rust to bei
28
28
29
29
1 . Read [ A half hour to learn Rust] ( https://fasterthanli.me/articles/a-half-hour-to-learn-rust ) (30 - 60 mins)
30
30
2 . Complete [ rustlings] ( https://github.com/rust-lang/rustlings ) (2 - 3 hours)
31
- 3 . Spend 10 hours programming in Rust (8 - 12 hours)
31
+ 3 . Spend 10 hours coding in Rust (8 - 12 hours)
32
32
4 . Read [ Common Rust Lifetime Misconceptions] ( ./common-rust-lifetime-misconceptions.md ) (30 - 60 mins)
33
- 5 . Spend another 10 hours programming in Rust (8 - 12 hours)
33
+ 5 . Spend another 10 hours coding in Rust (8 - 12 hours)
34
34
6 . Read [ Tour of Rust's Standard Library Traits] ( ./tour-of-rusts-standard-library-traits.md ) (2 - 4 hours)
35
35
36
36
And that's it, after a short 19 to 30 hours you'll go from being a Rust beginner to a Rust advanced beginner 😎
@@ -287,7 +287,9 @@ This is a great article. I wasn't sure where to put it in the guide because it c
287
287
288
288
Discuss this article on
289
289
- [ Github] ( https://github.com/pretzelhammer/rust-blog/discussions/84 )
290
-
290
+ - [ official Rust users forum] ( https://users.rust-lang.org/t/learning-rust-in-2024 )
291
+ - [ learnrust subreddit] ( https://www.reddit.com/r/learnrust/comments/1fnlvd8/learning_rust_in_2024/ )
292
+ - [ rust subreddit] ( https://www.reddit.com/r/rust/comments/1fod8u9/learning_rust_in_2024/ )
291
293
292
294
293
295
## Further reading
Original file line number Diff line number Diff line change @@ -1873,5 +1873,5 @@ fn parse_socket_addr() -> SocketAddr {
1873
1873
- [ Rust 标准库特性指南] ( ./tour-of-rusts-standard-library-traits.md )
1874
1874
- [ Sizedness in Rust] ( ../../sizedness-in-rust.md )
1875
1875
- [ RESTful API in Sync & Async Rust] ( ../../restful-api-in-sync-and-async-rust.md )
1876
- - [ Rust 大佬给初学者的学习建议 ] ( ./learning-rust-in-2020.md )
1876
+ - [ 2020 年的 Rust 学习指南 ] ( ./learning-rust-in-2020.md )
1877
1877
- [ Learn Assembly with Entirely Too Many Brainfuck Compilers] ( ../../too-many-brainfuck-compilers.md )
Original file line number Diff line number Diff line change @@ -1212,7 +1212,7 @@ error[E0597]: `some_string` does not live long enough
1212
1212
## 拓展阅读
1213
1213
1214
1214
- [ Sizedness in Rust] ( ./sizedness-in-rust.md )
1215
- - [ Learning Rust in 2020 ] ( ./learning-rust-in-2020.md )
1215
+ - [ 2020 年的 Rust 学习指南 ] ( ./learning-rust-in-2020.md )
1216
1216
- [ Learn Assembly with Entirely Too Many Brainfuck Compilers] ( ./too-many-brainfuck-compilers.md )
1217
1217
1218
1218
## 译者注
Original file line number Diff line number Diff line change @@ -5,17 +5,17 @@ _2020年 5月 9日 · #rust · #programming · #exercises_
5
5
** 目录**
6
6
- [ 前言] ( #前言 )
7
7
- [ 省流] ( #省流 )
8
- - [ Rust 练习平台比较] ( #practical- rust-resource-reviews )
8
+ - [ Rust 练习平台比较] ( #rust-练习平台比较 )
9
9
- [ HackerRank] ( #hackerrank )
10
10
- [ Project Euler] ( #project-euler )
11
11
- [ LeetCode] ( #leetcode )
12
12
- [ Codewars] ( #codewars )
13
13
- [ Advent of Code] ( #advent-of-code )
14
14
- [ Rustlings] ( #rustlings )
15
15
- [ Exercism] ( #exercism )
16
- - [ 结论] ( #conclusion )
17
- - [ 讨论] ( #discuss )
18
- - [ 参阅] ( #further-reading )
16
+ - [ 结论] ( #结论 )
17
+ - [ 讨论] ( #讨论 )
18
+ - [ 参阅] ( #参阅 )
19
19
20
20
21
21
@@ -80,7 +80,7 @@ _又名:对供 Rust 初学者练习编写简单代码的免费在线资源的
80
80
支持 Rust,但大部分题目不支持 Rust 题解。
81
81
尝试提交题解,被当场拒绝:
82
82
83
- ![ 建 议 改 为: FailRank] ( ../assets/hackerrank-more-like-failrank.png )
83
+ ![ 建 议 改 为: FailRank] ( ../../../ assets/hackerrank-more-like-failrank.png )
84
84
85
85
6。可以看到别人的,但是不能上传自己的。
86
86
Google 了一圈,未能发现有用的信息,建议直接放弃。
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -5891,8 +5891,8 @@ _该漫画的创作者: [The Jenkins Comic](https://thejenkinscomic.wordpress.co
5891
5891
## 更多资料 Further Reading
5892
5892
5893
5893
- [ Sizedness in Rust] ( ../../sizedness-in-rust.md )
5894
- - [ Common Rust Lifetime Misconceptions ] ( ./common-rust-lifetime-misconceptions.md )
5895
- - [ Learning Rust in 2020 ] ( ../. ./learning-rust-in-2020.md)
5894
+ - [ Rust 中常见的有关生命周期的误解 ] ( ./common-rust-lifetime-misconceptions.md )
5895
+ - [ 2020 年的 Rust 学习指南 ] ( ./learning-rust-in-2020.md )
5896
5896
- [ Learn Assembly with Entirely Too Many Brainfuck Compilers] ( ../../too-many-brainfuck-compilers.md )
5897
5897
5898
5898
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ _作者:[stuffman](https://stuffman.tumblr.com/)_
36
36
37
37
## 参阅
38
38
39
- - [ Common Rust Lifetime Misconceptions ] ( ./../../common-rust-lifetime-misconceptions.md )
39
+ - [ Rust 中常见的有关生命周期的误解 ] ( ./../../common-rust-lifetime-misconceptions.md )
40
40
- [ Rust 标准库特性指南] ( ./tour-of-rusts-standard-library-traits.md )
41
41
- [ Sizedness in Rust] ( ./../../sizedness-in-rust.md )
42
42
- [ RESTful API in Sync & Async Rust] ( ./../../restful-api-in-sync-and-async-rust.md )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Here are my posts in reverse chronological order.
6
6
7
7
| Year | Title | Popularity | Translations |
8
8
| -| -| -| -|
9
- | 2024 | [ Learning Rust in 2024] ( ./posts/learning-rust-in-2024.md ) | ⏳ | - |
9
+ | 2024 | [ Learning Rust in 2024] ( ./posts/learning-rust-in-2024.md ) | ⏳ | [ 中文 ] ( ./posts/translations/zh-hans/learning-rust-in-2024.md ) |
10
10
| 2024 | [ Beginner's Guide to Concurrent Programming: Coding a Multithreaded Chat Server using Tokio] ( ./posts/chat-server.md ) | 🔥🔥 | [ 中文] ( ./posts/translations/zh-hans/chat-server.md ) |
11
11
| 2021 | [ RESTful API in Sync & Async Rust] ( ./posts/restful-api-in-sync-and-async-rust.md ) | 🔥 | - |
12
12
| 2021 | [ Tour of Rust's Standard Library Traits] ( ./posts/tour-of-rusts-standard-library-traits.md ) | 🔥🔥🔥 | [ 中文] ( ./posts/translations/zh-hans/tour-of-rusts-standard-library-traits.md ) |
You can’t perform that action at this time.
0 commit comments