summaryrefslogtreecommitdiff
path: root/src/programming/index.php
blob: 3ebc893ffee90b0a04e07888e815365e78b65c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
$title = "Programming";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>
	My repositories (including some notes) are at aberrantflux.xyz/cgit. I also have some stuff at github.com/kaistevenson. The repo for this site is <a href=https://git.aberrantflux.xyz/aberrantflux-site.git>aberrantflux.xyz/cgit/aberrantflux-site.git</a> if you want to get a little meta. I use cgit to serve my repositories over HTTP, and otherwise use SSH.
</p>
<h2>Projects</h2>
<p>
	I have a few particularly cool projects, like <a href=https://git.aberrantflux.xyz/precedent.git>Precedent</a>, my interpreted
	programming language, and <a href=https://git.aberrantflux.xyz/snake3.git>Snake3</a>, a fun snake game.
	If you want to contribute to any of my repositories, just email me
	with a diff and a brief description of your changes. If I like your
	commit, I'll integrate it.
</p>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>