Skip to content

Commit a2ff6b0

Browse files
committed
Merge branch 'master' into iteration
2 parents 561caff + c4c7619 commit a2ff6b0

8 files changed

+283
-15
lines changed

posts/learning-rust-in-2024.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Learning Rust in 2024
22

3-
_21 September 2024 · #rust · #programming · #exercises_
3+
_21 September 2024 · #rust · #coding · #exercises_
44

55
**Table of contents**
66
- [TL;DR](#tldr)
@@ -28,9 +28,9 @@ This is my opinionated guide on how to go from knowing nothing about Rust to bei
2828

2929
1. Read [A half hour to learn Rust](https://fasterthanli.me/articles/a-half-hour-to-learn-rust) (30 - 60 mins)
3030
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)
3232
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)
3434
6. Read [Tour of Rust's Standard Library Traits](./tour-of-rusts-standard-library-traits.md) (2 - 4 hours)
3535

3636
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
287287

288288
Discuss this article on
289289
- [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/)
291293

292294

293295
## Further reading

posts/translations/zh-hans/chat-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1873,5 +1873,5 @@ fn parse_socket_addr() -> SocketAddr {
18731873
- [Rust 标准库特性指南](./tour-of-rusts-standard-library-traits.md)
18741874
- [Sizedness in Rust](../../sizedness-in-rust.md)
18751875
- [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)
18771877
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](../../too-many-brainfuck-compilers.md)

posts/translations/zh-hans/common-rust-lifetime-misconceptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1212,7 +1212,7 @@ error[E0597]: `some_string` does not live long enough
12121212
## 拓展阅读
12131213

12141214
- [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)
12161216
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](./too-many-brainfuck-compilers.md)
12171217

12181218
## 译者注

posts/translations/zh-hans/learning-rust-in-2020.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ _2020年 5月 9日 · #rust · #programming · #exercises_
55
**目录**
66
- [前言](#前言)
77
- [省流](#省流)
8-
- [Rust 练习平台比较](#practical-rust-resource-reviews)
8+
- [Rust 练习平台比较](#rust-练习平台比较)
99
- [HackerRank](#hackerrank)
1010
- [Project Euler](#project-euler)
1111
- [LeetCode](#leetcode)
1212
- [Codewars](#codewars)
1313
- [Advent of Code](#advent-of-code)
1414
- [Rustlings](#rustlings)
1515
- [Exercism](#exercism)
16-
- [结论](#conclusion)
17-
- [讨论](#discuss)
18-
- [参阅](#further-reading)
16+
- [结论](#结论)
17+
- [讨论](#讨论)
18+
- [参阅](#参阅)
1919

2020

2121

@@ -80,7 +80,7 @@ _又名:对供 Rust 初学者练习编写简单代码的免费在线资源的
8080
支持 Rust,但大部分题目不支持 Rust 题解。
8181
尝试提交题解,被当场拒绝:
8282

83-
![建 议 改 为: FailRank](../assets/hackerrank-more-like-failrank.png)
83+
![建 议 改 为: FailRank](../../../assets/hackerrank-more-like-failrank.png)
8484

8585
6。可以看到别人的,但是不能上传自己的。
8686
Google 了一圈,未能发现有用的信息,建议直接放弃。

posts/translations/zh-hans/learning-rust-in-2024.md

Lines changed: 266 additions & 0 deletions
Large diffs are not rendered by default.

posts/translations/zh-hans/tour-of-rusts-standard-library-traits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5891,8 +5891,8 @@ _该漫画的创作者: [The Jenkins Comic](https://thejenkinscomic.wordpress.co
58915891
## 更多资料 Further Reading
58925892

58935893
- [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)
58965896
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](../../too-many-brainfuck-compilers.md)
58975897

58985898

posts/translations/zh-hans/why-blog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ _作者:[stuffman](https://stuffman.tumblr.com/)_
3636

3737
## 参阅
3838

39-
- [Common Rust Lifetime Misconceptions](./../../common-rust-lifetime-misconceptions.md)
39+
- [Rust 中常见的有关生命周期的误解](./../../common-rust-lifetime-misconceptions.md)
4040
- [Rust 标准库特性指南](./tour-of-rusts-standard-library-traits.md)
4141
- [Sizedness in Rust](./../../sizedness-in-rust.md)
4242
- [RESTful API in Sync & Async Rust](./../../restful-api-in-sync-and-async-rust.md)

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Here are my posts in reverse chronological order.
66

77
| Year | Title | Popularity | Translations |
88
|-|-|-|-|
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) |
1010
| 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) |
1111
| 2021 | [RESTful API in Sync & Async Rust](./posts/restful-api-in-sync-and-async-rust.md) | 🔥 | - |
1212
| 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) |

0 commit comments

Comments
 (0)