-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (50 loc) · 2.52 KB
/
index.html
File metadata and controls
62 lines (50 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js">
</script> <!-- using MathJax -->
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
}
};
</script>
</head>
<title>ada's blog</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<body>
<header> <!-- general website header -->
<a href="./" class="title">ada's blog</a>
</header>
<div> <!-- decription -->
<p>posts about math, projects, niche interests, etc.</p>
<p>check out my <a href="https://github.com/apzzd">Github</a>, <a href="https://artofproblemsolving.com/community/user/600906">Art of Problem Solving</a>, and <a href="https://tatoeba.org/en/user/profile/apzzd">Tatoeba</a> accounts, too.</p>
</div>
<div class="post-list"> <!-- list of posts -->
<div class="post-link-div"> <!-- a post link, with description -->
<a href="./posts/vector-sketches-10-21-2025.html" class="post-link-head">vector sketches</a>
<p class="post-link-descrip">lines and squares and cubes and tesseracts</p>
</div>
<div class="post-link-div"> <!-- a post link, with description -->
<a href="./posts/billardtische-parkettieren-deutschpost-9-6-2025.html" class="post-link-head">billardtische und unendliche parkettieren (deutsch)</a>
<p class="post-link-descrip">ein sehr kurzes deutschpost über billardtische</p>
</div>
<div class="post-link-div"> <!-- a post link, with description -->
<a href="./posts/reciprocals-and-zn-II-8-5-2025.html" class="post-link-head">reciprocals and $\mathbb{Z}_n$ (part II)</a>
<p class="post-link-descrip">some dubious and potentially inconsistent reciprocal-finding strategies :/</p>
</div>
<div class="post-link-div"> <!-- a post link, with description -->
<a href="./posts/reciprocals-and-zn-7-26-2025.html" class="post-link-head">reciprocals and $\mathbb{Z}_n$ (part I)</a>
<p class="post-link-descrip">things get weird when finite sets are closed under addition</p>
</div>
<div class="post-link-div"> <!-- a post link, with description -->
<a href="./posts/domino-problem-7-6-2025.html" class="post-link-head">arranging dominos</a>
<p class="post-link-descrip">how many ways can you arrange some dominos on a rectangle, and what does that have to do with fibonacci numbers?</p>
</div>
</div>
</body>
</html>