From d61bec9ff759ff32f25fc5af41a4b5ff497a92f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Wed, 1 Jan 2025 12:28:56 +0100 Subject: [PATCH] Update links to subnet-solver repos --- src/content/blog/cheesing-a-subnetting-test-with-rust.md | 2 +- src/pages/rss.xml.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/blog/cheesing-a-subnetting-test-with-rust.md b/src/content/blog/cheesing-a-subnetting-test-with-rust.md index 39fd906..5122a80 100644 --- a/src/content/blog/cheesing-a-subnetting-test-with-rust.md +++ b/src/content/blog/cheesing-a-subnetting-test-with-rust.md @@ -8,7 +8,7 @@ tags: - rust --- -It's been a hot minute since my last post, and because it's Christmas break, I thought I'd break down this simple Rust program I've used to completely cheese this subnetting test I've had to take for the computer networking course at my uni. You can check out the source code on [GitHub](https://github.com/maciejpedzich) or on [my Gitea instance](https://git.maciejpedzi.ch) if the former is down. +It's been a hot minute since my last post, and because it's Christmas break, I thought I'd break down this simple Rust program I've used to completely cheese this subnetting test I've had to take for the computer networking course at my uni. You can check out the source code on [GitHub](https://github.com/maciejpedzich/subnet-solver) or on [my Gitea instance](https://git.maciejpedzi.ch/maciejpedzich/subnet-solver) if the former is down. ## Isn't that cheating? diff --git a/src/pages/rss.xml.js b/src/pages/rss.xml.js index c46859c..0fa8419 100644 --- a/src/pages/rss.xml.js +++ b/src/pages/rss.xml.js @@ -13,7 +13,7 @@ export async function GET(context) { site: context.site, items: posts.map((post) => ({ ...post.data, - link: `/blog/${post.id}/` + link: `/blog/${post.id}` })) });