Skip to content

Commit 773a34f

Browse files
committed
Adding The Journal
1 parent 6506bfe commit 773a34f

13 files changed

Lines changed: 33 additions & 6 deletions

β€Žassets/hero.svgβ€Ž

Lines changed: 15 additions & 1 deletion
Loading
-11.9 KB
Loading
-116 KB
Loading

β€Žcontent/en/page/journal/index.mdβ€Ž

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,25 @@ title: Learning Rust
33
url: "journal"
44

55
summary: >
6-
The Journey of building Learning Rust!
6+
This is not just about Rust or learning a new language. It is about how fast you can master it.
77
---
88

99
## 2026: August 03
1010

1111
> ![Learning Rust2026.jpg](LearningRust2026.jpg)
12-
> - Based on my own [e25DX](https://dumindu.github.io/E25DX/) theme.
12+
> - Updated to 2026 section by section.
13+
> - Based on my own [e25DX](https://dumindu.github.io/E25DX/) theme from 2024.
14+
15+
---
1316

1417
## 2018: December 07
1518

1619
> ![Rust: Error Handling - Friday, December 7, 2018 at 3:16:22 AM GMT+8](RustErrorHandling.jpg)
1720
> - [Medium](https://medium.com/learning-rust/rust-error-handling-72a8e036dd3)
1821
> - [Reddit: r/rust](https://www.reddit.com/r/rust/comments/a3r6q1/rust_error_handling_learning_rust_v/)
1922
23+
---
24+
2025
## 2018: January 01
2126

2227
> ![LearningRust](LearningRust.jpg)
@@ -25,24 +30,32 @@ summary: >
2530
> - [Hacker News: March 15](https://news.ycombinator.com/item?id=16594547)
2631
> - [Reddit: r/rust: August 18](https://www.reddit.com/r/rust/comments/984ai3/learning_rust_a_lean_approach/)
2732
33+
---
34+
2835
## 2017: December 04
2936
> ![Rust: Lets Get It Started - December 4, 2017 at 7:10:53 AM GMT+8](RustLetsGetItStarted.jpg)
3037
> - [Medium](https://medium.com/learning-rust/rust-lets-get-it-started-bdd8de58178d)
3138
> - [Reddit: r/rust](https://www.reddit.com/r/rust/comments/7hd6o1/rust_lets_get_it_started/)
3239
> - [Reddit: r/programming](https://www.reddit.com/r/programming/comments/7hd6cr/rust_lets_get_it_started_learning_rust_iv/)
3340
41+
---
42+
3443
## 2017: January 01
3544

3645
> ![Rust: The Tough Part- Sunday, January 1, 2017 at 6:11:26 PM GMT+8](RustTheToughPart.jpg)
3746
> - [Medium](https://medium.com/learning-rust/rust-the-tough-part-2ea11ed3693e)
3847
> - [Reddit: r/rust](https://www.reddit.com/r/rust/comments/5lelo2/rust_the_tough_part/)
3948
49+
---
50+
4051
## 2016: August 01
4152

4253
> ![Rust: Beyond The Basics - Tuesday, August 2, 2016 at 3:26:38 AM GMT+8](RustBeyondTheBasics.jpg)
4354
> - [Medium](https://medium.com/learning-rust/rust-beyond-the-basics-4fc697e3bf4f)
4455
> - [Reddit: r/rust](https://www.reddit.com/r/rust/comments/4voajy/rust_beyond_the_basics/)
4556
57+
---
58+
4659
## 2016: January 24
4760

4861
> ![Rust Basics - Monday, January 25, 2016 at 8:44:18 AM GMT+8](RustBasics.jpg)

β€Ždocs/index.htmlβ€Ž

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

β€Ždocs/index.xmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ However, it’s good practice to specify the type on variables when usin
547547
&lt;p&gt;This can be any form of &lt;code&gt;self&lt;/code&gt;, &lt;code&gt;&amp;amp;self&lt;/code&gt;, &lt;code&gt;&amp;amp;mut self&lt;/code&gt;, &lt;code&gt;self: Box&amp;lt;Self&amp;gt;&lt;/code&gt;, &lt;code&gt;self: Pin&amp;lt;&amp;amp;mut Self&amp;gt;&lt;/code&gt;, etc.&lt;/p&gt;</description></item><item><title>Installation</title><link>https://learning-rust.github.io/docs/installation/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://learning-rust.github.io/docs/installation/</guid><description>&lt;h2 id="rustup"&gt;Rustup&lt;/h2&gt;
548548
&lt;p&gt;There are many ways to install Rust on your system. For the moment the official way to install Rust is using &lt;a href="https://rustup.rs/" target="_blank" &gt;Rustup&lt;/a&gt;.&lt;/p&gt;
549549
&lt;p&gt;&lt;a href="https://rust-lang.github.io/rustup/index.html" target="_blank" &gt;πŸ“–&lt;/a&gt; Rustup installs The Rust Programming Language from the official release channels, enabling you to easily switch between &lt;strong&gt;stable, beta, and nightly&lt;/strong&gt; compilers and keep them updated. It also makes cross-compiling simpler with binary builds of the standard library for common platforms.&lt;/p&gt;
550-
&lt;p&gt;&lt;a href="https://rust-lang.github.io/rustup/installation/index.html" target="_blank" &gt;πŸ“–&lt;/a&gt; Rustup installs &lt;code&gt;rustc&lt;/code&gt;, &lt;code&gt;cargo&lt;/code&gt;, &lt;code&gt;rustup&lt;/code&gt; and other standard tools to &lt;strong&gt;Cargo&amp;rsquo;s &lt;code&gt;bin&lt;/code&gt; directory&lt;/strong&gt;. On Unix it is located at &lt;code&gt;$HOME/.cargo/bin&lt;/code&gt; and on Windows at &lt;code&gt;%USERPROFILE%\.cargo\bin&lt;/code&gt;. This is the same directory that &lt;code&gt;cargo install&lt;/code&gt; will install Rust programs and Cargo plugins.&lt;/p&gt;</description></item><item><title>Learning Rust</title><link>https://learning-rust.github.io/journal/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://learning-rust.github.io/journal/</guid><description>The Journey of building Learning Rust!</description></item><item><title>Lifetimes</title><link>https://learning-rust.github.io/docs/lifetimes/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://learning-rust.github.io/docs/lifetimes/</guid><description>&lt;div class="alert alert-recap"&gt;
550+
&lt;p&gt;&lt;a href="https://rust-lang.github.io/rustup/installation/index.html" target="_blank" &gt;πŸ“–&lt;/a&gt; Rustup installs &lt;code&gt;rustc&lt;/code&gt;, &lt;code&gt;cargo&lt;/code&gt;, &lt;code&gt;rustup&lt;/code&gt; and other standard tools to &lt;strong&gt;Cargo&amp;rsquo;s &lt;code&gt;bin&lt;/code&gt; directory&lt;/strong&gt;. On Unix it is located at &lt;code&gt;$HOME/.cargo/bin&lt;/code&gt; and on Windows at &lt;code&gt;%USERPROFILE%\.cargo\bin&lt;/code&gt;. This is the same directory that &lt;code&gt;cargo install&lt;/code&gt; will install Rust programs and Cargo plugins.&lt;/p&gt;</description></item><item><title>Learning Rust</title><link>https://learning-rust.github.io/journal/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://learning-rust.github.io/journal/</guid><description>This is not just about Rust or learning a new language. It is about how fast you can master it.</description></item><item><title>Lifetimes</title><link>https://learning-rust.github.io/docs/lifetimes/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://learning-rust.github.io/docs/lifetimes/</guid><description>&lt;div class="alert alert-recap"&gt;
551551
&lt;div class="alert-header"&gt;
552552

553553

-11.9 KB
Loading

β€Ždocs/journal/cover.jpgβ€Ž

-116 KB
Loading
-45.9 KB
Binary file not shown.
32.4 KB
Loading

0 commit comments

Comments
Β (0)