You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-9
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,10 @@
10
10
| 04 |[**Hello**](#hello)| A multithreaded web server that says “hello”. |
11
11
| 05 |[**Game of Life**](#life)| A zero-player game to learn how to use Rust, WebAssembly, and JavaScript together. |
12
12
13
+
## Get Inspired
14
+
15
+
Check out our [**collection of articles**](https://www.onbusinessplan.com/) for those beginning their Rust journey. Find tips, tricks, and motivational content to keep you engaged and motivated throughout your learning process.
16
+
13
17
## <aname="hellocargo"></a> 1) Hello Cargo
14
18
15
19
A quick intro to Rust syntax.
@@ -30,8 +34,6 @@ A quick intro to Rust syntax.
30
34
- defining enums.
31
35
- grabbing args from CLI.
32
36
33
-
Based on [Rust Crash Course](https://www.youtube.com/watch?v=zF34dRivLOw) by Brad Traversy (2019).
34
-
35
37
## <aname="guessing"></a> 2) Guessing Game
36
38
37
39
A hands-on introduction to the Rust language.
@@ -48,8 +50,6 @@ A hands-on introduction to the Rust language.
48
50
- quitting after a correct guess.
49
51
- handling invalid input.
50
52
51
-
Based on [The Rust Programming Language](https://doc.rust-lang.org/book/) by Steve Klabnik and Carol Nichols (2021).
52
-
53
53
## <aname="minigrep"></a> 3) Minigrep
54
54
55
55
A simple version of the classic command line tool grep.
@@ -66,8 +66,6 @@ A simple version of the classic command line tool grep.
66
66
- writing error messages to standard error instead of standard output.
67
67
- using closures and iterators.
68
68
69
-
Based on [The Rust Programming Language](https://doc.rust-lang.org/book/) by Steve Klabnik and Carol Nichols (2021).
70
-
71
69
## <aname="hello"></a> 4) Hello
72
70
73
71
A multithreaded web server that says “hello”.
@@ -83,8 +81,6 @@ A multithreaded web server that says “hello”.
83
81
- improving throughput with a thread pool.
84
82
- handling graceful shutdown.
85
83
86
-
Based on [The Rust Programming Language](https://doc.rust-lang.org/book/) by Steve Klabnik and Carol Nichols (2021).
87
-
88
84
## <aname="life"></a> 5) Game of Life
89
85
90
86
A zero-player game to learn how to use Rust, WebAssembly, and JavaScript together.
@@ -111,4 +107,14 @@ A zero-player game to learn how to use Rust, WebAssembly, and JavaScript togethe
111
107
- optimizing performances with time profiling and benchmarking.
112
108
- shrinking .wasm size with wasm-opt and gzip.
113
109
114
-
Based on [The Rust and WebAssembly Book](https://rustwasm.github.io/docs/book/) by The Rust and WebAssembly Working Group (2021).
110
+
## Acknowledgments
111
+
112
+
These projects are adapted from various sources:
113
+
114
+
-[Rust Crash Course](https://www.youtube.com/watch?v=zF34dRivLOw) by Brad Traversy (2019)
115
+
-[The Rust Programming Language](https://doc.rust-lang.org/book/) by Steve Klabnik and Carol Nichols (2021)
116
+
-[The Rust and WebAssembly Book](https://rustwasm.github.io/docs/book/) by The Rust and WebAssembly Working Group (2021)
117
+
118
+
## Show Your Support
119
+
120
+
If you find these projects helpful or interesting, please consider starring the repository. It's a simple gesture that helps to boost the visibility of the project and show appreciation for the effort put into creating it. Additionally, if you'd like to support my work further, you can [**become a sponsor**](https://github.com/sponsors/solygambas). Your support is greatly appreciated. Thank you!
0 commit comments