blob: 09fd4e1058d8eb9b4b848d4243144dcce0ae2dbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
$title = "Et Cetera";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>
It turns out that not everything falls neatly into any of the categories on my home page. This page is for those things.
</p>
<h2>Web Services</h2>
<p>
I host a few different services on this VPS. This site--aberrantflux.xyz--doesn't need much introduction. There's also
<a href=https://files.aberrantflux.xyz>files.aberrantflux.xyz</a>, my file server; and
<a href=https://git.aberrantflux.xyz>git.aberrantflux.xyz</a>, my git server. I'm thinking about adding a web radio for
my music.
</p>
<h2>Employment</h2>
<p>
My skills are fairly multidisciplinary, and so I have a <a href="employment/">dedicated index page</a> to list them. Think of it like
an interactive résumé.
</p>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|