-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (93 loc) · 4.11 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
<!doctype html>
<html lang="en">
<head>
<!-- Some structured data about Person: Shane Exterkamp -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"name": "Shane Exterkamp",
"description": "American software engineer.",
"jobTitle": "Software Engineer",
"birthDate": "1994-03-21",
"alumniOf": {
"@type": "EducationalOrganization",
"name": "University of Florida"
},
"url": "https://exterkamp.codes",
"sameAs": [
"https://www.facebook.com/shane.exterkamp",
"https://github.com/exterkamp",
"https://www.linkedin.com/in/shane-exterkamp/"
]
}
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#edf1f3">
<meta name="Description" content="The homepage of Shane Exterkamp.">
<link rel="manifest" href="manifest.json">
<link rel="shortcut icon" href="favicon.ico">
<link rel="preload" href="https://fonts.gstatic.com/s/opensans/v29/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQUwaEQbjA.woff" as="font" type="font/woff2" crossorigin>
<title>Extra-Camp</title>
<link rel="apple-touch-icon" href="static/img/headshot_dithered.png">
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<main>
<div>
<h1>
Exterkamp<br id="title-break">
<span class="highlight">
(/ˈeks.ter.kæmp/)
</span>
</h1>
<h2>Who am I?</h2>
<p>
I'm a software engineer in Northern California.
</p>
<p>
My online prescence:
<a href=https://github.com/exterkamp>Github</a>,
<a href=https://www.linkedin.com/in/shane-exterkamp>Linkedin</a>
</p>
</div>
<div>
<h2>What do I do?</h2>
<p>
I work at Google<!--TODO(exterkamp): make a stock ticker -->, on <a href="https://fi.google.com/">Google Fi</a>, previously on Chrome,
focusing on web performance with <a href=https://github.com/GoogleChrome/lighthouse>Lighthouse</a>
and <a href="https://developers.google.com/speed/pagespeed/insights/">Pagespeed Insights</a>.
</p>
<h2>(Questionably) Useful Sites</h2>
<p>
<a href=https://benchmark.exterkamp.codes>Lighthouse UltraDumb® benchmark tester.</a>
</p>
<p>
<a href=https://100.exterkamp.codes>Lighthouse 100/100 score example site.</a>
</p>
<p>
<a href=https://encode.exterkamp.codes>Text encoding tool.</a>
</p>
<h2>Things I've Made/Done</h2>
<h3>Code</h3>
<ul>
<li><a href=https://github.com/exterkamp/keyboard_firmware>Custom Keyboards and Firmware</a></li>
<li><a href=https://github.com/exterkamp/Python-Data-Structures>Lo-Fi Python Data Structures to chill and relax to</a></li>
<li><a href=https://github.com/AstroTeam/Astro>Astro, a roguelike in space</a></li>
</ul>
<!-- TODO(exterkamp): make an infinite music scroll -->
<footer>✌️ <i>2025</i></footer>
</div>
</main>
<script>
// Check that service workers are registered
if ('serviceWorker' in navigator) {
// Use the window load event to keep the page load performant
window.addEventListener('load', () => {
navigator.serviceWorker.register('sw.js');
});
}
</script>
</body>
</html>