summaryrefslogtreecommitdiff
path: root/src/writing/index.php
blob: 4a3c398686ac8a1907a89672fe25c35abd1f92f2 (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
43
<?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!
	Language in general tends to be fairly efficient for communicating certain types of thought, and
	while I typically prefer spoken language, written language enables more carefully structured logical
	argumentation--which is useful for philosophy and mathematics.
</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> - epistemology of ethics</h3></li>
</ul>
<h2>Mathematics</h2>
<p>
	Math textbooks sometimes explain ideas in a strange and convoluted way. These articles are intended to be
	direct, and clear, explanations of various topics in mathematics.
</p>
<ul>
	<li><h3><a href="calculus.php">The Calculus of Infinitesimals</a> - an introduction</h3></li>
</ul>
<h2>Manifestos</h2>
<p>
	Multi-page documents detailing my interpretations of particularly complex or controversial topics.
</p>
<ul>
	<li><h3><a href="systemsmanifesto.php">Systems</a> - a microcosm of reality</h3></li>
</ul>
<h2>Esoterica</h2>
<p>
	This section contains articles that are structured in an unusual way, or those pertaining to unusual subjects.
</p>
<ul>
	<li><h3><a href="corrigenda.php">Corrigenda</a> - everything I've ever done wrong</h3></li>
	<li><h3><a href="hardproblem.php">The Hard Problem</a></h3></li>
</ul>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>