-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 890 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dipam's Notebook</title>
<link rel="stylesheet" href="https://unpkg.com/chota@latest" />
<link rel="stylesheet" href="styles.css" />
</head>
<body class="dark">
<section class="container">
<h1>Dipam's Notebook</h1>
<div class="card">
<h3><a href="./collisions.pdf">Elastic Collisions</a></h3>
<p>
Solutions to one and two dimensional elastic collisions of spheres.
</p>
</div>
<div class="card">
<h3><a href="./100boxes/">100 Boxes</a></h3>
<p>
Overcomplicating simple probability results by using conditional
probabilities and the total probability theorem.
</p>
</div>
</section>
</body>
</html>