From 1ad59e5c66406a4bef62f43cf6ddda1a78f38b47 Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Wed, 18 Feb 2026 21:38:58 +0100 Subject: [PATCH 1/4] update --- builder/src/main.rs | 25 ------------------ static/root/index.html | 58 +++++++++++++++++++++++++++++++++++++++--- 2 files changed, 55 insertions(+), 28 deletions(-) diff --git a/builder/src/main.rs b/builder/src/main.rs index b1eeda8..2b590d3 100644 --- a/builder/src/main.rs +++ b/builder/src/main.rs @@ -6,7 +6,6 @@ extern crate tracing; use std::{ path::{Path, PathBuf}, - process::{self, Stdio}, time, }; @@ -111,30 +110,6 @@ fn watch(root: PathBuf) -> Result<()> { watcher.watch(&root.join("static"), RecursiveMode::Recursive)?; watcher.watch(&root.join("config.toml"), RecursiveMode::NonRecursive)?; - info!("Starting webserver"); - let root1 = root.clone(); - std::thread::spawn(move || { - let root = root1; - let run = || -> Result<()> { - let path = root.join("dist"); - let mut server = process::Command::new("live-server"); - server - .current_dir(path) - .stdout(Stdio::null()) - .stderr(Stdio::null()); - - let mut child = server.spawn().wrap_err("failed to spawn `live-server`.\ - Install https://github.com/tapio/live-server into your PATH, for example with nix, see shell.nix")?; - let exit = child.wait().wrap_err("interrupt waiting for live-server")?; - bail!("live-server exited early, exit: {exit}"); - }; - - if let Err(e) = run() { - error!(?e); - process::exit(1); - } - }); - info!("Starting loop"); std::thread::spawn(move || { diff --git a/static/root/index.html b/static/root/index.html index 5263a0c..1612adc 100644 --- a/static/root/index.html +++ b/static/root/index.html @@ -50,13 +50,14 @@ } .numbered-section { - counter-set: subsection 1; + counter-set: subsection 0; } .numbered-section::before { counter-increment: section; content: counter(section) ". "; } .numbered-subsection::before { + counter-increment: subsection; content: counter(section) "." counter(subsection) ". "; } @@ -131,6 +132,7 @@

Table of Contents

    +
  1. Introduction
  2. Blog
  3. Socials
  4. Slides
  5. @@ -138,11 +140,29 @@ Projects
    1. Rust
    2. +
    3. Other
    +
  6. About me
  7. Contact
+
+

Introduction

+
+

Conventions and Terminology

+
+ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD + NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to + be interpreted as described in + BCP 14 [RFC2119] [RFC8174] when, and + only when, they appear in all capitals, as shown here. +
+
+

Blog

@@ -228,6 +248,38 @@
+
+

About me

+
+

General

+
+

+ my name is nora and my pronouns are she/her (you can also find them in DNS as + TXT pronouns.noratrieb.dev). i like doing all kinds of things with + computers and learning about how they work. i like learning about anything really, + i'm also interested in history and other sciences. +

+

+ i work as a web developer, where i make websites and systems. this website is also + very cool. +

+
+
+
+

Also known as

+
+
    +
  • + lw t5, 208(sp); lw sp, 20(sp) +
    + explanation + the ASCII bytes for NORA encoded as RISC-V instructions +
    +
  • +
+
+
+

Contact

@@ -236,8 +288,8 @@
  • discord (preferred): noratrieb - . if you're on a server where i'm too (like the Rust Community Discord) you can just DM me - (make sure to include the reason in the first message or i will ignore it) + . if you're on a server where i'm too (like the Rust Community Discord) you can just + DM me (make sure to include the reason in the first message or i will ignore it)
  • Matrix: From 902de4f52caf39da85b1936084914d98b9fcc629 Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Wed, 18 Feb 2026 21:47:12 +0100 Subject: [PATCH 2/4] downgrade hugo --- .github/workflows/pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 065abd4..00d8192 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: - hugo-version: 'latest' + hugo-version: '1.555' # extended: true - name: Setup Rust From 8cc2f06d863503db2f93894337865f65d945a06c Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Wed, 18 Feb 2026 21:48:48 +0100 Subject: [PATCH 3/4] a --- .github/workflows/pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 00d8192..1a073c4 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: - hugo-version: '1.555' + hugo-version: 'v0.155.0' # extended: true - name: Setup Rust From b71d33311c497ae4686c27e9c76b3d3834f8e3fb Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Wed, 18 Feb 2026 21:49:11 +0100 Subject: [PATCH 4/4] b --- .github/workflows/pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 1a073c4..79dd714 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -16,9 +16,9 @@ jobs: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 + uses: peaceiris/actions-hugo@v3 with: - hugo-version: 'v0.155.0' + hugo-version: '0.155.0' # extended: true - name: Setup Rust