-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.ts
More file actions
265 lines (259 loc) · 7.59 KB
/
content.ts
File metadata and controls
265 lines (259 loc) · 7.59 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
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
import kardLogo from '../../assets/kard-logo.svg';
import snykLogo from '../../assets/snyk-logo.svg';
import manifoldLogo from '../../assets/manifold-logo.svg';
import cventLogo from '../../assets/cvent-logo.svg';
import unbLogo from '../../assets/unb-logo.svg';
import marinerLogo from '../../assets/mariner-logo.svg';
import { Props as Tag } from '../../components/Tag';
type Image = {
src: string;
alt: string;
};
type Link = {
href: string;
label?: string;
};
export type Company = {
name: string;
tag?: string;
website?: Link;
logo: Image;
description?: string;
};
export type Work = {
slug: string;
jobTitle: string;
specialty?: string;
date: [Date, Date];
company: Company;
highlights?: string[];
description?: string;
tags?: Tag[];
};
enum Month {
January = 0,
February = 1,
March = 2,
April = 3,
May = 4,
June = 5,
July = 6,
August = 7,
September = 8,
October = 9,
November = 10,
December = 11,
}
export const work: Work[] = [
{
slug: 'snyk',
jobTitle: 'Senior Software Engineer',
specialty: 'Growth',
date: [new Date(2024, Month.January), new Date(Date.now())],
company: {
name: 'Kard',
logo: {
src: kardLogo,
alt: '',
},
website: {
href: 'https://getkard.com',
label: 'getkard.com',
},
},
highlights: [
'Tech lead for Kard’s frontend',
'Led the development of Kard’s design system and component library based on shadcn/ui',
'Led initiative to migrate Kard’s codebase from JavaScript to TypeScript',
'Building scalable microservices on AWS using TypeScript, Go, MongoDB, PostgreSQL, SNS/SQS, S3',
'Developed org-wide standards for observability/monitoring and incident management with DataDog',
],
tags: [
{ label: 'TypeScript', icon: 'typescript-plain' },
{ label: 'React', icon: 'react-plain' },
{
label: 'AWS (Lambda, SNS/SQS, S3, RDS, DynamoDB)',
icon: 'amazonwebservices-plain-wordmark',
},
{ label: 'Terraform', icon: 'terraform-plain' },
{ label: 'Go', icon: 'go-original-wordmark' },
{ label: 'Datadog', icon: 'datadog-original' },
{ label: 'MongoDB', icon: 'mongodb-plain' },
{ label: 'Vite' },
{ label: 'Vitest', icon: 'vitest-plain' },
{ label: 'shadcn/ui' },
{ label: 'Storybook', icon: 'storybook-plain' },
{ label: 'Cypress', icon: 'cypressio-plain' },
{ label: 'Mocha/Chai/Sinon' },
{ label: 'Testing Library' },
{ label: 'Serverless' },
],
},
{
slug: 'snyk',
jobTitle: 'Software Engineer, Growth',
specialty: 'Growth',
date: [new Date(2021, Month.January), new Date(2023, Month.December)],
company: {
name: 'Snyk',
logo: {
src: snykLogo,
alt: '',
},
website: {
href: 'https://snyk.io',
label: 'snyk.io',
},
},
highlights: [
'Helped establish growth engineering practices company-wide: A/B testing, data-driven decisions',
'Built high-quality web experiences with a focus on performance and scalability',
'Contributed to design system components and documentation',
'Interviewed candidates and trained new team members',
],
tags: [
{ label: 'TypeScript', icon: 'typescript-plain' },
{ label: 'Vue', icon: 'vuejs-original' },
{ label: 'Pinia' },
{ label: 'Sass', icon: 'sass-plain' },
{ label: 'Storybook', icon: 'storybook-plain' },
{ label: 'Testing Library' },
{ label: 'Vite', icon: 'vitejs-original' },
{ label: 'Vitest', icon: 'vitest-original' },
{ label: 'Jest', icon: 'jest-plain' },
{ label: 'express', icon: 'express-original' },
{ label: 'Amplitude' },
{ label: 'Datadog' },
{ label: 'Terraform', icon: 'terraform-plain' },
{ label: 'Kubernetes', icon: 'kubernetes-plain' },
{ label: 'Go', icon: 'go-plain' },
],
},
{
slug: 'manifold',
jobTitle: 'Software Engineer',
date: [new Date(2019, Month.January), new Date(2021, Month.January)],
company: {
name: 'Manifold',
tag: 'acquired by Snyk',
logo: {
src: manifoldLogo,
alt: '',
},
},
highlights: [
'Core author and maintainer of Manifold UI, a customer-facing Web Components library',
'Improved organizational processes resulting in a 9% increase in engineering bandwidth',
'Played a key role in Manifold’s adoption of GraphQL',
'Interviewed candidates and trained new team members',
],
tags: [
{ label: 'TypeScript', icon: 'typescript-plain' },
{ label: 'React', icon: 'react-plain' },
{ label: 'GraphQL', icon: 'graphql-plain' },
{ label: 'Web Components' },
{ label: 'Stencil.js' },
{ label: 'Storybook', icon: 'storybook-plain' },
{ label: 'Testing Library' },
{ label: 'Jest', icon: 'jest-plain' },
{ label: 'styled-components' },
{ label: 'Next.js', icon: 'nextjs-plain' },
{ label: 'express', icon: 'express-original' },
],
},
{
slug: 'cvent',
jobTitle: 'UI Developer',
date: [new Date(2017, Month.May), new Date(2019, Month.January)],
company: {
name: 'Cvent',
logo: {
src: cventLogo,
alt: '',
},
website: {
href: 'https://cvent.com',
label: 'cvent.com',
},
},
highlights: [
'Built a highly-configurable survey tool with a focus on performance and user experience',
'Maintained internal frameworks and libraries used by hundreds of developers',
'Mentored coworkers and regularly led training sessions on web technologies',
],
tags: [
{ label: 'JavaScript + Flow', icon: 'javascript-plain' },
{ label: 'React', icon: 'react-plain' },
{ label: 'Redux', icon: 'redux-original' },
{ label: 'LESS', icon: 'less-plain-wordmark' },
{ label: 'Jest', icon: 'jest-plain' },
],
},
{
slug: 'cvent-internship',
jobTitle: 'Software Engineering Intern (Internship)',
date: [new Date(2016, Month.May), new Date(2016, Month.August)],
company: {
name: 'Cvent',
logo: {
src: cventLogo,
alt: '',
},
website: {
href: 'https://cvent.com',
label: 'cvent.com',
},
},
tags: [
{ label: 'JavaScript', icon: 'javascript-plain' },
{ label: 'React', icon: 'react-plain' },
{ label: 'Redux', icon: 'redux-original' },
{ label: 'LESS', icon: 'less-plain-wordmark' },
{ label: 'Jest', icon: 'jest-plain' },
],
},
{
slug: 'unb-internship',
jobTitle: 'Full-Stack Developer (Internship)',
date: [new Date(2015, Month.January), new Date(2015, Month.April)],
company: {
name: 'University of New Brunswick',
logo: {
src: unbLogo,
alt: '',
},
website: {
href: 'https://unb.ca',
label: 'unb.ca',
},
},
tags: [
{ label: 'php', icon: 'php-plain' },
{ label: 'jQuery', icon: 'jquery-plain' },
{ label: 'Sass', icon: 'sass-plain' },
{ label: 'MySQL', icon: 'mysql-plain' },
],
},
{
slug: 'mariner-internship',
jobTitle: 'Junior Program Analyst (Internship)',
date: [new Date(2014, Month.May), new Date(2014, Month.August)],
company: {
name: 'Mariner Innovations',
logo: {
src: marinerLogo,
alt: '',
},
website: {
href: 'https://marinerinnovations.com',
label: 'marinerinnovations.com',
},
},
tags: [
{ label: 'Java', icon: 'java-plain' },
{ label: 'awk' },
{ label: 'COBOL' },
{ label: 'JCL' },
],
},
];