Skip to content

Commit cee15f6

Browse files
committed
add back notifs
1 parent 14c652a commit cee15f6

11 files changed

+99
-0
lines changed

posts/chat-server.md

+9
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ _04 May 2024 · #rust · #async · #concurrency · #tokio_
2929
[Conclusion](#conclusion)<br>
3030
[Discuss](#discuss)<br>
3131
[Further reading](#further-reading)<br>
32+
[Notifications](#notifications)<br>
3233

3334
</details>
3435

@@ -1875,3 +1876,11 @@ Discuss this article on
18751876
- [Sizedness in Rust](./sizedness-in-rust.md)
18761877
- [RESTful API in Sync & Async Rust](./restful-api-in-sync-and-async-rust.md)
18771878
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](./too-many-brainfuck-compilers.md)
1879+
1880+
1881+
1882+
## Notifications
1883+
1884+
Get notified when a new blog post gets published by
1885+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
1886+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)

posts/common-rust-lifetime-misconceptions.md

+9
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ _19 May 2020 · #rust · #lifetimes_
1818
- [Conclusion](#conclusion)
1919
- [Discuss](#discuss)
2020
- [Further Reading](#further-reading)
21+
- [Notifications](#notifications)
2122

2223

2324

@@ -1125,3 +1126,11 @@ Discuss this article on
11251126
- [Sizedness in Rust](./sizedness-in-rust.md)
11261127
- [RESTful API in Sync & Async Rust](./restful-api-in-sync-and-async-rust.md)
11271128
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](./too-many-brainfuck-compilers.md)
1129+
1130+
1131+
1132+
## Notifications
1133+
1134+
Get notified when a new blog post gets published by
1135+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
1136+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)

posts/learning-rust-in-2020.md

+9
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ _09 May 2020 · #rust · #programming · #exercises_
1616
- [Conclusion](#conclusion)
1717
- [Discuss](#discuss)
1818
- [Further Reading](#further-reading)
19+
- [Notifications](#notifications)
1920

2021

2122

@@ -203,3 +204,11 @@ Discuss this article on
203204
- [Sizedness in Rust](./sizedness-in-rust.md)
204205
- [RESTful API in Sync & Async Rust](./restful-api-in-sync-and-async-rust.md)
205206
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](./too-many-brainfuck-compilers.md)
207+
208+
209+
210+
## Notifications
211+
212+
Get notified when a new blog post gets published by
213+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
214+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)

posts/learning-rust-in-2024.md

+9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ _21 September 2024 · #rust · #coding · #exercises_
1919
- [Honorable mentions](#honorable-mentions)
2020
- [Discuss](#discuss)
2121
- [Further Reading](#further-reading)
22+
- [Notifications](#notifications)
2223

2324
This is my opinionated guide on how to go from knowing nothing about Rust to being kinda okay at Rust quickly as possible. This is what I would tell myself if I was starting today.
2425

@@ -301,3 +302,11 @@ Discuss this article on
301302
- [Sizedness in Rust](./sizedness-in-rust.md)
302303
- [RESTful API in Sync & Async Rust](./restful-api-in-sync-and-async-rust.md)
303304
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](./too-many-brainfuck-compilers.md)
305+
306+
307+
308+
## Notifications
309+
310+
Get notified when a new blog post gets published by
311+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
312+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)

posts/restful-api-in-sync-and-async-rust.md

+9
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ _11 May 2021 · #rust · #diesel · #rocket · #sqlx · #actix-web_
6262
- [In Summary](#in-summary)
6363
- [Discuss](#discuss)
6464
- [Further Reading](#further-reading)
65+
- [Notifications](#notifications)
6566

6667

6768

@@ -4282,3 +4283,11 @@ Discuss this article on
42824283
- [Using Rust in Non-Rust Servers to Improve Performance](./rust-in-non-rust-servers.md)
42834284
- [Sizedness in Rust](./sizedness-in-rust.md)
42844285
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](./too-many-brainfuck-compilers.md)
4286+
4287+
4288+
4289+
## Notifications
4290+
4291+
Get notified when a new blog post gets published by
4292+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
4293+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)

posts/rust-in-non-rust-servers.md

+9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ _22 October 2024 · #rust · #wasm · #ffi · #performance_
1717
- [Concluding thoughts](#concluding-thoughts)
1818
- [Discuss](#discuss)
1919
- [Further reading](#further-reading)
20+
- [Notifications](#notifications)
2021

2122

2223

@@ -640,3 +641,11 @@ Discuss this article on
640641
- [Sizedness in Rust](./sizedness-in-rust.md)
641642
- [RESTful API in Sync & Async Rust](./restful-api-in-sync-and-async-rust.md)
642643
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](./too-many-brainfuck-compilers.md)
644+
645+
646+
647+
## Notifications
648+
649+
Get notified when a new blog post gets published by
650+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
651+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)

posts/sizedness-in-rust.md

+8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ _22 July 2020 · #rust · #sizedness_
2424
- [Conclusion](#conclusion)
2525
- [Discuss](#discuss)
2626
- [Further Reading](#further-reading)
27+
- [Notifications](#notifications)
2728

2829

2930

@@ -1254,3 +1255,10 @@ Discuss this article on
12541255
- [Using Rust in Non-Rust Servers to Improve Performance](./rust-in-non-rust-servers.md)
12551256
- [RESTful API in Sync & Async Rust](./restful-api-in-sync-and-async-rust.md)
12561257
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](./too-many-brainfuck-compilers.md)
1258+
1259+
1260+
## Notifications
1261+
1262+
Get notified when a new blog post gets published by
1263+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
1264+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)

posts/too-many-brainfuck-compilers.md

+12
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ _01 November 2020 · #assembly · #compilers_
1919
- [Concluding thoughts](#concluding-thoughts)
2020
- [Discuss](#discuss)
2121
- [Further Reading](#further-reading)
22+
- [Notifications](#notifications)
2223

2324

2425

@@ -2215,6 +2216,7 @@ The documentation online for LLVM IR is by far the best. The [LLVM IR Language R
22152216
If I had to write a compiler in the future I think I'll definitely stick with LLVM IR. It has the best documentation, it has a kick-ass optimizer, and it can compile down to x86_64, aarch64, or WebAssembly (plus a whole bunch of other targets)!
22162217

22172218

2219+
22182220
## Discuss
22192221

22202222
Discuss this article on
@@ -2228,6 +2230,8 @@ Discuss this article on
22282230
- [Hackernews](https://news.ycombinator.com/item?id=25069243)
22292231
- [Github](https://github.com/pretzelhammer/rust-blog/discussions)
22302232

2233+
2234+
22312235
## Further Reading
22322236

22332237
Rust
@@ -2267,3 +2271,11 @@ LLVM IR
22672271
- [LLVM Language Reference Manual](https://llvm.org/docs/LangRef.html)
22682272
- [Mapping High Level Constructs to LLVM IR](https://mapping-high-level-constructs-to-llvm-ir.readthedocs.io/en/latest/README.html)
22692273
- [My First Language Frontend with LLVM Tutorial](https://llvm.org/docs/tutorial/MyFirstLanguageFrontend/index.html)
2274+
2275+
2276+
2277+
## Notifications
2278+
2279+
Get notified when a new blog post gets published by
2280+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
2281+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)

posts/tour-of-rusts-standard-library-traits.md

+9
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ _31 March 2021 · #rust · #traits_
6666
- [Conclusion](#conclusion)
6767
- [Discuss](#discuss)
6868
- [Further Reading](#further-reading)
69+
- [Notifications](#notifications)
6970

7071

7172

@@ -5179,6 +5180,8 @@ Discuss this article on
51795180
- [lobste.rs](https://lobste.rs/s/g27ezp/tour_rust_s_standard_library_traits)
51805181
- [rust subreddit](https://www.reddit.com/r/rust/comments/mmrao0/tour_of_rusts_standard_library_traits/)
51815182

5183+
5184+
51825185
## Further Reading
51835186

51845187
- [Common Rust Lifetime Misconceptions](./common-rust-lifetime-misconceptions.md)
@@ -5190,3 +5193,9 @@ Discuss this article on
51905193
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](./too-many-brainfuck-compilers.md)
51915194

51925195

5196+
5197+
## Notifications
5198+
5199+
Get notified when a new blog post gets published by
5200+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
5201+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)

posts/why-blog.md

+10
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ I was almost about to give up on my blog idea but that's when I ran across [Fran
1818

1919
One small final note: I plan to focus this blog entirely around Rust. Aside from this initial post I don't intend to use this blog to post about personal things.
2020

21+
22+
2123
## Further Reading
2224

2325
- [Common Rust Lifetime Misconceptions](./common-rust-lifetime-misconceptions.md)
@@ -28,3 +30,11 @@ One small final note: I plan to focus this blog entirely around Rust. Aside from
2830
- [Sizedness in Rust](./sizedness-in-rust.md)
2931
- [RESTful API in Sync & Async Rust](./restful-api-in-sync-and-async-rust.md)
3032
- [Learn Assembly with Entirely Too Many Brainfuck Compilers](./too-many-brainfuck-compilers.md)
33+
34+
35+
36+
## Notifications
37+
38+
Get notified when a new blog post gets published by
39+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
40+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)

readme.md

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ Here are my posts in reverse chronological order.
1919

2020
Note: translations are community-maintained.
2121

22+
## Notifications
23+
24+
Get notified when a new blog post gets published by
25+
- Subscribing to this repo's [releases RSS feed](https://github.com/pretzelhammer/rust-blog/releases.atom) or
26+
- Watching this repo's releases (click `Watch` → click `Custom` → select `Releases` → click `Apply`)
27+
2228
## Feedback
2329

2430
If you have any feedback please feel welcome to [open an issue](https://github.com/pretzelhammer/rust-blog/issues/new) on this repo. I accept pull requests for minor fixes like typos and grammar.

0 commit comments

Comments
 (0)