-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (89 loc) · 4.7 KB
/
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
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="Harriton Research Lab" content="A club for high school students to explore science and coding with their friends through research.">
<meta name="keywords" content="Research,High School,Coding,Python,Harriton,Harriton High School,Harriton Research Lab">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.05">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>HRL</title>
<link rel="stylesheet" href="resources/css/mvp.css">
<link rel="icon" href="https://raw.githubusercontent.com/HarritonResearchLab/hrl/main/images/favicon.ico">
<style>
body.lightMode {
--color: #118bee;
--color-accent: #118bee15;
--color-bg: #fff;
--color-bg-secondary: #e9e9e9;
--color-link: #118bee;
--color-secondary: #920de9;
--color-secondary-accent: #920de90b;
--color-shadow: #f4f4f4;
--color-table: #118bee;
--color-text: #000;
--color-text-secondary: #999;
}
</style>
</head>
<body class="lightMode">
<header>
<nav>
<a href="https://harritonresearchlab.org"><img alt="" src="images/hrl2.png" height="100"></a>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#current">Current Projects</a></li>
<li><a href="#past">Past Projects</a></li>
<li><a href="#join-us">Join Us</a></li>
</ul>
</nav>
<h1 id="home">Harriton Research Lab</h1>
<blockquote> <i>Collective Computational Research</i>
<footer>Founded in 2019 at Harriton High School</footer>
</blockquote>
<section>
<header>
<h2 id="current">Current Projects</h2>
</header>
<aside>
<img alt="" src="./images/TIC 118807628.png" height="150">
<h3>Exoplanets</h3>
<p>A group of us from Sunny Hills are working with Dr. Luke Bouma on looking for young exoplanets with NASA's Transiting Exoplanet Survey Satellite. </p>
<p><a href="https://github.com/HarritonResearchLab/sunnyhills" target="_blank"><em>GitHub
↗</em></a>
</aside>
<aside>
<img alt="" src="./images/mendelian.png" height="150">
<h3>Mendelian Randomization</h3>
<p>Together with Dr. Ye, another group of us from Sunny Hills, Lower Merion, and Harriton are investigating nutritional genomics and mendelian randomization.</p>
<p><a href="https://github.com/HarritonResearchLab/genomics" target="_blank"><em>GitHub
↗</em></a>
</aside>
<aside>
<img alt="" src="https://nanonets.com/blog/content/images/2019/12/Tesseract.gif" height="150">
<h3>Economics</h3>
<p>With Dr. Sutirtha Bagchi, the final group of us from Harriton are exploring global wealth inequality and the effects of partisian politics on education budgets over multiple election cycles.</p>
<p><a href="https://github.com/HarritonResearchLab/econ" target="_blank"><em>GitHub
↗</em></a>
</aside>
</section>
<section>
<header>
<h2 id="past">Past Projects</h2>
</header>
<aside>
<img alt="HTML only" src="./images/period_comparison.png" height="150">
<h3>Young Stellar Objects</h3>
<p>Between 2019 and 2021, a group of us from Harriton worked with Dr. Lynne Hillenbrand to investigate the variability of young stellar objects with the Zwicky Transient Facility. This project resulted in our club's first publication (in the Astronomical Journal)!</p>
<p><a href="https://arxiv.org/abs/2203.09633" target="_blank"><em>arXiv Preprint
↗</em></a></p>
<p><a href="https://www.lmsd.org/about-lmsd/newsroom/article/~post/stellar-rams-research-paper-published-by-prestigious-astronomical-journal-20220406" target="_blank"><em>In the News
↗</em></a></p>
</aside>
</section>
<h2 id="join-us">Join Us</h2>
<p><a href="https://github.com/HarritonResearchLab" target="_blank"><em>GitHub
↗</em></a><a href="https://discord.gg/4yz4aMf" target="_blank"><em>Discord
↗</em></a></p>
</header>
</body>
</html>