-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-short.html
530 lines (454 loc) · 12.6 KB
/
index-short.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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui">
<title>David Watson</title>
<style>
body {
background: #fff;
font: 16px 'Open Sans', Helvetica, Arial, sans-serif;
line-height: 1.4;
margin: 0 0;
margin-bottom: 100px;
}
em {
color: #999;
}
p {
line-height: 1.6;
font-size: 90%;
}
a {
color: #2C85B1;
text-decoration: none;
font-weight: 400;
}
ul {
margin-bottom: 0;
}
section {
margin: 1em 0 2em;
}
blockquote {
margin: 0;
margin-bottom: 1em;
}
#resume {
margin: 2em 2em 2em 2.5em;
max-width: 760px;
}
/* Resume heading */
.heading header {
}
.heading header h1 {
font-size: 180%;
margin: 0.5em 0;
font-weight: 600;
}
.heading header h2 {
font-size: 140%;
margin: 0;
font-weight: 400;
}
.heading header .contact .detail {
margin: 0 1em 0 0;
}
.profile {
display: inline-block;
margin: 0 1em 0 0;
}
.profile strong,
.profile span {
display: inline-block;
margin: 0 1em 0 0;
}
/* section / line breaks */
section h2 {
font-size: 140%;
margin: 0 0 1em;
text-transform: uppercase;
color: #BC1B39;
font-weight: 400;
}
/* Experience items */
.item {
margin: 0 0 1em;
padding: 0 0 1em;
border-bottom: 1px solid #F2EBEC;
}
.item:last-child {
border-bottom: none;
}
.item header h3 {
margin: 0.2em 1em 0.2em 0;
display: inline-block;
font-weight: 600;
}
.item header a {
display: inline-block;
}
.item .position {
font-weight: 600;
font-size: 100%;
margin: 0.2em 1em 0.2em 0;
}
.item .startDate,
.item .endDate {
color: #6B6B6B;
}
.item .highlights {
list-style: square;
font-size: 90%;
}
/* skills */
#skills .item {
margin: 0.5em 0;
padding: 0 0 0.5em;
font-size: 90%;
}
#skills .item .name {
font-weight: 600;
display: inline-block;
text-transform: uppercase;
margin: 0 1em 0 0;
width: 23%;
vertical-align: top;
}
#skills .item .keywords {
display: inline-block;
width: 70%;
vertical-align: top;
}
/* education */
#education .item {
display: inline-block;
vertical-align: top;
width: 49.5%;
border-bottom: 0;
}
</style>
<style media="print">
body { font-size: 12px; }
</style>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700,300' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="resume">
<section class="heading">
<header>
<h1>David Watson</h1>
<div class="contact">
<span class="detail">
<a href="mailto:resume@davidlwatsonjr.com">resume@davidlwatsonjr.com</a>
</span>
<span class="detail">
<a href="https://davidlwatsonjr.com">https://davidlwatsonjr.com</a>
</span>
</div>
</header>
<p><p>David is a certified Software Engineer/IT professional with over 15 years of experience in web and application development, network administration, and technical support. He's confident, personable, a quick learner, and motivated by challenge and responsibility. He has demonstrated an ability to assess client or project needs accurately and manage tasks at hand with a focus toward exceeding customer expectations. As well, he possesses exemplary time management and client relations skills along with very broad and extensive knowledge of many web and application development technologies. David is extremely ambitious and looking for new challenges and exciting opportunities with potential for growth.</p></p>
<div class="profile">
<strong class="network">
Github
</strong>
</div>
<div class="profile">
<strong class="network">
LinkedIn
</strong>
</div>
</section>
<section id="skills">
<h2>Skills</h2>
<div class="item">
<div class="name">
Front-End
</div>
<div class="keywords">
React,
JavaScript,
ES6+,
TypeScript,
Polymer,
AngularJS,
Web Components,
HTML5,
CSS3,
SASS/SCSS,
LESS,
PostCSS,
Bootstrap,
jQuery,
AJAX
</div>
</div>
<div class="item">
<div class="name">
Back-End
</div>
<div class="keywords">
Node.js,
Express,
Koa,
PHP,
Symfony2,
REST,
MySQL
</div>
</div>
<div class="item">
<div class="name">
Amazon Web Services
</div>
<div class="keywords">
DynamoDB,
Lambda,
API Gateway,
SNS,
SQS
</div>
</div>
<div class="item">
<div class="name">
Others
</div>
<div class="keywords">
Git,
Docker,
MVC,
OOP,
JSON,
XML,
Agile,
Scrum,
Kanban,
PMP,
SDLC,
TDD,
BDD
</div>
</div>
</section>
<section class="experience">
<h2>Experience</h2>
<section class="item">
<header>
<h3 class="name">PlanetBids</h3>
</header>
<span class="position">
Senior Engineering Manager
</span>
<span class="startDate">
Jan 2024
</span>
<span class="endDate">
- Present
</span>
<ul class="highlights">
<li>Architected transition from self-hosted application and database servers to cloud-based AWS services.</li>
</ul>
</section>
<section class="item">
<header>
<h3 class="name">Braintrust</h3>
</header>
<span class="position">
Freelance Senior Software Engineer
</span>
<span class="startDate">
Aug 2021
</span>
<span class="endDate">
- Dec 2023
</span>
<ul class="highlights">
<li>Designed and developed features for Stanley Black & Decker OneConstruct app using React, Javascript, and Redux.</li>
<li>Led team of engineers in React development to build and maintain Guardian-well.com for Guardian Life Insurance Company</li>
</ul>
</section>
<section class="item">
<header>
<h3 class="name">iFit</h3>
</header>
<span class="position">
Web Developer
</span>
<span class="startDate">
Mar 2020
</span>
<span class="endDate">
- Aug 2021
</span>
<ul class="highlights">
<li>Developed and maintained numerous web projects, both back-end and front-end, using TypeScript and React</li>
<li>Used AWS IoT to implement a smart device feature allowing Alexa voice control of 'smartbells'</li>
<li>Optimized the saving of activity logs uploaded by exercise machines resulting in a 35% reduction in end-of-workout waiting times</li>
<li>Developed features to shard database connections by workout as well as by user when the workout is a 'Live Workout'</li>
</ul>
</section>
<section class="item">
<header>
<h3 class="name">Electronic Arts</h3>
</header>
<span class="position">
Lead Web Developer - Software Engineer II
</span>
<span class="startDate">
Jul 2012
</span>
<span class="endDate">
- Mar 2020
</span>
<ul class="highlights">
<li>In 2018, started utilizing React, React Native, TypeScript, Node.js and even QT to build a design system and game delivery platform focused on cross-platform (Xbox, iOS, Android, Web, etc.) consistency and rapid updates.</li>
<li>Led new EA.com project development through alpha phase, designing and documenting projected architecture and implementing new technologies, processes, and patterns to completely revamp web development throughout the EA marketing ecosystem. This has eliminated roughly 80% of the redundant, boilerplate work required to build new projects, allowing developers to focus on research and innovation. Polymer/Web Components, Play Framework on Java, and Adobe Experience Manager are some of the technologies used.</li>
<li>Using new EA.com-founded architecture and processes, developed Titanfall Tips and Tricks application in one 2-week sprint.</li>
<li>Designed and developed FIFA 2014 World Cup Bracket Tournament Challenge. This application allowed players to submit a bracket prediction for the 2014 World Cup. It included features like allowing users to re/submit a bracket mid-tournament for a pre-calculated penalty, automatic calculation of scores and leaderboards after each match result was posted, and sharing of a player's bracket for increased social engagement. For the duration of the 2014 World Cup, EASPORTS.com saw a 2,500+% increase in traffic. AngularJS, Symfony2, and MySQL were some of the technologies used.</li>
<li>Designed and developed many other applications in the past including Madden Ultimate Team 13 and 14 game-to-web extensions, Madden Connected Careers/Connected Franchise 13 and 14 game-to-web extensions, NCAA Online Dynasty game-to-web extension, PGA Tiger Woods Country Clubs application, etc.</li>
</ul>
</section>
<section class="item">
<header>
<h3 class="name">MindComet</h3>
</header>
<span class="position">
Senior Software Developer
</span>
<span class="startDate">
Feb 2012
</span>
<span class="endDate">
- Jul 2012
</span>
<ul class="highlights">
<li>Responsible for development of multiple client websites from Alpha development to quality assurance stages. This involved both back-end and front-end development. Many different technologies were used, including PHP and C# on ASP.NET, Drupal and Umbraco frameworks, HTML5, CSS3, Javascript, jQuery, et al.</li>
<li>Assisted with finalizing development of Drupal site for Bankers Healthcare Group.</li>
<li>Architected and developed new site for Labor Finders using Umbraco framework with C# ASP.NET extensions.</li>
</ul>
</section>
<section class="item">
<header>
<h3 class="name">Home</h3>
</header>
<span class="position">
Freelance Web Developer
</span>
<span class="startDate">
Aug 2010
</span>
<span class="endDate">
- Feb 2012
</span>
<ul class="highlights">
<li>Scruffymurphysorlando.com - Converted static HTML site to Wordpress resulting in ease of maintenance/changes</li>
<li>Pawsketeers.com - Various site upgrades and changes using Couponic script based on Yii Framework</li>
</ul>
</section>
<section class="item">
<header>
<h3 class="name">Barnett Murphy, Inc</h3>
</header>
<span class="position">
Web Developer
</span>
<span class="startDate">
Aug 2010
</span>
<span class="endDate">
- Feb 2011
</span>
<ul class="highlights">
<li>Assisted with design and development of a direct marketing mailer portal which allowed Toyota dealerships throughout the southeastern United States to order targeted mailers and increase sales.</li>
</ul>
</section>
<section class="item">
<header>
<h3 class="name">Bright House Networks</h3>
</header>
<span class="position">
Business Solutions Support Lead
</span>
<span class="startDate">
Jul 2009
</span>
<span class="endDate">
- Mar 2012
</span>
<ul class="highlights">
<li>Lead Technician/Supervisor for Business Solutions Support</li>
<li>Provided Tier I-III support and resolution.</li>
<li>Developed and maintained a service tool hub (BC Server) that allowed integration of various tools necessary for call center use. This tool hub greatly increased agent efficiency by providing interfaces and services to allow for quick modem/UBR configuration, reclaiming of stale static IP blocks, and others functionalities.</li>
<li>Developed and maintained various online forms necessary for call center operation, including an adjustment request form that would output a PDF and send it as an e-mail attachment to leadership for processing.</li>
</ul>
</section>
</section>
<section id="education">
<h2>Education</h2>
<div class="item">
<header>
<h3 class="name">New Horizons Computer Learning Center</h3>
</header>
<div class="dates">
<span class="startDate">
Feb 2009
</span>
<span class="endDate">
- Jul 2009
</span>
</div>
<div class="qualification">
<span class="studyType">
Certification
</span>
<span class="area">
- Programming and Information Technology
</span>
</div>
</div>
<div class="item">
<header>
<h3 class="name">University of South Carolina Upstate</h3>
</header>
<div class="dates">
<span class="startDate">
Aug 2006
</span>
<span class="endDate">
- Jul 2008
</span>
</div>
<div class="qualification">
<span class="studyType">
Bachelor Coursework
</span>
<span class="area">
- Computer Science
</span>
</div>
</div>
<div class="item">
<header>
<h3 class="name">University of Mississippi</h3>
</header>
<div class="dates">
<span class="startDate">
Aug 2002
</span>
<span class="endDate">
- May 2003
</span>
</div>
<div class="qualification">
<span class="studyType">
Bachelor Coursework
</span>
<span class="area">
- Mechanical Engineering
</span>
</div>
</div>
</section>
</div>
</body>
</html>