diff options
author | Kai Stevenson <kai@kaistevenson.com> | 2023-02-23 02:19:15 -0800 |
---|---|---|
committer | Kai Stevenson <kai@kaistevenson.com> | 2023-02-23 02:19:15 -0800 |
commit | 19d604f0abb40afffe82e619b24e4c63665e47de (patch) | |
tree | 839e5f20d565e6b25ddd9a6c8541bb6cbd6fc043 /src/misc | |
parent | dfed378228447a9c798d8bfd0f4c058acda4c78c (diff) |
wrote a bunch of stuff
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/index.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/misc/index.php b/src/misc/index.php new file mode 100644 index 0000000..0e61640 --- /dev/null +++ b/src/misc/index.php @@ -0,0 +1,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://aberrantflux.xyz/cgit/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://aberrantflux.xyz/cgit/precedent.git>Precedent</a>, my interpreted
+ programming language, and <a href=https://aberrantflux.xyz/cgit/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"); ?>
|