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}` })) });