Added a media page

This commit is contained in:
2025-09-23 09:40:44 -04:00
parent c2367874ef
commit 93e9c37da0
7 changed files with 253 additions and 92 deletions

View File

@ -6,28 +6,46 @@
</head>
<body>
<h1>My Projects</h1>
<h2>Minecraft Mods</h2>
<dl>
<dt><a href="https://modrinth.com/mod/sandmastery">Sand Mastery</a></dt>
<dd>Part of a larger suite of mods that add Brandon Sanderson's Cosmere magic systems to Minecraft.</dd>
<dd>Specifically adds Sandmastery from Taldain in Brandon Sanderson's White Sand graphic novel.</dd>
<dt><a href="https://modrinth.com/mod/hexkeys">Hex Keys</a></dt>
<dd>Hexcasting Addon</dd>
<dd>Adds a couple small utilities to Hexcasting that I felt would be nice to have</dd>
</dl>
<h2>Miscellaneous Projects</h2>
<dl>
<dt><a href="https://github.com/MoonlitJolteon/bank-of-cosmere">Bank of Cosmere</a></dt>
<dd>A Computercraft/Hexcasting based banking system from a minecraft server.</dd>
<dt><a href="https://github.com/MoonlitJolteon/MinePython">MinePython</a></dt>
<dd>A Minecraft server written in python so I could learn the underlying protocol.</dd>
<dt><a href="https://github.com/MoonlitJolteon/pid_playground">PID Playground</a></dt>
<dd>A MatterJS web app used to learn how PID tuning works</dd>
<dt><a href="https://github.com/MoonlitJolteon/moon_os">MoonOS</a></dt>
<dd>A toy operating system written in rust, following along with this <a
href="https://os.phil-opp.com/">blog</a>.</dd>
</dl>
<header>
<h1>My Projects</h1>
<nav>
<a href="/index.html">Home</a>
<a href="/projects.html">Projects</a>
<a href="/resources.html">Resources</a>
<a href="/match.html">Example FRC Match</a>
</nav>
</header>
<main>
<article>
<section>
<h2>Minecraft Mods</h2>
<dl>
<dt><a href="https://modrinth.com/mod/sandmastery">Sand Mastery</a></dt>
<dd>Part of a larger suite of mods that add Brandon Sanderson's Cosmere magic systems to Minecraft.
</dd>
<dd>Specifically adds Sandmastery from Taldain in Brandon Sanderson's White Sand graphic novel.</dd>
<dt><a href="https://modrinth.com/mod/hexkeys">Hex Keys</a></dt>
<dd>Hexcasting Addon</dd>
<dd>Adds a couple small utilities to Hexcasting that I felt would be nice to have</dd>
</dl>
</section>
<section>
<h2>Miscellaneous Projects</h2>
<dl>
<dt><a href="https://github.com/MoonlitJolteon/bank-of-cosmere">Bank of Cosmere</a></dt>
<dd>A Computercraft/Hexcasting based banking system from a minecraft server.</dd>
<dt><a href="https://github.com/MoonlitJolteon/MinePython">MinePython</a></dt>
<dd>A Minecraft server written in python so I could learn the underlying protocol.</dd>
<dt><a href="https://github.com/MoonlitJolteon/pid_playground">PID Playground</a></dt>
<dd>A MatterJS web app used to learn how PID tuning works</dd>
<dt><a href="https://github.com/MoonlitJolteon/moon_os">MoonOS</a></dt>
<dd>A toy operating system written in rust, following along with this <a
href="https://os.phil-opp.com/">blog</a>.</dd>
</dl>
</section>
</article>
</main>
<footer>
<a href="/index.html">Back to the homepage</a>
<a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a>