-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
753 lines (704 loc) · 18.3 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
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
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Erik Waibel | Senior Frontend Engineer</title>
<style type="text/css">
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
display: block;
}
audio,
canvas,
video {
display: inline-block;
*display: inline;
*zoom: 1;
}
audio:not([controls]) {
display: none;
}
[hidden] {
display: none;
}
html {
font-size: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
html,
button,
input,
select,
textarea {
font-family: sans-serif;
}
body {
margin: 0;
}
a:focus {
outline: thin dotted;
}
a:hover,
a:active {
outline: 0;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
h2 {
font-size: 1.5em;
margin: 0.83em 0;
}
h3 {
font-size: 1.17em;
margin: 1em 0;
}
h4 {
font-size: 1em;
margin: 1.33em 0;
}
h5 {
font-size: 0.83em;
margin: 1.67em 0;
}
h6 {
font-size: 0.75em;
margin: 2.33em 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
blockquote {
margin: 1em 40px;
}
dfn {
font-style: italic;
}
mark {
background: #ff0;
color: #000;
}
p,
pre {
margin: 1em 0;
}
pre,
code,
kbd,
samp {
font-family: monospace, serif;
_font-family: 'courier new', monospace;
font-size: 1em;
}
pre {
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
}
q {
quotes: none;
}
q:before,
q:after {
content: '';
content: none;
}
small {
font-size: 75%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
dl,
menu,
ol,
ul {
margin: 1em 0;
}
dd {
margin: 0 0 0 40px;
}
menu,
ol,
ul {
padding: 0 0 0 40px;
}
nav ul,
nav ol {
list-style: none;
list-style-image: none;
}
img {
border: 0;
-ms-interpolation-mode: bicubic;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 0;
}
form {
margin: 0;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
white-space: normal;
*margin-left: -7px;
}
button,
input,
select,
textarea {
font-size: 100%;
margin: 0;
vertical-align: baseline;
*vertical-align: middle;
}
button,
input {
line-height: normal;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
cursor: pointer;
-webkit-appearance: button;
*overflow: visible;
}
button[disabled],
input[disabled] {
cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
*height: 13px;
*width: 13px;
}
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
vertical-align: top;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body.pdf {
color: black;
}
body.pdf a {
text-decoration: none;
color: black;
}
body.pdf a[href$='.pdf'],
body.pdf a[href*='github'] {
display: none;
}
body.pdf .container {
width: 1080px;
margin: 0 auto;
padding: 0;
background: none;
border: 0;
text-align: left;
}
body.pdf .resume {
position: relative;
padding: 40px 80px;
}
body.pdf h1 {
letter-spacing: 0;
margin-top: 0;
text-transform: uppercase;
font-weight: normal;
}
body.pdf h2 {
letter-spacing: 0;
text-transform: uppercase;
font-style: italic;
font-weight: normal;
}
body.pdf h3 {
font-style: normal;
}
body.pdf blockquote {
top: 40px;
right: 50px;
position: absolute;
}
.clearfix {
zoom: 1;
}
.clearfix:after {
display: block;
visibility: hidden;
height: 0;
clear: both;
content: ".";
}
body {
color: #444;
}
.container {
margin: 0 auto;
padding: 0;
background: whiteSmoke;
border: solid #666;
border-width: 8px 0 2px 0;
text-align: left;
}
.resume {
position: relative;
padding: 10px 20px;
}
a[href$='.pdf'] {
background: #666;
color: white;
padding: 6px 12px;
margin-bottom: 6px;
text-decoration: none;
position: absolute;
top: 15px;
right: 25px;
}
a[href*='github'] {
background: #000;
color: white;
padding: 6px 12px;
margin-bottom: 6px;
text-decoration: none;
position: absolute;
top: 45px;
right: 25px;
}
a[href*='github']:hover {
background: white;
color: #000;
}
blockquote {
margin: 0;
padding: 0;
line-height: 1.4em;
}
blockquote a {
color: #990003;
display: block;
}
hr {
display: block;
position: relative;
padding: 0;
margin: 18px auto;
width: 100%;
clear: both;
border: 0;
border-top: 1px solid #CCC;
font-size: 1px;
line-height: 0;
overflow: visible;
page-break-after: avoid;
}
ul {
margin: 0;
padding: 0;
}
h1 {
margin: 0;
padding: 0;
font-size: 3em;
letter-spacing: -1px;
font-weight: normal;
}
h2 {
margin: 0;
padding: 0;
font-size: 2em;
font-style: italic;
letter-spacing: -1px;
font-weight: normal;
}
h3 {
border-bottom: 5px solid #000;
margin: 0;
padding: .25em 0 .25em .3em;
font-size: 2em;
font-style: italic;
font-weight: normal;
}
h3+p,
h3~ul {
margin: .2em 0 1.2em;
padding: 0;
display: block;
font-size: 1em;
line-height: 1.5;
}
h3~ul {
padding-left: 1.5em;
}
h4 {
font-size: 1.5em;
margin: 0;
}
ul li {
margin: 0;
padding: 0;
}
ul li ul li,
ol li ul li {
font-style: italic;
margin: 0 0 0 1.5em;
width: 80%;
}
ul dl {
margin: .3em 0 0;
padding: 0;
width: 100%;
}
ul dl dd {
margin: 0 0 1em;
padding: 0 2em 0 0;
font-size: .8em;
line-height: 1.5em;
}
ol {
margin: 0;
margin-left: 1em;
padding: 0 0 .75em;
width: 84%;
display: inline-block;
}
ol li {
margin: 0 0 0 .5em;
padding: 0;
border-top: 1px solid #CCCCCC;
width: 100%;
line-height: 1.5em;
font-size: 1em;
}
ol li:nth-child(1) {
border-top: 0;
}
dl {
display: inline-block;
width: 95%;
margin: 0;
padding: 0;
}
dl dt {
margin: 0;
padding: 0;
}
dl dd {
padding: 0;
font-size: 0.8em;
}
dl strong {
display: block;
font-size: 1.2em;
}
dl em {
display: block;
font-size: 1.2em;
margin: .15em 0 .5em;
}
#experience ~ dl dt {
float: left;
margin-top: 1em;
}
#experience ~ dl dd {
float: right;
text-align: right;
width: 45%;
}
#experience ~ p {
width: 85%;
}
#experience ~ ul {
width: 85%;
}
#experience ~ ol li {
border: 0;
font-size: 1em;
}
#footer {
display: none;
}
#footer + p {
width: 100%;
font-size: 0.8em;
text-align: center;
}
@media screen and (min-width: 37.5em) {
body {
padding: 2em 0;
}
blockquote {
top: 10px;
right: 50px;
position: absolute;
}
h1 {
margin-top: .5em;
}
ol {
margin: 0 0 0 1em;
}
ol li {
width: 50%;
margin: 0;
}
ol li:nth-child(1),
ol li:nth-child(2) {
border-top: none;
}
}
</style>
</head>
<body class="">
<div class="container">
<header></header>
<div class="resume">
<h1>Erik Waibel</h1>
<h2>Senior Frontend Engineer</h2>
<blockquote>
<p><a href="https://www.github.com/ejwaibel">GitHub</a>
<a href="[email protected]">[email protected]</a>
480-331-1899</p>
</blockquote>
<hr />
<h3 id="summary">Summary</h3>
<p>Passionate and motivated software developer focused on frontend web development using Vue, along with some backend experience. I have over 5 years of experience working on enterprise production software using modern front end technology stack. I bring a wealth of experience with regards to source control and frontend web development. Problem-solving is my second language. I am excited about all things related to technology and software development with a willingness to learn.</p>
<h3 id="skills">Technical Skills</h3>
<ul>
<li>6+ years working with HTML5, SCSS, CSS3, JavaScript, jQuery, NodeJS, REST</li>
<li>Strong knowledge and experience with modern JavaScript frameworks (Angular, Vue.js, Backbone, Ember etc.)</li>
<li>Expert in multiple source control software (SVN, Git [Gitlab, Github, Bitbucket], ClearCase)</li>
<li>Proficient with SCSS, ES6, Grunt, Gulp, Yeoman, PHP, Webpack, Web Components</li>
<li>Advanced shell script development using Perl, bash, ksh</li>
<li>Strong knowledge and experience with Angular, React, Vue.js, Express, MongoDB</li>
<li>Knowledge and experience with DevOps, Docker, AWS</li>
<li>Computer Science fundamentals in object-oriented design, data structures, and complexity analysis</li>
</ul>
<h3 id="experience">Experience</h3>
<dl>
<dt><h4>IRELO</h4></dt>
<dd>
<p><em>Senior Frontend Engineer | Vue Developer</em>
<strong>April 2018-Present</strong></p>
</dd>
</dl>
<p>Lead frontend engineer/architect responsible for building and maintaining 10 single page web applications utilizing Vue and Nuxt.</p>
<ul>
<li>Architect custom VueJS components and integrate with new and existing applications across organization</li>
<li>Utilized vue-cli 3.0 integration to perform JavaScript compilation and minification for all frontend development</li>
<li>Created multiple components and sites from InVision UX designs</li>
<li>Coordinate with PM in Asana scrum/sprint process to ensure all bugs & features are completed on time</li>
<li>Generated global custom eslint and stylelint configurations for inclusion with all company projects</li>
<li>Configured Netlify automated frontend builds and deployments</li>
<li>Organized Git standardization and process through Gitlab and ensured developers conformed</li>
<li>Produced Git CLI script to generate automatic changelog and Gitlab release</li>
<li>Integrated with latest JavaScript standards and ES2017 features</li>
</ul>
<dl>
<dt><h4>Chandler Gilbert Community College</h4></dt>
<dd>
<p><em>Adjunct Faculty - Computer Information Systems</em>
<strong>January 2018-Present</strong></p>
</dd>
</dl>
<p>Adjunct faculty in the Computer Information Systems department with a focus on web development courses integrating HTML5, CSS3, and JavaScript.</p>
<dl>
<dt><h4>General Motors IT</h4></dt>
<dd>
<p><em>Lead Web Developer</em>
<strong>July 2014-April 2018</strong></p>
</dd>
</dl>
<p>Lead web developer responsible for end to end feature enablement across the UI layer, and the integration of UI into the broader ecosystem of General Motors brand websites. Lead a team of 15 developers to increase their knowledge and performance within a fast paced development environment.</p>
<ul>
<li>Applied CSS3 styles to modular components based on PSD styleguides</li>
<li>Built multiple angular applications for inclusion into a Foundation framework</li>
<li>Designed solution for custom SCSS inheritance to accomodate multiple shared projects</li>
<li>Arhitected internal modular JavaScript solution with TerrificJS called “AtomicJS”</li>
<li>Lead team of 20 developers to deliver 65 custom AEM components for opel.ie release</li>
<li>Built custom solution for Gulp build process and enhanced based on project challenges</li>
<li>Integrated 3 custom jQuery plugins into project’s custom AtomicJS framework</li>
<li>Triaged bugs on a daily basis to ensure issues are resolved in time for production release</li>
<li>Coordinated with business and design teams to ensure proper requirements for new features</li>
<li>Researched advanced CSS & JavaScript techniques to implement latest browser features and enhance the customer’s experience</li>
<li>Performed Subversion and Git operations within a development and production environment</li>
<li>Collaborated with IT team to enhance and fix issues with Mac OS computers</li>
</ul>
<dl>
<dt><h4>iTRACS | Commscope</h4></dt>
<dd>
<p><em>Software Engineer II</em>
<strong>Nov. 2012-July 2014</strong></p>
</dd>
</dl>
<p>Responsible for the construction and implementation of an enterprise class web application providing business critical datacenter management solution. Lead developer for design and implementation of customer portal with multiple WordPress instances. Worked closely with team members in an agile environment to ensure implementation of features/functionality conform to release/business objectives.</p>
<ul>
<li>Engineered robust, scalable and extendable JavaScript</li>
<li>Created and deployed advanced RESTful API interfaces with PHP and SOAP</li>
<li>Converted raw images and layouts from a graphic designer into CSS3/HTML5 themes utilizing mustache.js</li>
<li>Developed and maintained a large single-page web application that supports all major browsers and OS</li>
<li>Built and extended custom AJAX methods using jQuery deferred</li>
<li>Designed and developed advanced RESTful API interfaces with PHP and SOAP Web Services</li>
<li>Extended existing jQuery UI widgets and built custom widgets</li>
<li>Performed Subversion and Git operations within a development and production environment</li>
<li>Assisted in managing Git merge requests with multiple developers and branches through Gitlab</li>
<li>Maintained central Git server and repository for all development</li>
<li>Managed product enhancements and defects timely in an agile development process</li>
<li>Cooperated with QA to release the initial version of customer-facing single-page web application on time with a team of three web developers and two web designers.</li>
</ul>
<dl>
<dt><h4>Art Institute of Phoenix</h4></dt>
<dd>
<p><em>Adjunct Professor - Graphic & Web Design</em>
<strong>Sept. 2010-Dec. 2014</strong></p>
</dd>
</dl>
<p>Adjunct professor for Graphic & Web Design department, with average class size of 12 students.</p>
<ol>
<li><em>Intro to Programming</em></li>
<li><em>Intro / Intermediate / Advanced Scripting</em></li>
<li><em>Intro / Intermediate / Advanced Authoring</em></li>
<li><em>User Centered Design</em></li>
</ol>
<dl>
<dt><h4>Everything Just Works, LLC</h4></dt>
<dd>
<p><em>Owner, Software Developer</em>
<strong>May 2010 - Dec. 2013</strong></p>
</dd>
</dl>
<p>Everything Just Works, LLC focused on giving computer users a one-on-one interaction with computer repair gurus. You should be able to understand your computer and have the best experience possible. We want to empower individuals to use the computer to its full potential and be aware of the problems that can arise so that they aren’t stuck paying someone to recover their data.</p>
<ul>
<li>Built custom website for Realty Company that would allow users to search for houses based on a given MLS listing.
<ul>
<li>PHP application with IIS 7.5 and Microsoft SQL 2008 database</li>
<li>Object Oriented PHP5 from scratch with IIS 7.5 and MSSQL 2008 integration.</li>
<li>Developed custom JavaScript algorithm with Google Maps API to calculate distances between multiple addresses</li>
<li>Built custom jQuery plugin to generate tabular data records</li>
</ul></li>
<li>Developed the “Conditional Questions” add-on using PHP & jQuery for the Event Espresso WordPress plugin.</li>
<li>Diagnosed and repaired local and small business websites that use WordPress.</li>
<li>Improved and resolved problems for WordPress websites with custom PHP, jQuery, CSS, and HTML due to incompatible WordPress theme(s) and/or client requests.</li>
<li>Eradicated viruses and malware from infected computers after performing necessary troubleshooting techniques.</li>
</ul>
<dl>
<dt><h4>Insight Global</h4></dt>
<dd>
<p><em>Software Developer, Contract w/Level 3 Communications</em>
<strong>July 2012 - Oct. 2012</strong></p>
</dd>
</dl>
<ul>
<li>Developed the internal website on Apache server for network planners using Perl Mason, HTML5, JavaScript, jQuery, and CSS3.</li>
<li>Configured and administered Bugzilla installation on Linux CentOS server for customer required bug tracking system.</li>
<li>Provided multiple Perl script reports that would run on a daily/weekly cron job and generate custom Excel spreadsheets for client.</li>
<li>Created custom internal Perl modules to help with database connections, common utility functions, and Excel spreadsheet customization.</li>
</ul>
<dl>
<dt><h4>APEX Systems</h4></dt>
<dd>
<p><em>Systems Engineer, Contract w/Wells Fargo</em>
<strong>Oct. 2011 - June 2012</strong></p>
</dd>
</dl>
<ul>
<li>Developed Perl script that would run as a daemon to search specific directories for files.</li>
<li>Customized in-house Perl modules for better functionality and maintainability.</li>
<li>Extended Perl scripts to help automate tasks across 15 UNIX Solaris and Linux servers, including threads that would run commands on specified servers in parallel.</li>
<li>Enhanced current scripts to include the use of Log::Log4Perl in order to generate log files for all output in order to verify steps were completed successfully.</li>
<li>Provided multi-level support to the Customer Care team and employees that worked directly with Wells Fargo Wholesale customers.</li>
</ul>
<dl>
<dt><h4>A Better Solution, Inc.</h4></dt>
<dd>
<p><em>Software Developer, ClearCase Consultant</em>
<strong>Apr. 2007 - June 2011</strong></p>
</dd>
</dl>
<ul>
<li>Implemented Perl scripts to help developers integrate with ClearCase more seamlessly.</li>
<li>Developed Perl modules for custom ClearCase functionality within our scripts. This allowed to easily and quickly building Perl scripts for custom ClearCase interaction.</li>
<li>Ensured project builds and releases performed efficiently and correctly through the use of IBM Rational BuildForge.</li>
<li>Produced automated build scripts using Perl and shell programming.</li>
<li>Administered UNIX & Windows machines for the IT group whenever necessary.</li>
<li>Provided first level technical assistance to end users including, but not limited to: replicating errors, resolving application issues, and investigating errors.</li>
</ul>
<dl>
<dt><h4>BlueHornet.com</h4></dt>
<dd>
<p><em>Jr. PHP Developer</em>
<strong>Sept. 2006 - Apr. 2007</strong></p>
</dd>
</dl>
<p>Worked as Junior PHP Developer to help enhance the existing web application with custom Object Oriented code for quicker development and easier maintainability. Coordinated with the graphic design team and integrated Photoshop layouts using HTML, JavaScript, and CSS. Documented new features thoroughly for use with customer support documentation.</p>
<h3>Education</h3>
<dl>
<dt><h4>California State Polytechnic University</h4></dt>
<dd>
<p><em>Pomona, CA</em>
<strong>B.S., Computer Science</strong></p>
</dd>
</dl>
<hr />
<h3 id="footer">Footer</h3>
<p>Erik Waibel — 480-331-1899 — <a href="[email protected]">[email protected]</a></p>
</div>
<footer></footer>
</div>
</body>
</html>