-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
481 lines (445 loc) Β· 12.9 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Shane Earley</title>
<meta name="description" content="Living right outside of Boston, MA. Learning to build reliable software and hardware products with startups.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap">
<style>:root {
/* Colors */
--primaryColor: #212529;
--secondaryColor: #95a5a6;
--accentColor: #f1c40f;
--linkColor: #2ecc71;
--mutedColor: #f4f6f6;
/* Typography */
--ratio: 1.25;
--scale0: 1rem;
--scale1: calc(var(--scale0) * var(--ratio));
--scale2: calc(var(--scale1) * var(--ratio));
--scale3: calc(var(--scale2) * var(--ratio));
--scale4: calc(var(--scale3) * var(--ratio));
--scale5: calc(var(--scale4) * var(--ratio));
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 14px;
}
body {
color: var(--primaryColor);
display: grid;
font: 1em/1.5 Lato, sans-serif;
gap: 2em;
grid-template-columns:
[full-start]
1fr
[main-start side-start]
minmax(min-content, 12em)
[side-end content-start]
minmax(min-content, 36em)
[main-end content-end]
1fr
[full-end];
grid-template-rows: auto [content] 0;
margin-bottom: 4em;
}
body::before {
content: '';
grid-column: full;
grid-row: content;
}
ol,
ul {
padding-left: 1em;
}
li + li {
margin-top: 0.2em;
}
li::marker {
color: var(--mutedColor);
}
a {
color: var(--linkColor);
text-decoration: none;
transition: color 0.2s;
}
a:focus,
a:hover {
color: var(--accentColor);
}
h1,
h2,
h3,
h5 {
font-weight: normal;
}
h1,
h2,
h3 {
line-height: 1.2;
}
h1 {
font-size: var(--scale5);
}
h2 {
color: var(--secondaryColor);
font-size: var(--scale4);
}
h3 {
color: var(--accentColor);
font-size: var(--scale3);
grid-column: side;
margin-bottom: 1rem;
}
h4 {
font-size: var(--scale2);
}
h5 {
font-size: var(--scale1);
}
h6 {
font-size: var(--scale0);
}
blockquote {
border-left: 0.2em solid var(--mutedColor);
padding-left: 1em;
}
cite {
color: var(--secondaryColor);
font-style: inherit;
}
cite::before {
content: 'β ';
}
.masthead {
background: var(--mutedColor);
display: inherit;
gap: inherit;
grid-column: full;
grid-template-columns: inherit;
padding: 4em 0;
row-gap: 0;
}
.masthead > *,
section {
grid-column: main;
}
article > * + *,
blockquote > * + * {
margin-top: 0.6em;
}
.stack {
display: grid;
gap: 1.5em;
}
.grid-list {
display: grid;
gap: 1em;
}
.spaced-list {
display: flex;
align-items: center;
justify-content: space-between;
}
.spaced-list:first-child::before {
border-bottom: 1px solid var(--mutedColor);
content: '';
flex-grow: 1;
margin: 0 1em;
order: 1;
}
.spaced-list > :nth-child(2) {
order: 2;
}
.tag-list {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 0;
}
.tag-list > li {
background: var(--mutedColor);
margin: 0 0.2em 0.2em 0;
padding: 0.2em 0.6em;
}
@media print, (min-width: 48em) {
h3 {
text-align: right;
margin-bottom: inherit;
}
.masthead > *,
section {
grid-column: content;
}
section {
display: contents;
}
.grid-list {
grid-template-columns: 1fr 1fr;
}
}
</style>
</head>
<body>
<header class="masthead">
<h1>Shane Earley</h1>
<h2>Software Engineer</h2>
</header>
<section id="contact">
<h3>Contact</h3>
<div class="grid-list">
<div>
<h4>Email</h4>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</section>
<section id="about">
<h3>About</h3>
<article>
<p>Living right outside of Boston, MA. Learning to build reliable software and hardware products with startups.</p>
</article>
</section>
<section id="profiles">
<h3>Profiles</h3>
<div class="grid-list">
<div>
<h4>GitHub</h4>
<a href="https://www.github.com/shanejearley">github.com/shanejearley</a>
</div>
<div>
<h4>Keybase</h4>
<a href="https://keybase.io/shanejearley">keybase.io/shanejearley</a>
</div>
<div>
<h4>LinkedIn</h4>
<a href="https://www.linkedin.com/in/shanejearley">in/shanejearley</a>
</div>
</div>
</section>
<section id="work">
<h3>Work</h3>
<div class="stack">
<article>
<header>
<div class="spaced-list">
<h4>Seacoast Technical Partners</h4>
<span>
<time datetime="2022-02-01">Jan 2022</time> β
Present
</span>
</div>
<div class="spaced-list">
<strong>Co-Founder</strong>
</div>
</header>
<p>Seacoast Technical Partners is doing prototyping and product development for early stage startups.</p>
<h5>Highlights</h5>
<ul>
<li>Configure data pipeline infrastructure as code for a wealth tech startup</li>
<li>Packaged a desktop app with a webcam-based heart rate monitor</li>
</ul>
</article>
<article>
<header>
<div class="spaced-list">
<h4>Consensus Networks</h4>
<span>
<time datetime="2020-08-01">Jul 2020</time> β
Present
</span>
</div>
<div class="spaced-list">
<strong>Lead Engineer</strong>
</div>
</header>
<p>Consensus Networks is building hardware and software infrastructure to protect, monitor, and mobilize assets.</p>
<h5>Highlights</h5>
<ul>
<li>Architect blood supply/demand module to integrate with Navy medical</li>
<li>Build sites, contracts, and distributed systems for secure peer-to-peer networks</li>
</ul>
</article>
<article>
<header>
<div class="spaced-list">
<h4>Contractor</h4>
<span>
<time datetime="2019-05-01">Apr 2019</time> β
<time datetime="2022-02-01">Jan 2022</time>
</span>
</div>
<div class="spaced-list">
<strong>Software Engineer</strong>
</div>
</header>
<p>I was providing large to small businesses with secure and lightweight software development services.</p>
<h5>Highlights</h5>
<ul>
<li>Develop enterprise apps for a diverse set of device platforms</li>
<li>Create maintainable software development and release workflows for businesses</li>
</ul>
</article>
<article>
<header>
<div class="spaced-list">
<h4>Local Goods</h4>
<span>
<time datetime="2021-09-01">Aug 2021</time> β
<time datetime="2023-01-01">Dec 2022</time>
</span>
</div>
<div class="spaced-list">
<strong>Technical Co-Founder</strong>
</div>
</header>
<p>Local Goods was building digital tools for entrepreneurship, fitness, and learning.</p>
<h5>Highlights</h5>
<ul>
<li>Build ecommerce storefront widgets to support shoppers and merchants</li>
<li>Invent fitness and learning applications using high quality data, statistics, and ML</li>
</ul>
</article>
<article>
<header>
<div class="spaced-list">
<h4>Otter Therapies</h4>
<span>
<time datetime="2019-08-01">Jul 2019</time> β
<time datetime="2020-10-31">Oct 2020</time>
</span>
</div>
<div class="spaced-list">
<strong>Technical Co-Founder</strong>
</div>
</header>
<p>Otter Therapies was building a collaborative care coordination platform for special needs parents, therapists and caregivers.</p>
<h5>Highlights</h5>
<ul>
<li>Build an app for care teams with chat, files, and event scheduling</li>
<li>Design secure architecture for handling sensitive patient data</li>
</ul>
</article>
<article>
<header>
<div class="spaced-list">
<h4>Vital View Technologies</h4>
<span>
<time datetime="2019-05-01">Apr 2019</time> β
<time datetime="2019-12-31">Dec 2019</time>
</span>
</div>
<div class="spaced-list">
<strong>Technical Product Manager</strong>
</div>
</header>
<p>Vital View Technologies is building a non-contact health sensing platform for chronic disease care.</p>
<h5>Highlights</h5>
<ul>
<li>Prototype algorithms to process breathing and heartbeat signals</li>
<li>Manage product milestones and coordinated engineering team meetings</li>
</ul>
</article>
</div>
</section>
<section id="education">
<h3>Education</h3>
<div class="stack">
<article>
<header>
<div class="spaced-list">
<h4>University of Notre Dame</h4>
<span>
<time datetime="2018-06-01">May 2018</time> β
<time datetime="2019-05-01">Apr 2019</time>
</span>
</div>
<div class="spaced-list">
<strong>Engineering, Science, and Technology Entrepreneurship</strong>
</div>
</header>
<p>M.S.</p>
</article>
<article>
<header>
<div class="spaced-list">
<h4>Saint Anselm College</h4>
<span>
<time datetime="2014-09-01">Aug 2014</time> β
<time datetime="2018-05-01">Apr 2018</time>
</span>
</div>
<div class="spaced-list">
<strong>Applied Physics with Computer Science and Math</strong>
</div>
</header>
<p>B.A.</p>
</article>
</div>
</section>
<section id="awards">
<h3>Awards</h3>
<div class="stack">
<article>
<header>
<div class="spaced-list">
<h4>McCloskey New Venture Competition Winner</h4>
<time datetime="2019-04-01">Mar 2019</time>
</div>
<div class="spaced-list">
<div>
Awarded by <strong>Mendoza College of Business</strong>
</div>
</div>
</header>
<p>Vital View Technologies won the McCloskey New Venture Competition.</p>
</article>
</div>
</section>
<section id="skills">
<h3>Skills</h3>
<div class="grid-list">
<div>
<h4>Development</h4>
<ul class="tag-list">
<li>Python</li>
<li>Rust</li>
<li>TypeScript</li>
</ul>
</div>
<div>
<h4>Infrastructure</h4>
<ul class="tag-list">
<li>AWS</li>
<li>Docker</li>
<li>Terraform</li>
</ul>
</div>
</div>
</section>
<section id="interests">
<h3>Interests</h3>
<div class="grid-list">
<div>
<h4>Reading</h4>
<ul class="tag-list">
<li>History</li>
<li>Psychology</li>
</ul>
</div>
<div>
<h4>Sports</h4>
<ul class="tag-list">
<li>Hockey</li>
<li>Surfing</li>
</ul>
</div>
</div>
</section>
</body>
</html>