summaryrefslogtreecommitdiff
path: root/src/writing/index.php
blob: f138822dcfc5f7ec39389e0d4c0c41b6e4871978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
$title = "Writing";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>
	This is the index page for my writing. Each link leads to a different thing that I've written!
	Writing happens to be one of the better ways to express logically structured ideas, and it also
	happens to be something I find relatively easy. For those reasons, I prefer communicating through
	the written (or spoken) word than through mathematics or art.
</p>
<h2>Essays</h2>
<p>
	Moderately structured, opinionated writing.
</p>
<ul>
	<li><h3><a href="cryptography.php">Cryptography</a> - because secret messages are cool</h3></li>
	<li><h3><a href="moralrealism.php">Moral realism</a> - because people make a big deal out of murder</h3></li>
</ul>
<h2>Mathematics</h2>
<p>
	My writing in Greek.
</p>
<ul>
	<li><h3><a href="calculus.php">The Calculus of Infinitesimals</a> - an introduction</h3></li>
</ul>
<h2>Manifestos</h2>
<p>
	Plural. For future-proofness.
</p>
<ul>
	<li><h3><a href="systemsmanifesto.php">Systems</a> - a microcosm of reality</h3></li>
</ul>
<h2>Esoterica</h2>
<p>
	The fun stuff.
</p>
<ul>
	<li><h3><a href="corrigenda.php">Corrigenda</a> - everything I've ever done wrong</h3></li>
	<li><h3><a href="epiphenomenalism.php">Epiphenomenalism</a> - you aren't in control</h3></li>
</ul>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>