diff --git a/content/games/minecraft/maps/_index.md b/content/games/minecraft/maps/_index.md
deleted file mode 100644
index 53bbc69..0000000
--- a/content/games/minecraft/maps/_index.md
+++ /dev/null
@@ -1,13 +0,0 @@
----
-title: Minecraft World Maps
----
-
-I generally archive the maps of notable Minecraft servers I play on. The following are snapshots of various (usually private) Minecraft servers I've played on:
-
-- Nerds With no Direction
- - 2024: Overworld 2 (not yet backed up)
- - [2024: Overworld 1](@/games/minecraft/maps/nwnd-2024-world1.md) *(vanilla)*
-- Super Dimension Fortress
- - [Overworld](@/games/minecraft/maps/mc-sdf-org.md)
-- Rsninja MC
- - [Overworld](@/games/minecraft/maps/rsninja-2020.md) *(2020-2021)*
\ No newline at end of file
diff --git a/content/games/minecraft/maps/mc-sdf-org.md b/content/games/minecraft/maps/mc-sdf-org.md
deleted file mode 100644
index 220fdc6..0000000
--- a/content/games/minecraft/maps/mc-sdf-org.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-title: "Minecraft Map Archive: mc.sdf.org"
-template: map.html
-extra:
- bg_color: black
----
-
-
\ No newline at end of file
diff --git a/content/games/minecraft/maps/nwnd-2024-world1.md b/content/games/minecraft/maps/nwnd-2024-world1.md
deleted file mode 100644
index 489921e..0000000
--- a/content/games/minecraft/maps/nwnd-2024-world1.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-title: "Minecraft Map Archive: NWnD 2024 World 1"
-template: map.html
-extra:
- bg_color: black
----
-
-
\ No newline at end of file
diff --git a/content/games/minecraft/maps/rsninja-2020.md b/content/games/minecraft/maps/rsninja-2020.md
deleted file mode 100644
index 0b90889..0000000
--- a/content/games/minecraft/maps/rsninja-2020.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-title: "Minecraft Map Archive: mc.rsninja.dev"
-template: map.html
-extra:
- bg_color: black
----
-
-
\ No newline at end of file
diff --git a/content/software/apps/gamels.md b/content/software/apps/gamels.md
deleted file mode 100644
index 6c1712c..0000000
--- a/content/software/apps/gamels.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: gamels
-description: ls with the power of the Steam API
----
-
-`gamels` will list all files in a directory in the style of `ls -la`, but will also show the name of any Steam game found in the listing. This utility was made to help me explore the filesystem of the Steam Deck.
-
-This works by querying the Steam API to resolve the appids back in to something useful for us humans.
-
-
-
-Rust users can install this tool with `cargo install gamels`. The source code and builds are available on [GitHub](https://github.com/ewpratten/gamels).
diff --git a/content/software/apps/protomask.md b/content/software/apps/protomask.md
deleted file mode 100644
index 41d9643..0000000
--- a/content/software/apps/protomask.md
+++ /dev/null
@@ -1,73 +0,0 @@
----
-title: Protomask
-description: Fast & reliable user space NAT64
----
-
-The protomask tool suite is a collection of user space tools that translate packets between OSI layer 3 protocol versions.
-
-`protomask` (the main binary) is a user space NAT64 implementation that acts as the core NAT64 translator inside AS54041 (my autonomous system). It prioritizes efficiency and ease of use from the operator's standpoint.
-
-I began the protomask project in 2023 as a replacement for `tayga` (the translator I was using at the time). It has since served as a robust & reliable NAT64 translator for my network, and has been a great way for me to learn more about the inner workings of both versions of the Internet Protocol.
-
-## The tool suite
-
-Alongside `protomask` itself, the project provides a handful of Rust crates that perform each of the tasks needed to build a NAT64 translator. This way, even if you don't like my implementation specifically, it is easy to build on top of my work. I hope that my protocol translation logic comes to be of use to others in the future.
-
-The libraries exposed by this project are as follows:
-
-
-
-
- Crate |
- Info |
- Latest Version |
-
-
-
-
- easy-tun |
- A pure-rust TUN interface library |
-
-
-
- |
-
-
- fast-nat |
- An OSI layer 3 Network Address Table built for speed |
-
-
-
- |
-
-
- interproto |
- Utilities for translating packets between IPv4 and IPv6 |
-
-
-
- |
-
-
- rfc6052 |
- A Rust implementation of RFC6052 |
-
-
-
- |
-
-
- rtnl |
- Slightly sane wrapper around rtnetlink |
-
-
-
- |
-
-
-
-Additionally, a secondary binary (`protomask-clat`) is shipped alongside the project. This binary is a simple CLAT implementation that can be used to deploy IPv4 networks across IPv6-only links.
-
-## Learn more
-
-The protomask tool suite is Open Source. Check it out [on GitHub](https://github.com/ewpratten/protomask).
diff --git a/src/_sass/common/table.scss b/src/_sass/common/table.scss
new file mode 100644
index 0000000..6f5de6a
--- /dev/null
+++ b/src/_sass/common/table.scss
@@ -0,0 +1,22 @@
+table {
+ border-collapse: collapse;
+
+ thead {
+ font-weight: bold;
+ background-color: #d8d8d8;
+ }
+
+ th,
+ td {
+ padding: 0.5em;
+ border: 1px solid gray;
+ }
+
+ th {
+ background-color: #f0f0f0;
+ }
+
+ tr:nth-child(even) {
+ background-color: #f8f8f8;
+ }
+}
diff --git a/src/_sass/default.scss b/src/_sass/default.scss
index dd484e1..30a1c3e 100644
--- a/src/_sass/default.scss
+++ b/src/_sass/default.scss
@@ -1,4 +1,5 @@
@use "common/font.scss" as *;
+@use "common/table.scss" as *;
body {
// Keep websites thin!
diff --git a/src/_sass/music.scss b/src/_sass/music.scss
index 1d87fcb..a81119d 100644
--- a/src/_sass/music.scss
+++ b/src/_sass/music.scss
@@ -1,4 +1,5 @@
@use "common/font.scss" as *;
+@use "common/table.scss" as *;
body {
display: flex;
@@ -28,7 +29,7 @@ body {
border-top-right-radius: inherit;
}
- &>div {
+ & > div {
padding: 1em;
padding-top: 0;
@@ -39,25 +40,6 @@ body {
table {
width: 100%;
- border-collapse: collapse;
-
- thead {
- font-weight: bold;
- background-color: #d8d8d8;
- }
-
- th, td {
- padding: 0.5em;
- border: 1px solid gray;
- }
-
- th {
- background-color: #f0f0f0;
- }
-
- tr:nth-child(even) {
- background-color: #f8f8f8;
- }
}
}
}
diff --git a/src/_sass/photo.scss b/src/_sass/photo.scss
index e6d7e90..3bf8f04 100644
--- a/src/_sass/photo.scss
+++ b/src/_sass/photo.scss
@@ -26,6 +26,7 @@ body {
img {
max-width: 800px;
border: 5px solid black;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
div.description {
diff --git a/static/images/software/games/data-loss/game-banner.png b/src/assets/software/data-loss/game-banner.png
similarity index 100%
rename from static/images/software/games/data-loss/game-banner.png
rename to src/assets/software/data-loss/game-banner.png
diff --git a/static/images/software/games/deep-breath/game-banner.png b/src/assets/software/deep-breath/game-banner.png
similarity index 100%
rename from static/images/software/games/deep-breath/game-banner.png
rename to src/assets/software/deep-breath/game-banner.png
diff --git a/static/images/software/games/micromanaged-mike/game-banner.jpg b/src/assets/software/micromanaged-mike/game-banner.jpg
similarity index 100%
rename from static/images/software/games/micromanaged-mike/game-banner.jpg
rename to src/assets/software/micromanaged-mike/game-banner.jpg
diff --git a/static/images/software/apps/slice/slice.png b/src/assets/software/slice/slice.png
similarity index 100%
rename from static/images/software/apps/slice/slice.png
rename to src/assets/software/slice/slice.png
diff --git a/src/collections/_photos/2022-03-06-icy-shore.md b/src/collections/_photos/2022-03-06-icy-shore.md
index 58d816d..f5d7b54 100644
--- a/src/collections/_photos/2022-03-06-icy-shore.md
+++ b/src/collections/_photos/2022-03-06-icy-shore.md
@@ -3,4 +3,10 @@ layout: photo
title: "Icy Shore"
date: 2022-03-06
file: 2022-03-06-icy-shore.jpg
----
\ No newline at end of file
+---
+
+The surface of Lake Ontario had frozen over the winter, and as the weather began to warm, the ice started cracking into fairly large pieces.
+
+This photo was taken as I was admiring the waves made of ice crashing into the growing icy piles along the shore.
+
+A rather loud experience.
diff --git a/content/software/games/data-loss.md b/src/collections/_software/data-loss.md
similarity index 93%
rename from content/software/games/data-loss.md
rename to src/collections/_software/data-loss.md
index 30d187c..feb4319 100644
--- a/content/software/games/data-loss.md
+++ b/src/collections/_software/data-loss.md
@@ -1,11 +1,11 @@
---
+layout: default
title: "[data::loss]"
description: "A Ludum Dare game for the theme: Unstable"
-extra:
- og_image: /images/software/games/data-loss/game-banner.png
+software_category: games
---
-
+
**[data::loss]** is a fast-paced side-scroller platforming game where you navigate a world full of graphical inconsistencies that have a habit of causing physical consequences.
diff --git a/content/software/games/deep-breath.md b/src/collections/_software/deep-breath.md
similarity index 90%
rename from content/software/games/deep-breath.md
rename to src/collections/_software/deep-breath.md
index aef7429..7cb9e29 100644
--- a/content/software/games/deep-breath.md
+++ b/src/collections/_software/deep-breath.md
@@ -1,11 +1,11 @@
---
+layout: default
title: Deep Breath
description: "A Ludum Dare game for the theme: Deeper and deeper"
-extra:
- og_image: /images/software/games/deep-breath/game-banner.png
+software_category: games
---
-
+
**Deep Breath** is an exploration game where you explore an underwater cave in hopes of finding your lost transponder. Items and upgrades can be acquired along the way to assist your search.
diff --git a/content/software/games/micromanaged-mike.md b/src/collections/_software/micromanaged-mike.md
similarity index 89%
rename from content/software/games/micromanaged-mike.md
rename to src/collections/_software/micromanaged-mike.md
index 99aaa16..561884b 100644
--- a/content/software/games/micromanaged-mike.md
+++ b/src/collections/_software/micromanaged-mike.md
@@ -1,11 +1,11 @@
---
+layout: default
title: "Micromanaged Mike"
description: "A Ludum Dare game for the theme: Keep it alive"
-extra:
- og_image: /images/software/games/micromanaged-mike/game-banner.jpg
+software_category: games
---
-
+
Truly put your multitasking skills to the test as you help Mike do daily tasks, hard parts is, Mike doesn’t have any autonomous body functions. You have to do everything for him, even making him blink.
diff --git a/src/collections/_software/minecraft-modpack.html b/src/collections/_software/minecraft-modpack.html
index fb6e444..10bfa3b 100644
--- a/src/collections/_software/minecraft-modpack.html
+++ b/src/collections/_software/minecraft-modpack.html
@@ -34,7 +34,7 @@ software_category: minecraft
{% for build in most_recent_release.builds %}
+ href="/assets/software/minecraft-modpack/builds/Evan's Pack-{{ build.version }}.mrpack">
Evan's Pack {{ build.version }}
{% if forloop.first %}(latest){% endif %}
@@ -50,7 +50,7 @@ software_category: minecraft
{% if build.version == most_recent_release.version %}{% continue %}{% endif %}
{% for release in build.builds %}
-
+
Evan's Pack {{ release.version }}
diff --git a/content/software/apps/slice.md b/src/collections/_software/slice.md
similarity index 79%
rename from content/software/apps/slice.md
rename to src/collections/_software/slice.md
index e716d15..3f5ae4d 100644
--- a/content/software/apps/slice.md
+++ b/src/collections/_software/slice.md
@@ -1,17 +1,12 @@
---
+layout: default
title: Slice (WearOS Watchface)
description: The WearOS watchface that fuses a 24-hour clock with a digital display
-extra:
- og_image: /images/software/apps/slice/slice.png
---
It started from a simple question. *What would it be like to use a 24-hour analog clock?*
-
+
Slice is an analog/digital hybrid watchface that features four main components:
@@ -36,12 +31,8 @@ Additionally, a thick tick and a thin tick slowly make their way around the oute
## Observations
-Slice has been the one and only watchface on my smartwatch since 2022.
+Slice has been the one and only watchface on my smartwatch since 2022.
I quite like the "hour hand" on the outer ring, and use it as a quick visual indicator of my progress through the day. The "second hand" was a later addition, allowing me to use my watchface as an impromptu timer.
In the future, I plan to add a Google Calendar integration to the watchface. I would like to display important calendar events as arcs across the 24-hour timeline, allowing me to quickly see how my day is structured.
-
-## Try Slice
-
-Slice is available for purchase on the [Google Play store](https://play.google.com/store/apps/details?id=com.ewpratten.wearos.slice).
\ No newline at end of file