-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (61 loc) · 2.91 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
<head>
<meta charSet="utf-8" />
<title>Sean MacPherson</title>
<meta name="author" content="Sean MacPherson">
<link rel="canonical" href="https://www.seanmacpherson.com">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="styles.css">
<html lang="en">
</head>
<body>
<div class="layout">
<div class="content">
<div>
<img class="headshot" id="headshot" src="assets/headshot.png">
</div>
<div>
<p>Hi, I'm Sean 👋🏼. I'm a programmer interested in machine learning,
health, and the environment.
</p>
<p>
Previously, I've worked on machine learning extensibility at <a
href="https://www.snowflake.com">Snowflake</a>, built time
series
forecasting platforms as the founding engineer at <a href="https://www.myst.ai">Myst</a>, and
created systems for drawing insights
from
device
data at <a href="https://store.google.com/us/category/connected_home">Google Nest</a>.</p>
<p>Some of the
activites I enjoy in my free time are meditating, playing with <a id="dogs-link" href="#">dogs</a>,
watching
<a id="arsenal-link" href="#">soccer</a>,
and traveling.
</p>
</div>
<div>
<p>Feel free to <a href="mailto:[email protected]">contact me</a> or <a href="bio.html">read
my detailed bio</a> to learn more about my background.</p>
</div>
<div class="footer">
<p>Sean MacPherson</p>
<p>·</p>
<p>
48°52.6'S 123°23.6'W
</p>
<p>·</p>
<a class="socials" href="https://www.linkedin.com/in/sean-macpherson" title="LinkedIn"><img
src="assets/linkedin-logo.svg"></a>
<a class="socials" href="https://github.com/smacpher" title="GitHub"><img
src="assets/github-logo.svg"></a>
</div>
</div>
</div>
<script>
var headshot = document.getElementById('headshot');
document.getElementById('arsenal-link').addEventListener('mouseover', function () { headshot.src = "assets/arsenal.gif" });
document.getElementById('arsenal-link').addEventListener('mouseout', function () { headshot.src = "assets/headshot.png"; });
document.getElementById('dogs-link').addEventListener('mouseover', function () { headshot.src = "assets/rusty.png" });
document.getElementById('dogs-link').addEventListener('mouseout', function () { headshot.src = "assets/headshot.png"; });
</script>
</body>