forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (90 loc) · 2.45 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
<html>
<head>
<title>Zach Schnell</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<script
src="https://kit.fontawesome.com/497375d0b1.js"
crossorigin="anonymous"
></script>
</head>
<body>
<section class="flex flex-column center w-m my mb-l">
<h1>Hi, I'm Zach</h1>
<p>
I'm a <s>Senior Data Engineer</s> Software Engineer at Mastercard, based
in Washington, DC. I studied Quantitative Social Science and Computer
Science at Dartmouth. My thesis looked at how tech tools support college
counseing.
</p>
<ul class="w-s flex justify-content-space-between center">
<li>
<a href="https://github.com/zchr"
><i class="fab fa-github"></i>
<span class="hover-underline">Github</span></a
>
</li>
<li>
<a href="https://www.linkedin.com/in/zachschnell"
><i class="fab fa-linkedin-in"></i>
<span class="hover-underline">LinkedIn</span></a
>
</li>
<li>
<a href="mailto:[email protected]">
<i class="far fa-envelope"></i>
<span class="hover-underline">Email me</span>
</a>
</li>
</ul>
</section>
<section class="flex flex-column center w-m my mb-l">
<h2>Recent projects</h2>
<div>
<h3>Patom</h3>
<p>
Query a Postgres database & view results from within Atom.
<a href="">Extension</a>,
<a href="https://github.com/zchr/patom" class="hover-underline"
>Souce code</a
>
</p>
</div>
<div class="mt">
<h3>Hearts</h3>
<p>
Play the card game Hearts online.
<a href="https://github.com/zchr/hearts" class="hover-underline"
>Souce code</a
>
</p>
</div>
<div class="mt">
<h3>Take 10</h3>
<p>
A not-so-social messenger bot that prods you to get off Facebook.
<a href="https://github.com/zchr/taketen" class="hover-underline"
>Souce code</a
>
</p>
</div>
</section>
<section class="flex flex-column center w-m my mb-l">
<h2>Skills</h2>
<div id="skills"></div>
</section>
<script
crossorigin
src="https://unpkg.com/react@17/umd/react.production.min.js"
></script>
<script
crossorigin
src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"
></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script type="text/babel" src="skills.js"></script>
</body>
</html>