-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
347 lines (328 loc) · 11.9 KB
/
resume.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
<html>
<head>
<style>
/* Reset */
p { margin: 0; }
/* Typeface */
html { font-family: 'Baloo 2'; }
h1, h2 { font-family: 'Lilita One'; font-weight: normal; }
/* Font sizes */
html {
--tsx: 1.2; /** "smaller" scaling factor */
--ts2: calc(var(--ts1) / var(--tsx));
--ts1: calc(var(--t0) / var(--tsx));
--t0: 14px; /** Base text size */
--tbx: 1.5; /** "bigger" scaling factor */
--tb1: calc(var(--t0) * var(--tbx));
--tb2: calc(var(--tb1) * var(--tbx));
font-size: var(--t0);
}
h1 { font-size: var(--tb2); }
h2 { font-size: var(--tb1); }
.top .job-title { font-size: var(--tb1); }
.job .skills { font-size: var(--ts1); }
.project .skills { font-size: var(--ts1); }
.status { font-size: var(--ts1); }
/* Spacing */
html {
line-height: 1.35;
--s1: 0.2rem;
--s2: calc(var(--s1) * 1.618);
--s3: calc(var(--s2) * 1.618);
--s4: calc(var(--s3) * 1.618);
--s5: calc(var(--s4) * 1.618);
--s6: calc(var(--s5) * 1.618);
}
body { padding-top: var(--s6); }
h1 { margin: var(--s4) 0; line-height: 1;}
h2 { margin: var(--s5) 0 var(--s4) 0; }
ul { padding-left: var(--s5); }
.top { --x-spacing: var(--s4); }
.top .bottom { padding-top: var(--s3); }
.skills-line { margin: var(--s3) 0; }
.skill-category + .skill-category { margin-left: var(--s5); }
.skill + .skill { margin-left: var(--s3); }
.skill-category .category-name { margin: 0 var(--s3) 0 0; }
/* skill top padding is a hacky fix for PDF not rendering consistently with web */
.skill { padding: 0.2em var(--s1) 0.1em var(--s1); line-height: 1; }
.job { margin: var(--s4) 0; }
.job .header { margin: var(--s2) 0; }
.job .skills { margin: var(--s2) 0; padding: 0 0 0 var(--s5); }
.job .job-content { padding: 0 0 0 var(--s5); }
.job .job-content li + li::before { margin: var(--s2); }
.job .timeframe { margin-left: var(--s3); }
.project { margin: var(--s4) 0; }
.project { grid-gap: var(--s3); }
.project .description { padding: 0 0 0 var(--s5); }
.education-interests { grid-gap: 0 var(--s6); }
/* Colors */
html {
--c1-0: #000;
--c1-1: #484848;
--c1-2: #6e6e6e;
--c1-3: #9c9c9c;
--c1-4: #cdcdcd;
--c1-5: #f0f0f0;
}
a { color: var(--c1-0); }
.skill { background: var(--c1-5); border: solid 1px var(--c1-4); color: var(--c1-2); }
.job .job-content li + li::before { color: var(--c1-3); }
.timeframe { color: var(--c1-3); }
.status { color: var(--c1-2); }
/* Layout */
.page { width: 670px; margin: 0 auto; }
.top { display: grid; grid-template: auto auto / 1fr 1.618fr; grid-auto-flow: column; align-items: baseline; }
.top h1 { margin: 0; }
.top .left { text-align: right; border-right: 1px solid var(--c1-5); padding-right: var(--x-spacing); }
.top .right { display: flex; flex-wrap: wrap; border-left: 1px solid var(--c1-5); padding-left: var(--x-spacing); }
.top .job-title { font-style: italic; }
.top .right p > * + * { margin-left: var(--x-spacing); }
.skills h2 { margin-top: 0; }
.skills-line { display: flex; align-items: center; }
.skill-category { display: flex; align-items: center; }
.skill-category .category-name { white-space: nowrap; }
.skills-list { list-style-type: none; margin: 0; padding: 0; display: flex; }
.skill { border-radius: var(--s1); white-space: nowrap; }
.job .skills { flex: 1 0 auto; }
.job .job-content { margin: 0; list-style-type: none; }
.job .job-content li { display: inline; }
.job .job-content li + li::before { content: '🞙'; }
.project .header { display: flex; gap: var(--s3); }
.education-interests { display: grid; grid-template: auto auto / 1fr 1fr; grid-gap: 0 var(--s6); grid-auto-flow: column; margin-top: -1rem; }
.education-interests > section { display: contents; }
</style>
<title>Sean Colsen</title>
</head>
<div class="page">
<section class="top">
<h1 class="left">Sean Colsen</h1>
<div class="left bottom personal-details">
<p class="location">Boston, MA, USA (UTC−4:00)</p>
<p class="pronouns">Pronouns: He/Him</p>
</div>
<div class="right job-title">Senior Full Stack Software Engineer</div>
<div class="right bottom contact-info">
<p>
<a class="github" href="https://github.com/seancolsen">github.com/seancolsen</a>
<a class="linkedin" href="https://linkedin.com/in/sean-colsen">linkedin.com/in/sean-colsen</a>
</p>
<p>
<a class="email" href="mailto:colsen.sean@gmail.com">colsen.sean@gmail.com</a>
<span class="phone">+1-865-548-1229</span>
</p>
</div>
</section>
<!-- Experience --------------------------------------------------------->
<section>
<h2>Experience</h2>
<div id="job-content" />
</section>
<script>
const jobContent = [
{
yearStart: 2021,
title: 'Software Engineer',
company: {
name: 'Mathesar Foundation',
url: 'https://mathesar.org/',
},
product: {
name: 'Mathesar',
url: 'https://github.com/mathesar-foundation/mathesar',
description: 'an open source spreadsheet/database hybrid application',
},
skills: [
'Svelte',
'TypeScript',
'Python',
'Django',
'PostgreSQL',
'PL/pgSQL',
'Docker',
'Jest',
'pgTAP',
'Storybook',
'Playwright',
],
accomplishments: [
'Worked asynchronously within a globally distributed team of 8 engineers',
'Implemented complex interactive features across the stack with an eye towards performance and usability',
'Led the UX design process for many core features',
'Advised on architectural decisions and code standards',
],
},
{
yearStart: 2021,
yearEnd: 2021,
title: 'Senior Full Stack Software Engineer',
company: {
name: 'Insurance Toolkits',
url: 'https://insurancetoolkits.com/',
},
product: {
description: 'several data-focused B2B SaaS products for insurance sales agents',
},
skills: [
'Vue',
'Nuxt',
'TypeScript',
'Python',
'mypy',
'Django',
'Flask',
'PostgreSQL',
// 'Redis',
'Selenium',
],
accomplishments: [
'Converted front end from Flask+Vue to Nuxt',
'Led incremental migration to TypeScript',
'Built back end features in Django', 'Designed and implemented REST APIs',
'Created a custom web-scraping system to harvest publicly-available insurance data at a large scale',
// 'Advised on architecture and hiring decisions',
'Found and fixed multiple security vulnerabilities',
// 'Mentored junior devs',
],
},
{
yearStart: 2016,
yearEnd: 2020,
title: 'Freelance Software Developer',
product: {
name: 'CiviCRM',
url: 'https://github.com/civicrm/civicrm-core',
description: 'an open source CRM for nonprofits',
},
// summary: 'Supported various non-profit organizations with their CiviCRM installations and customizations, including making upstream improvements to CiviCRM',
skills: [
'PHP',
'AngularJS',
'Javascript',
'Symfony',
'MySQL',
'React',
'Bootstrap',
'MkDocs',
],
accomplishments: [
'Funded my open source work by providing development, consulting, and support to freelance clients using CiviCRM',
// 'Contributed extensively within the global open source CiviCRM community',
"Built a custom static site publishing system for <a href='https://docs.civicrm.org'>docs.civicrm.org</a>, and migrated 10 years of docs content content into it",
'Found and fixed many upstream security vulnerabilities',
],
},
{
yearStart: 2008,
yearEnd: 2016,
title: 'IT Manager',
company: {
name: 'Bikes Not Bombs',
url: 'https://bikesnotbombs.org/',
},
summary: 'Handled all tech needs for this mid-sized non-profit with over 20 staff',
skills: ['Drupal', 'PHP', 'Javascript', 'MySQL', 'SQL', 'Ruby', 'Bash', 'Linux', 'Nginx'],
accomplishments: [
'Built a mobile mapping application for a large annual fundraising bike ride',
'Migrated fundraising database to CiviCRM and developed many customizations for it',
'Designed and built public website',
// 'Helped with graphic design and brand development',
],
},
{
yearStart: 2007,
yearEnd: 2008,
title: 'Freelance Web Developer',
skills: ['Wordpress', 'Drupal', 'PHP', 'Symfony', 'HTML', 'CSS'],
summary: 'Designed and built marketing websites for small businesses, organizations, and community groups',
},
];
function productSummary({ name, url, description }) {
return `
Helped build ${name && url ? `<a href="${url}">${name}</a>,` : ''}
<span class="product-description">${description}</span>
`;
}
function skillsList(skills) {
return `
<ul class="skills-list">
${skills.map(skill => `<li class="skill">${skill}</li>`).join('')}
</ul>
`;
}
function jobItem({ yearStart, yearEnd, title, company, summary, product, skills, accomplishments }) {
return `
<div class="job">
<div class="header">
<div>
<strong class="title">${title}</strong>
${company ? `<span class="company">for <a href="${company.url}">${company.name}</a></span>` : ''}
<span class="timeframe">${yearStart} - ${yearEnd ? `${yearEnd}` : 'now'}</span>
</div>
</div>
<div class="skills">${skillsList(skills)}</div>
<ul class="job-content">
${product ? `<li>${productSummary(product)}</li>` : ''}
${summary ? `<li>${summary}</li>` : ''}
${accomplishments ? accomplishments.map(a => `<li>${a}</li>`).join('') : ''}
</ul>
</div>
`;
}
document.getElementById('job-content').innerHTML = jobContent.map(jobItem).join('');
</script>
<section>
<h2>Personal Projects</h2>
<div id="projects" />
</section>
<script>
const projects = [
{
name: 'Querydown',
year: 2023,
repo: 'https://github.com/seancolsen/querydown',
status: '(very early stage)',
description: 'An expressive DSL for easily writing relational database queries which compile to SQL',
skills: ['Rust', 'SQL'],
},
{
name: 'Octave Compass',
year: 2020,
repo: 'https://github.com/seancolsen/octave-compass',
description: 'An interactive tool for musicians to explore scales and the chords that they contain',
skills: ['Svelte', 'TypeScript', 'SVG'],
},
];
document.getElementById('projects').innerHTML = projects.map(({ name, repo, description, skills, year, status }) => `
<div class="project">
<div class="header">
<div class="name"><a href="${repo}">${name}</a></div>
<div class="timeframe">${year}</div>
${status ? `<div class="status">${status}</div>` : ''}
<div class="skills">${skillsList(skills)}</div>
</div>
<div class="description">${description}</div>
</div>
`).join('');
</script>
<div class="education-interests">
<section>
<h2>Education</h2>
<div>
<p>Bachelor of Science in <strong>Electrical Engineering</strong></p>
<p>Northeastern University, Boston (GPA 3.7/4.0)</p>
</div>
</section>
<section>
<h2>Interests</h2>
<p>
Mountain biking,
rock climbing,
carpentry,
mechanical keyboards,
accordion
<!-- homesteading, -->
</p>
</section>
</div>
</div>
</html>