summaryrefslogtreecommitdiff
path: root/src/writing/index.php
blob: bba0f9955791bef019c7f27f7fe0403ffe8fd48a (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
<?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. If you're the psychoanalytical type, you may be interested to know
	that I find it much more fun to deconstruct a question than to construct an answer. 
</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>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"); ?>