Update links to subnet-solver repos

This commit is contained in:
Maciej Pędzich 2025-01-01 12:28:56 +01:00
parent c6ff806961
commit d61bec9ff7
Signed by: maciejpedzich
GPG Key ID: CE4A303D84882F0D
2 changed files with 2 additions and 2 deletions

View File

@ -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?

View File

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