Start section about Russet

This commit is contained in:
Nycki 2022-12-23 12:35:12 -08:00
parent b365195bae
commit a42380f2bd
2 changed files with 89 additions and 41 deletions

View file

@ -7,8 +7,10 @@
</head>
<body>
<main>
<header>
<h1>Nupa's Page</h1>
<div class='subtitle'>A place to show off my projects.</div>
</header>
<section>
<h2>Braceless Javascript</h2>
@ -35,8 +37,10 @@
<section>
<h2>Collabyrinth</h2>
<img src='images/collabyrinth-title.png' alt='The title screen for the game Collabyrinth. The twelve letters of the word "COLLABYRINTH" are arranged in a 3 by 4 grid. Most of them are just an ordinary letter, but the O, L, L, Y, and R have been decorated in a variety of mismatched styles.'/>
<p>2008. A collaborative labyrinth ZZT game. I organized this on the z2 forums.</p>
<p>Credits:
<p>
2008. A collaborative labyrinth ZZT game. I organized this on the z2 forums.
<p>
Credits:
<ul>
<li>Alexis Janson</li>
<li>Commodore</li>
@ -47,7 +51,7 @@
<li>Quantum P</li>
<li>RobertP</li>
</ul>
</p>
<p>
<a href='https://museumofzzt.com/file/c/clbrnth1.zip'>Collabyrinth in the Museum of ZZT.</a>
</section>

44
russet/index.html Normal file
View file

@ -0,0 +1,44 @@
<!doctype html>
<html>
<head>
<title>Nupa's Page</title>
<meta charset='utf-8'/>
<link rel='stylesheet' href='../style.css'>
</head>
<body>
<main>
<header>
<h1>Russet</h1>
<div class="subtitle">Or, how to reproduce my self-host server.</div>
</header>
<section>
<h2>Hardware</h2>
<p>
Russet runs on a Raspberry Pi, model 4b with 4GB RAM. It has an Argon metal heat dispersing shell. It's hooked up to a Microtik router over a wired home internet connection. You can use any small computer really. If Raspberry Pi is currently hard to obtain (2022) then I recommend the Pine64 "Rock64" computer as an alternative.
</p>
</section>
<section>
<h2>Operating System</h2>
<p>
There are hundreds of guides on how to install Raspbian (or Armbian) on various systems. It usually boils down to "go download a disk image and write it to an sd card using some disk writing tool". I'll assume you can figure this part out without my help. The important thing for our purposes is that your OS is debian-based, so we have access to the now-familiar 'apt' package mananger (sorry, Arch fans).
</p>
</section>
<!--
TODO:
- Configure sshd
- Manage apps with Podman
- Reverse proxy with Nginx
-->
<section>
<h2>Changelog</h2>
<p>2022-12-13: New page.</p>
</section>
</main>
</body>
</html>