-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.html
More file actions
37 lines (35 loc) · 1.75 KB
/
Copy pathnotes.html
File metadata and controls
37 lines (35 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes</title>
<link rel="icon" type="image/x-icon" href="images/favicon_mike_lau.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap" rel="stylesheet">
</head>
<div class="grey-block">
<div id="menu"></div>
<script>
fetch("menu.html")
.then(res => res.text())
.then(data => {
document.getElementById("menu").innerHTML = data;
});
</script>
</div>
<div class="research">
<div class="research-page">
<h1>Notes</h1>
<p>Here are selected notes that I have written. They borrow heavily from a few references and do not present any original ideas.</p>
<br>
<p><a href="notes/mri.pdf">The viscosity problem and the magnetorotational instability</a></p>
<p><a href="notes/darwin.pdf">The Darwin instability</a></p>
<p><a href="notes/LIGOeccentricity.pdf">How eccentric are LIGO/Virgo double neutron stars?</a></p>
<p><a href="roche_lobe.html">Interactive Roche lobe plotter</a></p>
</div>
</div>