diff options
author | Preston Pan <preston@nullring.xyz> | 2022-11-08 10:28:58 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2022-11-08 10:28:58 -0800 |
commit | dc2fd65e6bfeaa2c475d5042f64263ac9427c22f (patch) | |
tree | 3f680c74d831c984048080e0ff7d86fb7c5f1f05 /build/website/index.html |
completely changed backend
Diffstat (limited to 'build/website/index.html')
-rw-r--r-- | build/website/index.html | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/build/website/index.html b/build/website/index.html new file mode 100644 index 0000000..d5e6585 --- /dev/null +++ b/build/website/index.html @@ -0,0 +1,113 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta name="description" content="My personal website."> + <meta name="author" content="Preston Pan"> + <link rel="stylesheet" type="text/css" href="/css/style.css" /> + + <link rel="icon" type="image/png" href="/img/favicon.png"> + <title> +Preston Pan + </title> +</head> +<body> + <div class="nav" class="justcenter"> + <a href="/index.html" class="justleft">Home</a> | + <a href="/about/" class="justleft">About</a> | + <a href="/about/contact.html" class="justleft">Contact</a> + + <hr> + </div> + + <div class="content"> +<h1>Preston Pan</h1> +<p> + Hi! I'm Preston Pan, and this is my v3 of my website. + I've got it to work with a shell script that I made. + In the future, I might release the shell script as a separate + thing, but for now it's apart of the + <a href="https://society.nullring.xyz">Null Identity</a> website + and this one. +</p> + +<p>Some things about myself:</p> +<ul> + <li>I play improvisational piano, and I sing as a hobby.</li> + <li>I do some amount of programming as a hobby.</li> + <li>I also do some amount of mathematics and physics as a hobby.</li> + <li>I try to read up on economics as a hobby.</li> + <li>I'm trying to get my ham radio basic license.</li> +</ul> + +<p> + Of course, those are rather surface level things, but the point is that + you will find things related to the topics above on this website. + The website is structured in a hiearchical format just like in filesystems + because I find that to be the easiest balance between user simplicity + and developer simplicity. +</p> + +<p> + Note: most things on this website will 404 right now simply because of the + fact that I have a limited amount of time and have just changed the backend + for this website. +</p> +<h2>Topics</h2> + +<p>Here, you will find topics related to: </p> +<ul> + <li><a href="./about/">About</a> -- About me and this website.</li> + <li><a href="./physics/">Physics</a> -- Rates of change!</li> + <li><a href="./economics/">Economics</a> -- Rates of exchange!</li> + <li><a href="./technology/">Technology</a> -- Rates of finger pain! (Just kidding, I'm not an emacs user).</li> + <li><a href="./projects/">Projects</a> -- programming and other projects.</li> + <li><a href="./mathematics/">Mathematics</a> -- An underlying framework for all things that are logical.</li> + <li><a href="./philosophy/">Philosophy</a> -- An underlying framework for all things that are.</li> + <li><a href="./music/">Music</a> -- my piano playing and singing (and maybe other instruments too).</li> +</ul> + +<p>Many articles will be written in groff and compiled to pdf.</p> + +<h2>Services</h2> + +<p>Here are the services that I run on my server/socially:</p> +<ul> + <li><a href="https://radio.prestonpan.tech">Radio</a> -- listen to music that I also listen to.</li> + <li><a href="https://git.prestonpan.tech">Git server</a> -- see the code that I write or my dotfiles and other stuff.</li> + <li><a href="https://nullring.xyz">The null webring</a> -- a webring that I made (apparently there is another one by this name but ignore that).</li> + <li><a href="https://society.nullring.xyz">The Null Identity </a> -- it's a <b>ahem</b> tightly knit community located in victoria. Yeah, that's the term.</li> + <li>IRC server: ircs://prestonpan.tech:6697, no verification of tls (self signed).</li> +</ul> + +<h2>Webrings</h2> + +<p>This website is a part of the following webrings:</p> +<h3>The Null Webring</h3> +<p><a href="https://kaistevenson.com">prev</a> <a href="https://nullring.xyz">Nullring</a> <a href="https://www.aberrantflux.xyz">next</a></p> + +<h2>Donating</h2> +<p> + Basically, if you like any of what I am doing, donate! My servers aren't free, and I do run a lot of stuff + for the tech related community in our school, and I also try to write good software. I like monero as a + donation method because: +</p> +<ul> + <li>The network is probably going to last longer than other cryptocurrencies due to it actually being private and self-sustaining.</li> + <li>Compared to services like PayPal, I don't care about having an account or any extra glitter. I just want a simple payment method that can be anonymous.</li> + <li>The transaction fees are extremely low compared to other cryptocurrencies.</li> + <li>Proof of work is bad for the environment, but I'll start caring about that when I get taxed for carbon consumption or something.</li> +</ul> + +<p>Here are some methods of donating I support:</p> +<ul> + <li>XMR: <pre class="crypto-pre"><code class="crypto"></code></pre></li> +</ul> +<p> + Thanks a lot for your support! +</p> + </div> +</body> +</html> |