Remove old HTML files from SSG

This commit is contained in:
Nexus 2024-06-18 01:33:34 +01:00
parent 24612ac146
commit c08c8132e9
Signed by: nex
GPG key ID: 0FA334385D0B689F
2 changed files with 0 additions and 378 deletions

View file

@ -1,124 +0,0 @@
<!DOCTYPE html>
<html lang="en" style="background-color: black;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FAQ | nexy7574.co.uk</title>
<link rel="stylesheet" href="bundle.css"/>
</head>
<body>
<div class="mainBody">
<header>
</header>
<main>
<div>
<h1>Frequently Asked Questions</h1>
<p>Note: I am dyslexic, so please excuse any spelling or grammar errors. Feel free to message me for corrections ^^</p>
<div id="toc" hidden>
<h2>Table Of Contents:</div>
<ol id="toc-li"></ol>
</div> <!-- Table of Contents -->
<noscript><p>There will be a table of contents here if you enable JavaScript. You don't have to though.</p></noscript>
<hr/>
<div class="question">
<h2>Q: What are your keys???</h2>
<div>
<h3>A: PGP:</h3>
<p>
<code class="inline">0FA334385D0B689F</code> - available via WKD (<code class="inline">gpg --locate-keys me@nexy7574.co.uk</code>), or the full (armoured) key is available <a href="assets/pgp-2024-05-13.txt" download>here</a>.
The key is also available on several keyservers, however
<a href="https://keyserver.ubuntu.com/pks/lookup?search=0FA334385D0B689F&fingerprint=on&op=index" target="_blank" rel="noopener noreferrer">Ubuntu's keyserver</a>
is the most reliable and kept up-to-date. Although, WKD should be preferred where possible.
</p>
</div>
<div>
<h3>A: SSH</h3>
<p>Can be imported from <a href="assets/ssh-2024-05-13.txt" download>this text file</a>, however be aware I do not sign anything with my SSH key, only my PGP key.</p>
<p>Feel free to give me SSH access to your servers though :^)</p>
</div>
</div>
<div class="question">
<h2 id="what-are-your-pc-specs">Q: What are your PC specs/how much did your PC cost?</h2>
<p>
A: You can find all the details on <a href="https://uk.pcpartpicker.com/b/Hfz7YJ" rel="noopener" target="_blank">PcPartPicker</a>.
It cost me around £650 to build in December, 2023.
</p>
</div>
<div class="question">
<h2 id="can-you-hack">Q: Can you hack my friend's instagram?</h2>
<p>A: <strong><em>No.</em></strong></p>
<h2 id="fix-printer">Q: Can you fix my printer?</h2>
<p>
A: Yep!
<ol>
<li>Kick the printer.</li>
<li>Kick it harder.</li>
<li>Unplug it (bare with me)</li>
<li>Bring your printer to the nearest window</li>
<li>Open the window</li>
<li>Throw the printer out the window</li>
<li>Ask someone else to print it for you (its their problem then)</li>
</ol>
</p>
</div>
<div class="question">
<h2 id="what-music-do-you-listen-to">Q: What music do you listen to?</h2>
<p>A: Here's my main playlists. TL;DR, I listen to a lot of pop and rock, with a sprinkle of electronic</p>
<p>My favourite artists aren't really a thing, I prefer music over artists and albums, but I consistently listen to K.Flay, Grandson, Mother Mother, Super Whatevr, Cavetown, The Front Bottoms, Hospital Bracelet, and Crawlers.</p>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/26wJTA2mXk3QNXhqBI95kM?utm_source=generator&theme=0" width="100%" height="352" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/07GvdPCtDvWO2UFawBDlSA?utm_source=generator&theme=0" width="100%" height="152" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/1mTh1hj7rmzCYknLWfru4C?utm_source=generator&theme=0" width="100%" height="152" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<p>I am one of those people that will listen to any music genre, and I actually mean it. Just remember though "will listen" doesn't mean "will like".</p>
</div>
<div class="question">
<h2 id="urandom-or-random">Q: Urandom or Random?</h2>
<p>A: Urandom</p>
</div>
</div>
<script>
document.addEventListener(
"DOMContentLoaded",
() => {
const questions = document.querySelectorAll(".question h2");
for (let question of questions) {
const id = question.id;
const a = document.createElement("a");
a.href = `#${id}`;
a.textContent = "🔗";
a.title = "Link to this question";
a.style.textDecoration = "none";
a.style.fontSize = "smaller";
a.style.color = "black";
a.style.marginLeft = "0.5em";
question.appendChild(a);
// copy URL to clipboard
a.addEventListener(
"click",
() => {
navigator.clipboard.writeText(location.href + "#" + id);
a.textContent = "✅";
setTimeout(() => {
a.textContent = "🔗";
}, 1000);
}
)
// add to table of contents
const toc = document.getElementById("toc");
toc.hidden = false;
const tocLi = document.getElementById("toc-li");
const li = document.createElement("li");
const a2 = document.createElement("a");
a2.href = `#${id}`;
a2.textContent = question.textContent.replace(/^Q: /, "").replace("🔗", "");
li.appendChild(a2);
tocLi.appendChild(li);
}
}
)
</script>
</main>
<link rel="stylesheet" href="lazy-fonts.css">
</div>
</body>
</html>

View file

@ -1,254 +0,0 @@
<!DOCTYPE html>
<html lang="en" style="background-color: black;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>nexy7574.co.uk</title>
<link rel="stylesheet" href="bundle.css">
</head>
<body>
<div id="email-modal" style="z-index: 100;width:100%;height: 100%;padding:200px auto;background-color: rgba(0, 0, 0, 0.5);position:absolute" hidden>
<p>If you're going to email me, please use PGP encryption. My key is available via WKD, or <a href="faq.html">the FAQ</a></p>
<img src="img/email.png" width="1366px" height="768px" alt="oh"/>
</div>
<div class="mainBody">
<main>
<h1>Hello There!</h1>
<p><span id="__age">17</span> | she/it | "full"-stack</p>
<h2>Quick - about me</h2>
<div>
<p>You can hover over icons to get a tooltip, and some you can click to go places.</p>
<div id="array">
<div>
<h3>Languages</h3>
<div>
<img src="img/python-color.svg" alt="Python" title="Python" width="32px" height="32px" class="icon">
<img src="img/javascript-color.svg" alt="JavaScript" title="JavaScript" width="32px" height="32px" class="icon">
<img src="img/gnubash-color.svg" alt="Bash" title="Bash" width="32px" height="32px" class="icon">
</div>
</div>
<div>
<h3>Operating Systems</h3>
<div>
<img src="img/fedora-color.svg" alt="Fedora" title="Fedora" width="32px" height="32px" class="icon">
<img src="img/ubuntu-color.svg" alt="Ubuntu" title="Ubuntu (Server)" width="32px" height="32px" class="icon">
<img src="img/windows-color.svg" alt="Windows" title="Windows" width="32px" height="32px" class="icon">
<img src="img/apple-color.svg" alt="iOS" title="iOS" width="32px" height="32px" class="icon">
</div>
</div>
<div>
<h3>Communication Platforms</h3>
<p style="font-size: initial">In order of fastest to slowest</p>
<div>
<a href="https://matrix.to/#/@nex:nexy7574.co.uk" rel="noopener noreferrer" target="_blank" class="icon">
<img src="img/matrix-color.svg" alt="Matrix" title="Matrix" width="32px" height="32px" class="icon">
</a>
<a href="https://signal.me/#eu/j24vT8zDzquI0us48k7eiNJcpJjEw4TYUz1gtvo_0HtEfq4C2MZG1YFs5POF98Sb" rel="noopener" target="_blank" class="icon">
<img src="img/signal-color.svg" alt="Signal" title="Signal" width="32px" height="32px" class="icon">
</a>
<img src="img/imessage-color.svg" alt="iMessage" title="iMessage" width="32px" height="32px" class="icon">
<a href="https://discord.gg/TveBeG7" rel="noopener" target="_blank" class="icon">
<img src="img/discord-color.svg" alt="Discord" title="Discord" width="32px" height="32px" class="icon">
</a>
<a rel="noopener" target="_blank" class="icon">
<img src="img/gmail-color.svg" alt="Email" title="Email (very slow)" width="32px" height="32px" class="icon">
</a>
</div>
</div>
<div>
<h3>Learning</h3>
<div>
<img src="img/csharp-color.svg" alt="C#" title="C#" width="32px" height="32px" class="icon"/>
<img src="img/go-color.svg" alt="Go" title="Go" width="32px" height="32px" class="icon"/>
</div>
</div>
<div>
<h3>Tools</h3>
<div>
<img src="img/docker-color.svg" alt="Docker" title="Docker" width="32px" height="32px" class="icon"/>
<img src="img/git-color.svg" alt="Git" title="Git" width="32px" height="32px" class="icon"/>
<img src="img/github.svg" alt="GitHub" title="GitHub" width="32px" height="32px" class="icon"/>
<img src="img/linode.svg" alt="Linode" title="Linode (cloud hosting)" width="32px" height="32px" class="icon"/>
<img src="img/postgresql-color.svg" alt="Postgres" title="Postgres" width="32px" height="32px" class="icon"/>
<img src="img/ollama.svg" alt="Ollama" title="Ollama (web hosting)" width="32px" height="32px" class="icon"/>
<img src="img/openai-color.svg" alt="OpenAI/ChatGPT" title="OpenAI/ChatGPT" width="32px" height="32px" class="icon"/>
</div>
</div>
<div>
<h3>Frameworks & Libraries</h3>
<div>
<img src="img/nextdotjs.svg" alt="Next.js" title="Next.js" width="32px" height="32px" class="icon"/>
<img src="img/fastapi-color.svg" alt="FastAPI" title="FastAPI" width="32px" height="32px" class="icon"/>
<img src="img/discordpy.png" alt="Discord.py" title="Discord.py" width="32px" height="32px" class="icon"/>
<img src="img/pycord.png" alt="py-cord" title="py-cord" width="32px" height="32px" class="icon"/>
</div>
</div>
</div>
<h3>Notable Projects</h3>
<div>
<table>
<thead>
<tr>
<th>Name</th>
<th>Brief</th>
<th>Source</th>
<th>Live</th>
</tr>
</thead>
<tbody>
<tr>
<td>Nio-Bot</td>
<td>A bot framework for the matrix ecosystem</td>
<td>
<a href="https://github.com/nexy7574/nio-bot" rel="noopener" target="_blank" class="icon">
<img src="img/github.svg" alt="GitHub" title="GitHub" width="32px" height="32px" class="icon">
</a>
</td>
<td>
<a href="https://matrix.to/#/#bots:nexy7574.co.uk" rel="opopener" target="_blank" class="icon">
<img src="img/matrix-color.svg" alt="Matrix" title="Matrix" width="32px" height="32px" class="icon">
</a>
</td>
</tr>
<tr>
<td>dendritecli</td>
<td>A command line interface for interacting with the Dendrite homeserver.</td>
<td>
<a href="https://github.com/nexy7574/dendritecli" rel="noopener" target="_blank" class="icon">
<img src="img/github.svg" alt="GitHub" title="GitHub" width="32px" height="32px" class="icon">
</a>
</td>
<td></td>
</tr>
<tr>
<td>ModMan</td>
<td>A CLI mod manager for minecraft servers.</td>
<td>
<a href="https://github.com/nexy7574/modman" rel="noopener" target="_blank" class="icon">
<img src="img/github.svg" alt="GitHub" title="GitHub" width="32px" height="32px" class="icon">
</a>
</td>
<td></td>
</tr>
<tr>
<td>College Bot v2</td>
<td>Specialised chat bot in discord for my college server.</td>
<td>
<a href="https://git.i-am.nexus/nex/college-bot-v2" rel="noopener" target="_blank" class="icon">
<img src="img/forgejo-color.svg" alt="Forgejo" title="Forgejo" width="32px" height="32px" class="icon">
</a>
[<a href="https://github.com/nexy7574/college-bot-v2" rel="noopener" target="_blank" class="icon">
<img src="img/github.svg" alt="GitHub" title="GitHub" width="32px" height="32px" class="icon">
</a>]
</td>
<td></td>
</tr>
<tr>
<td>drop-in-url-previews</td>
<td>A drop-in proxy URL preview server for Matrix</td>
<td>
<a href="https://git.i-am.nexus/nex/drop-in-url-previews" rel="noopener" target="_blank" class="icon">
<img src="img/forgejo-color.svg" alt="Forgejo" title="Forgejo" width="32px" height="32px" class="icon">
</a>
</td>
<td>
<a href="https://matrix.nexy7574.co.uk/_matrix/media/r0/preview_url?url=nexy7574.co.uk" rel="noopener" target="_blank" class="icon">
<img src="img/matrix-color.svg" alt="Matrix" title="Matrix" width="32px" height="32px" class="icon">
</td>
</tr>
<tr>
<td>Spanner</td>
<td>A really informational discord bot</td>
<td>
<a href="https://github.com/nexy7574/spanner-v3" rel="noopener" target="_blank" class="icon">
v3
</a><br/>
<a href="https://github.com/nexy7574/spanner-v2" rel="noopener" target="_blank" class="icon">
v2
</a><br/>
<a href="https://github.com/nexy7574/spanner-bot" rel="noopener" target="_blank" class="icon">
v1
</a>
</td>
<td>
<a href="https://discord.com/api/oauth2/authorize?client_id=722000000000000000&permissions=8&scope=bot" rel="noopener" target="_blank" class="icon">
<img src="img/discord-color.svg" alt="Discord" title="Discord" width="32px" height="32px" class="icon">
</a>
</td>
</tr>
<tr>
<td>YourApps</td>
<td>A discord bot that trailblazed the discord forms market with, at its peak, 2.5k servers, and over 5 million users.</td>
<td><i>proprietary</i></td>
<td>
<a href="https://top.gg/bot/619328560141697036" rel="noopener noreferrer" target="_blank" class="icon">
<img src="img/topdotgg.svg" alt="top.gg" title="top.gg" width="32px" height="32px" class="icon">
</a>
</td>
</tr>
<tr>
<td>Top.py</td>
<td>
An alternative python API wrapper for the
<a href="https://top.gg" rel="noopener noreferrer" target="_blank">top.gg</a>
API
</td>
<td>
<a href="https://github.com/nexy7574/top.py" rel="noopener" target="_blank" class="icon">
<img src="img/github.svg" alt="GitHub" title="GitHub" width="32px" height="32px" class="icon">
</a>
</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<h4>Notable Contributions</h4>
<p>These are projects I have contributed to, but not necessarily created or had a major role in.</p>
<p>Projects listed here had code contributions - other contributions, such as issues or design insights, are not included.</p>
<div>
<table>
<thead>
<tr>
<th>Name</th>
<th>Brief</th>
<th>Source</th>
</tr>
</thead>
<tbody>
<tr>
<td>PyCord</td>
<td>"Pycord, a maintained fork of discord.py, is a python wrapper for the Discord API"</td>
<td>
<a href="https://github.com/Pycord-Development/pycord" rel="noopener" target="_blank" class="icon">
<img src="img/github.svg" alt="GitHub" title="GitHub" width="32px" height="32px" class="icon">
</a>
</td>
</tr>
<tr>
<td>matrix-nio</td>
<td>"A Python Matrix client library, designed according to sans I/O principles"</td>
<td>
<a href="https://github.com/matrix-nio/matrix-nio" rel="noopener" target="_blank" class="icon">
<img src="img/github.svg" alt="GitHub" title="GitHub" width="32px" height="32px" class="icon">
</a>
</td>
</tr>
<tr>
<td>discord.py</td>
<td>"An API wrapper for Discord written in Python"</td>
<td>
<a href="https://github.com/Rapptz/discord.py" rel="noopener" target="_blank" class="icon">
<img src="img/github.svg" alt="GitHub" title="GitHub" width="32px" height="32px" class="icon">
</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
</div>
</body>
</html>