add junk drawer index

This commit is contained in:
filifa
2026-04-15 18:45:37 -04:00
parent 9e5ee71efc
commit c6ac6d4c5e
3 changed files with 41 additions and 0 deletions

View File

@@ -42,6 +42,8 @@
<li>If you're the kind of math dweeb that finds yourself asking questions like "What's the multiplicative order of 10 modulo 19?", you might like this <a href="mcalc/index.html">modular arithmetic calculator</a>.</li> <li>If you're the kind of math dweeb that finds yourself asking questions like "What's the multiplicative order of 10 modulo 19?", you might like this <a href="mcalc/index.html">modular arithmetic calculator</a>.</li>
</ul> </ul>
<p>I also have <a href="/junk/">a junk drawer</a>.</p>
<p>If you're not any of these flavors of dweeb, or you don't even know what some of these words mean, there may be hope for you yet. Go outside. Feel the sun's rays and the air's breeze. Listen to the birds sing. <a href="https://www.youtube.com/watch?v=j8v_XqFO8Bc">Escape, before it's too late.</a></p> <p>If you're not any of these flavors of dweeb, or you don't even know what some of these words mean, there may be hope for you yet. Go outside. Feel the sun's rays and the air's breeze. Listen to the birds sing. <a href="https://www.youtube.com/watch?v=j8v_XqFO8Bc">Escape, before it's too late.</a></p>
<ul> <ul>

36
junk/index.html Normal file
View File

@@ -0,0 +1,36 @@
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="/styles/default.css" />
<link rel="stylesheet" href="/styles/junk.css" />
<link rel="stylesheet" href="/styles/junk-index.css" />
<link rel="icon" href="/images/favicon.ico" />
<title>Junk Drawer</title>
</head>
<body>
<header>
<a id="homelink" href="/">dairydemon.net</a>
</header>
<main>
<article>
<h1>Junk Drawer</h1>
<p>This is where I put stuff of questionable value that I want to share
anyway.</p>
<ol id="posts-list" reversed>
<li><a href="sieves/">Sieving Multiplicative Functions</a></li>
<li><a href="faulhaber/">Sums of Powers</a></li>
</ol>
</article>
</main>
<footer>
<p id="copyright">© 2026 filifa. This page is licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>.</p>
</footer>
</body>
</html>

3
styles/junk-index.css Normal file
View File

@@ -0,0 +1,3 @@
#posts-list {
list-style-type: disc;
}