From 42fc36be7be96f48a8189c2190f867aa06079abd Mon Sep 17 00:00:00 2001 From: u <@> Date: Tue, 10 Mar 2026 13:09:12 +0200 Subject: a --- assets/_/diary | 18 ++++++++++++++++-- src/lib.rs | 4 +++- wrangler.toml | 8 ++++++++ 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/assets/_/diary b/assets/_/diary index 612ef56..53ff33d 100644 --- a/assets/_/diary +++ b/assets/_/diary @@ -1,3 +1,17 @@ +3/10/26 + +I haven't got much to say other than that the Rust rewrite is complete and I can show the source code of my website to the public without feeling like I have committed a grave unforgivable crime. Source is now available here. Writing math code in Rust is like being sexually assaulted by a gorilla with a dildo over and over. I do not recommend it. P.S.: If you're writing code for WASM and Cloudflare Workers and your math code throws a fit, you might want to add: +
+[profile.release]
+lto = true
+strip = true
+codegen-units = 1
+overflow-checks = false
+[profile.dev]
+overflow-checks = false
+
+I like Rust for more high-level stuff where it really shines but when I'm trying to do stuff that's mathy or deals with less than ideal stuff (i.e., code that goes against its philosophy) it quickly turns ugly. Overall I'd rate the experience "C++ but less initial work and feels more ergonomic". + 3/8/26 I spent the entire day (re)watching Mahou Shoujo Madoka ☆ Magica, the mood I was in and the substances I was intoxicated with made for a borderline religious experience. My favorite character gotta be Miki Sayaka specifically because I can see myself in her idiotic vacillations between stubborn feeble mindedness and literally every single event happening to her taking something away from her. Madoka feels like a "baseline" in the story and I can't remember anything remarkable she did except for maybe becoming god in the end or whatever, I don't understand why people like her. Akemi Homura ends up ripping her apart(?)(i.e., copying the records of human kaname madoka (idk)) in the movie and creates a fake world where everything goes right (in her perspective). I am media illiterate so I didn't really "learn" anything from the anime. Maybe be kind to people because you never know when a time traveler will relive the same month a hundred times just to change your potentially unauspicious fate? Or alternatively, don't be nice to people because you never know when a time traveler will turn into a demon after you become God and rip you apart because she loves you so much? I don't know. Maybe "don't go against your fate"? I genuinely enjoyed the experimental-looking mix of art styles for witches and whatnot. @@ -131,11 +145,11 @@ I only slept for 5 hours. I'm trying to purposefully fuck my sleep schedule up b I remember actually experiencing "major depression" last year. It was when [i dont want to share this]. I basically slept for the entire day and didn't get out of bed for two weeks unless I had to take care of basic physiological needs. I lost around 7kg of weight and found things I genuinely enjoyed doing utterly worthless and boring. Fortunately or unfortunately I've been able to get out of bed after that and do things I used to enjoy again, and went back to my usual self-loathing cycle. Recently I've been developing a kind of strange narcissism alongside my self hate, and they conflict with each other now. I suggested someone doing a high-performance online programming leaderboard thing of which the task was to add a bunch of numbers from stdint, to not parse the numbers and operate on them directly then horizontally add the numbers every n cycle where n is the minimum count of cycles where a lane can overflow in a simd register. He did some LLM prompting with my idea and it made his code 4x faster. Something as basic as this gave me a massive ego boost, it really shouldn't. Hey look at what 7zip tells me after it archives a file. neat. - +
 Files read from disk: 8295
 Archive size: 373139597 bytes (356 MiB)
 Everything is Ok
-
+
I want to be put on an SSRI again for the sole purpose of desensitizing myself to my mundane, meager life. I should normally be taking a nap right now. I finally bought a domain, ataxia.moe. I don't really think it's a good TLD, I like the name though so whatever. If you add "ra" in the middle it becomes ataraxia, which is this greek philosophy thing I don't quite remember. diff --git a/src/lib.rs b/src/lib.rs index c73d61b..bcb6851 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -98,7 +98,9 @@ async fn fetch(req: Request, env: Env, _ctx: Context) -> Result { br; br; "Hosted on " a href="https://developers.cloudflare.com/workers/" { "Cloudflare Workers" } - ". Source available once I sort the mess out." + ". Source available " + a href="https://git.neetlo.li/ataxia/tree" { "here" } + "." } }) }) diff --git a/wrangler.toml b/wrangler.toml index 5dc0e7c..3e66e78 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -8,3 +8,11 @@ command = "cargo install -q \"worker-build@^0.7\" && worker-build --release" [assets] directory = "./assets" binding = "ASSETS" + +[[routes]] +pattern = "ataxia.moe" +custom_domain = true + +[[routes]] +pattern = "ataxia.moe/*" +zone_name = "ataxia.moe" -- cgit v1.2.3