Added a media page
This commit is contained in:
@ -6,30 +6,48 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>About Me</h1>
|
||||
<h2>What I do</h2>
|
||||
<ul>
|
||||
<li>College student</li>
|
||||
<li>FIRST Robotics Alumni
|
||||
<ul>
|
||||
<li><strong>2016</strong> - Electrical</li>
|
||||
<li><strong>2017-2019</strong> - Programming & Pneumatics Lead</li>
|
||||
<li><strong>2020</strong> - Programming Lead</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>FIRST Robotics Mentor
|
||||
<ul>
|
||||
<li><strong>2022-Present</strong> - Programming & Pneumatics</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>My Hobbies</h2>
|
||||
<ul>
|
||||
<li>Licensed HAM Radio Operator</li>
|
||||
<li>Disc Golf</li>
|
||||
<li>Programming - <a href="/projects.html">My Projects</a> - <a href="/resources.html">Useful
|
||||
Resources</a></li>
|
||||
</ul>
|
||||
<header>
|
||||
<h1>About Me</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>What I do</h2>
|
||||
<ul>
|
||||
<li>College student</li>
|
||||
<li>FIRST Robotics Alumni
|
||||
<ul>
|
||||
<li><strong>2016</strong> - Electrical</li>
|
||||
<li><strong>2017-2019</strong> - Programming & Pneumatics Lead</li>
|
||||
<li><strong>2020</strong> - Programming Lead</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>FIRST Robotics Mentor
|
||||
<ul>
|
||||
<li><strong>2022-Present</strong> - Programming & Pneumatics</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>My Hobbies</h2>
|
||||
<ul>
|
||||
<li>Licensed HAM Radio Operator</li>
|
||||
<li>Disc Golf</li>
|
||||
<li>Programming - <a href="/projects.html">My Projects</a> - <a href="/resources.html">Useful
|
||||
Resources</a></li>
|
||||
<li>Robotics - <a href="/match.html">Example Match Video & Stats</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</article>
|
||||
</main>
|
||||
<footer>
|
||||
<a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a>
|
||||
</footer>
|
||||
|
||||
88
root/match.html
Normal file
88
root/match.html
Normal file
@ -0,0 +1,88 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<title>Match Video & Stats</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<h1>Robotics Match - Video and Match Statistics</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>Match Video</h2>
|
||||
<p>This video shows</p>
|
||||
<video controls width="720" height="405">
|
||||
<source src="media/videos/einstein-final1-2025-720p.mp4" type="video/mp4">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
|
||||
<p>Here is an alternative view from the audience</p>
|
||||
<video controls width="720" height="405">
|
||||
<source src="media/videos/einstein-final1-2025-720p-alternate.mp4" type="video/mp4">
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
|
||||
<p>If you'd like to listen only:</p>
|
||||
<audio controls>
|
||||
<source src="media/audio/einstein-final1-2025-audio.mp3" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Match Statistics</h2>
|
||||
<p>Below is a summary table of key match stats for the video above.</p>
|
||||
|
||||
<table>
|
||||
<caption>Einstein Finals 1 (2025)</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">Alliance</th>
|
||||
<th scope="col">Auto Points</th>
|
||||
<th scope="col">Teleop Points</th>
|
||||
<th scope="col">Endgame</th>
|
||||
<th scope="col">Foul Adjustments</th>
|
||||
<th scope="col">Total</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">Red</th>
|
||||
<td>72</td>
|
||||
<td>181</td>
|
||||
<td>36</td>
|
||||
<td>6</td>
|
||||
<td>295</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Blue</th>
|
||||
<td>69</td>
|
||||
<td>176</td>
|
||||
<td>36</td>
|
||||
<td>0</td>
|
||||
<td>281</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
BIN
root/media/audio/einstein-final1-2025-audio.mp3
Normal file
BIN
root/media/audio/einstein-final1-2025-audio.mp3
Normal file
Binary file not shown.
BIN
root/media/videos/einstein-final1-2025-720-alternate.mp4
Normal file
BIN
root/media/videos/einstein-final1-2025-720-alternate.mp4
Normal file
Binary file not shown.
BIN
root/media/videos/einstein-final1-2025-720p.mp4
Normal file
BIN
root/media/videos/einstein-final1-2025-720p.mp4
Normal file
Binary file not shown.
@ -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>
|
||||
|
||||
@ -2,58 +2,95 @@
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Munebase Resources</title>
|
||||
<title>Munebase Resources</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Useful Resources</h1>
|
||||
<header>
|
||||
<h1>Useful Resources</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 Modding</h2>
|
||||
<ol>
|
||||
<li><a href="https://fabricmc.net/wiki/tutorial:setup" target="_blank"
|
||||
rel="noopener noreferrer">Fabric
|
||||
Modding
|
||||
Wiki</a>
|
||||
</li>
|
||||
<li><a href="https://docs.minecraftforge.net/en/latest/" target="_blank"
|
||||
rel="noopener noreferrer">Forge
|
||||
Documentation</a>
|
||||
</li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods" target="_blank"
|
||||
rel="noopener noreferrer">CurseForge
|
||||
Mods</a>
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
<h2>Minecraft Modding</h2>
|
||||
<ol>
|
||||
<li><a href="https://fabricmc.net/wiki/tutorial:setup" target="_blank" rel="noopener noreferrer">Fabric Modding
|
||||
Wiki</a>
|
||||
</li>
|
||||
<li><a href="https://docs.minecraftforge.net/en/latest/" target="_blank" rel="noopener noreferrer">Forge
|
||||
Documentation</a>
|
||||
</li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods" target="_blank" rel="noopener noreferrer">CurseForge
|
||||
Mods</a>
|
||||
</li>
|
||||
</ol>
|
||||
<section>
|
||||
<h2>Java Programming</h2>
|
||||
<ol>
|
||||
<li><a href="https://www.w3schools.com/java/" target="_blank"
|
||||
rel="noopener noreferrer">W3Schools Java
|
||||
Tutorial</a></li>
|
||||
<li><a href="https://www.geeksforgeeks.org/java/" target="_blank"
|
||||
rel="noopener noreferrer">GeeksforGeeks
|
||||
Java</a></li>
|
||||
<li><a href="https://docs.oracle.com/javase/tutorial/" target="_blank"
|
||||
rel="noopener noreferrer">Java
|
||||
Tutorials
|
||||
(Oracle)</a></li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
<h2>Java Programming</h2>
|
||||
<ol>
|
||||
<li><a href="https://www.w3schools.com/java/" target="_blank" rel="noopener noreferrer">W3Schools Java
|
||||
Tutorial</a></li>
|
||||
<li><a href="https://www.geeksforgeeks.org/java/" target="_blank" rel="noopener noreferrer">GeeksforGeeks
|
||||
Java</a></li>
|
||||
<li><a href="https://docs.oracle.com/javase/tutorial/" target="_blank" rel="noopener noreferrer">Java Tutorials
|
||||
(Oracle)</a></li>
|
||||
</ol>
|
||||
<section>
|
||||
<h2>Rust Programming</h2>
|
||||
<ol>
|
||||
<li><a href="https://doc.rust-lang.org/book/" target="_blank"
|
||||
rel="noopener noreferrer">The Rust
|
||||
Programming
|
||||
Language
|
||||
(Book)</a></li>
|
||||
<li><a href="https://rust-lang.github.io/rust-by-example/" target="_blank"
|
||||
rel="noopener noreferrer">Rust by
|
||||
Example</a>
|
||||
</li>
|
||||
<li><a href="https://users.rust-lang.org/" target="_blank"
|
||||
rel="noopener noreferrer">Rust Users
|
||||
Forum</a></li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
<h2>Rust Programming</h2>
|
||||
<ol>
|
||||
<li><a href="https://doc.rust-lang.org/book/" target="_blank" rel="noopener noreferrer">The Rust Programming
|
||||
Language
|
||||
(Book)</a></li>
|
||||
<li><a href="https://rust-lang.github.io/rust-by-example/" target="_blank" rel="noopener noreferrer">Rust by
|
||||
Example</a>
|
||||
</li>
|
||||
<li><a href="https://users.rust-lang.org/" target="_blank" rel="noopener noreferrer">Rust Users Forum</a></li>
|
||||
</ol>
|
||||
|
||||
<h2>Python Programming</h2>
|
||||
<ol>
|
||||
<li><a href="https://docs.python.org/3/tutorial/" target="_blank" rel="noopener noreferrer">Python Official
|
||||
Tutorial</a>
|
||||
</li>
|
||||
<li><a href="https://realpython.com/" target="_blank" rel="noopener noreferrer">Real Python</a></li>
|
||||
<li><a href="https://www.learnpython.org/" target="_blank" rel="noopener noreferrer">LearnPython.org</a></li>
|
||||
</ol>
|
||||
<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>
|
||||
</footer>
|
||||
<section>
|
||||
<h2>Python Programming</h2>
|
||||
<ol>
|
||||
<li><a href="https://docs.python.org/3/tutorial/" target="_blank"
|
||||
rel="noopener noreferrer">Python
|
||||
Official
|
||||
Tutorial</a>
|
||||
</li>
|
||||
<li><a href="https://realpython.com/" target="_blank"
|
||||
rel="noopener noreferrer">Real Python</a></li>
|
||||
<li><a href="https://www.learnpython.org/" target="_blank"
|
||||
rel="noopener noreferrer">LearnPython.org</a>
|
||||
</li>
|
||||
</ol>
|
||||
</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>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user