-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 2.21 KB
/
index.html
File metadata and controls
57 lines (51 loc) · 2.21 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#050814">
<title>Richard Schoch</title>
<meta name="description"
content="Richard Schoch, software engineer focused on application development, architecture, and data engineering.">
<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=Inter+Tight:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="icon" href="./favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<main class="site-shell" aria-label="Richard Schoch">
<canvas id="ascii-swirl" aria-hidden="true"></canvas>
<canvas id="black-hole-effect" aria-hidden="true"></canvas>
<div class="glass-haze" aria-hidden="true"></div>
<nav class="topline" aria-label="Primary">
<div class="nav-links">
<a href="https://github.com/rschoch" target="_blank" rel="noopener noreferrer">GitHub</a>
<a href="https://www.linkedin.com/in/richard-schoch-3706b43b3/" target="_blank" rel="noopener noreferrer">
LinkedIn
</a>
<a href="mailto:rschoch.dev@gmail.com" target="_blank" rel="noopener noreferrer">Mail</a>
</div>
</nav>
<section class="intro" aria-labelledby="hero-title">
<div class="intro-heading">
<img class="avatar" src="./avatar_circular.jpg" width="92" height="92" alt="Portrait of Richard Schoch">
<h1 class="name" id="hero-title">Richard Schoch</h1>
</div>
<p class="lead">
Software engineer working on applications, distributed systems, and data platforms.
</p>
<p>
Experience across fullstack development, distributed systems, requirements work, product
ownership, technical coordination, and mentoring.
</p>
<p>
I try to build maintainable software with clear interfaces while balancing technical
trade-offs.
</p>
</section>
</main>
<script src="./swirl.js" defer></script>
<script src="./blackhole.js" defer></script>
</body>
</html>