From e061c571009637459d8a4e2a9b6991b606ad9be4 Mon Sep 17 00:00:00 2001 From: Carl Kadie Date: Tue, 1 Apr 2025 10:36:36 -0700 Subject: [PATCH] Update 2025-04-02-this-week-in-rust.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It sounds like an April Fools’ joke, but it’s real. It explores how small Rust programs can run for absurdly long times using nested loops, Turing machine emulation, and programming functions such as tetration (the operation beyond exponentiation). Also, a section on speeding up Turing machine visualization. --- draft/2025-04-02-this-week-in-rust.md | 1 + 1 file changed, 1 insertion(+) diff --git a/draft/2025-04-02-this-week-in-rust.md b/draft/2025-04-02-this-week-in-rust.md index e1141aea4..f5c60d744 100644 --- a/draft/2025-04-02-this-week-in-rust.md +++ b/draft/2025-04-02-this-week-in-rust.md @@ -46,6 +46,7 @@ and just ask the editors to select the category. ### Rust Walkthroughs * [Solving the ABA Problem in Rust with Hazard Pointers](https://minikin.me/blog/solving-the-aba-problem-in-rust-hazard-pointers) * [Building a CoAP application on Ariel OS](https://christian.amsuess.com/blog/website/2025-03-27_ariel_coap/) +* [How to Optimize your Rust Program for Slowness: Write a Short Program That Finishes After the Universe Dies](https://medium.com/@carlmkadie/how-to-optimize-your-rust-program-for-slowness-eb2c1a64d184) ### Research