Skip to content

Commit b4f0b4d

Browse files
chore: update deps, fix typos
Signed-off-by: Henry Gressmann <[email protected]>
1 parent a66e52d commit b4f0b4d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/publish-pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout main
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v5
2828

2929
- name: Build and deploy
30-
uses: shalzz/zola-deploy-action@v0.20.0
30+
uses: shalzz/zola-deploy-action@v0.21.0
3131
env:
3232
BUILD_ONLY: true
3333

3434
- name: Upload artifact
35-
uses: actions/upload-pages-artifact@v3
35+
uses: actions/upload-pages-artifact@v4
3636
with:
3737
path: "public"
3838

content/2024/liwan/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Over the last ~5 years, I've tried out probably ten different analytics platform
1818

1919
**Truly Open Source**: One of my favorite tools I tried was [fathom analytics](https://usefathom.com/), which sadly (but understandably) switched to a completely closed source SaaS model. I want to 'own' the data, even if the user's data is eventually anonymized; it's hard to trust what's happening on a server I don't control. I really like [plausible](https://plausible.io/)'s open core model but I wanted something a bit more lightweight and opinionated.
2020

21-
**Multi Website**: As I mentioned, I want to aggregate data from 10+ different sites, so multi-website support also had to be great. One platform I experimented with early on was (GoatCounter)[https://www.goatcounter.com/]. While the UI is bare bones, it's also very lightweight and available with an embedded database. Sadly, it does not offer great multi-website support and is generally not as feature-rich as I would like.
21+
**Multi Website**: As I mentioned, I want to aggregate data from 10+ different sites, so multi-website support also had to be great. One platform I experimented with early on was [GoatCounter](https://www.goatcounter.com/). While the UI is bare bones, it's also very lightweight and available with an embedded database. Sadly, it does not offer great multi-website support and is generally not as feature-rich as I would like.
2222

2323
Setting out with those and some more goals in mind, I started building [Liwan.dev](https://liwan.dev), which, as often happens, had a lot of feature creep but now ended up in a place I'm very happy with.
2424

content/rust-os/1-hello-riscv/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ REGION_ALIAS("REGION_HEAP", RAM);
114114
REGION_ALIAS("REGION_STACK", RAM);
115115
```
116116

117-
Wiith this file in place, we need to tell the linker where to find it. We can do this by adding a `build.rs` file to our project:
117+
With this file in place, we need to tell the linker where to find it. We can do this by adding a `build.rs` file to our project:
118118

119119
{{ file(name = "build.rs")}}
120120

0 commit comments

Comments
 (0)