-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooks.html
More file actions
103 lines (90 loc) · 3.46 KB
/
books.html
File metadata and controls
103 lines (90 loc) · 3.46 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Books | Nicholas Amadeus</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>Nicholas Amadeus</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Research</a></li>
<li><a href="#">Personal</a></li>
<li><a href="#">Publications</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<section>
<h2>Bookshelf</h2>
<p>
This is a record of the books that have influenced me most deeply, categorized for easy navigation.
Each category reflects a different dimension of my curiosity and inquiry.
</p>
</section>
<section>
<h3 id="fiction">Fiction</h3>
<ul>
<li><i></i> by </li>
<li><i></i> by </li>
</ul>
</section>
<section>
<h3 id="mathematics">Mathematics</h3>
<ul>
<li><i>High-Dimensional Probability</i> by Roman Vershynin</li>
<li><i>Real Analysis: Modern Techniques and Their Applications</i> by G. Folland</li>
<li><i>Optimal Transport: Old and New</i> by Cédric Villani</li>
<li><i></i> by </li>
<li><i></i> by </li>
<li><i>Fractals Everywhere</i> by M. Barnsley</li>
<li><i></i> by </li>
<li><i></i> by </li>
</ul>
</section>
<section>
<h3 id="sciences">Sciences</h3>
<ul>
<li><i>Structure and Interpretation of Classical Mechanics</i></li>
<li><i>On Growth and Form</i> by D’Arcy Wentworth Thompson</li>
<li><i>The Selfish Gene</i> by Richard Dawkins</li>
</ul>
</section>
<section>
<h3 id="nonfiction">Philosophy</h3>
<ul>
<li><i></i> by </li>
<li><i></i> by </li>
</ul>
</section>
<section>
<h3 id="economics">Economics and Business</h3>
<ul>
<li><i>Principles of Economics</i> by N. Gregory Mankiw</li>
<li><i>The Intelligent Investor</i> by Benjamin Graham</li>
<li><i>Principles of Economics</i> by N. Gregory Mankiw</li>
<li><i>The Intelligent Investor</i> by Benjamin Graham</li>
</ul>
</section>
<section>
<h3 id="nonfiction">Nonfiction</h3>
<ul>
<li><i>Memories, Dreams, Reflections</i> by Carl Jung</li>
<li><i>Beyond Good and Evil</i> by Friedrich Nietzsche</li>
<li><i>Thinking, Fast and Slow</i> by Daniel Kahneman</li>
</ul>
</section>
</main>
<footer>
<p>Last updated - 17/9/2024</p>
</footer>
</div>
<script src="stupid.js"></script>
</body>
</html>