diff --git a/src/collections/_software/minecraft-client-ping.md b/src/collections/_software/minecraft-client-ping.md index 9d13ad0..0b0fff6 100644 --- a/src/collections/_software/minecraft-client-ping.md +++ b/src/collections/_software/minecraft-client-ping.md @@ -1,6 +1,7 @@ --- layout: default title: Client Ping +description: A Minecraft mod that implements multiplayer Point-of-Interest marking software_category: minecraft --- diff --git a/src/collections/_software/minecraft-frost-bucket.md b/src/collections/_software/minecraft-frost-bucket.md index 759f3d0..3e3c857 100644 --- a/src/collections/_software/minecraft-frost-bucket.md +++ b/src/collections/_software/minecraft-frost-bucket.md @@ -1,6 +1,7 @@ --- layout: default title: FrostBucket +description: A Minecraft server-side plugin that allows players to apply the Frost Walker enchantment to a bucket software_category: minecraft --- diff --git a/src/collections/_software/minecraft-illuminated-shields.md b/src/collections/_software/minecraft-illuminated-shields.md index 70b6760..b681db1 100644 --- a/src/collections/_software/minecraft-illuminated-shields.md +++ b/src/collections/_software/minecraft-illuminated-shields.md @@ -1,6 +1,7 @@ --- layout: default title: Illuminated Shields +description: A Minecraft resource pack that causes shields to emit light software_category: minecraft --- Illuminated Shields is a Minecraft resource pack that hooks in to the [LambDynamicLights](https://modrinth.com/mod/lambdynamiclights) mod to cause shields to emit light. diff --git a/src/collections/_software/minecraft-modpack.html b/src/collections/_software/minecraft-modpack.html index cd308de..5572381 100644 --- a/src/collections/_software/minecraft-modpack.html +++ b/src/collections/_software/minecraft-modpack.html @@ -1,6 +1,7 @@ --- layout: default title: Evan's Minecraft Modpack +description: My personal Minecraft modpack software_category: minecraft --- diff --git a/src/collections/_software/raylib-ffi.md b/src/collections/_software/raylib-ffi.md index 7cbf771..e8b5643 100644 --- a/src/collections/_software/raylib-ffi.md +++ b/src/collections/_software/raylib-ffi.md @@ -1,7 +1,7 @@ --- layout: default title: Raylib FFI -description: Raw Rust bindings for raylib +description: Direct FFI bindings for calling raylib from Rust code --- Any time someone new to game and graphics programming asks me how to get started, I point them to [raylib](https://www.raylib.com/). It's a simple, yet powerful, game development library that is perfect for beginners and experts alike. diff --git a/src/collections/_software/slice.md b/src/collections/_software/slice.md index 3f5ae4d..898f296 100644 --- a/src/collections/_software/slice.md +++ b/src/collections/_software/slice.md @@ -1,7 +1,7 @@ --- layout: default -title: Slice (WearOS Watchface) -description: The WearOS watchface that fuses a 24-hour clock with a digital display +title: Slice +description: A WearOS watchface that fuses a 24-hour clock with a digital display --- It started from a simple question. *What would it be like to use a 24-hour analog clock?* diff --git a/src/software.html b/src/software.html new file mode 100644 index 0000000..eb118bd --- /dev/null +++ b/src/software.html @@ -0,0 +1,39 @@ +--- +layout: default +title: Software +--- + +

+ I like to build things. Here are some of the more interesting bits of software I've built: +

+ +{% assign projects_sorted = site.software | sort: "title" %} +{% assign projects_uncategorized = projects_sorted | where: "software_category", nill %} +{% assign projects_grouped = projects_sorted | group_by: "software_category" | sort_by: "name" | reverse %} + + \ No newline at end of file