forked from smt/resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
855 lines (780 loc) · 18.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
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
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="generator" content="pandoc">
<title>Brian Ephraim's Resume - resume</title>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style type="text/css">
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
audio,
canvas,
video {
display: inline-block;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden] {
display: none;
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
a:focus {
outline: thin dotted;
}
a:active,
a:hover {
outline: 0;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
mark {
background: #ff0;
color: #000;
}
code,
kbd,
pre,
samp {
font-family: monospace, serif;
font-size: 1em;
}
pre {
white-space: pre-wrap;
}
q {
quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 0;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
button,
input,
select,
textarea {
font-family: inherit;
font-size: 100%;
margin: 0;
}
button,
input {
line-height: normal;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
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-cancel-button,
input[type="search"]::-webkit-search-decoration {
-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;
}
#nprogress {
pointer-events: none;
-webkit-pointer-events: none;
}
#nprogress .bar {
background: #29d;
position: fixed;
z-index: 100;
top: 0;
left: 0;
width: 100%;
height: 2px;
}
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px #29d, 0 0 5px #29d;
opacity: 1.0;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-moz-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
-o-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
display: block;
position: fixed;
z-index: 100;
top: 15px;
right: 15px;
}
#nprogress .spinner-icon {
width: 14px;
height: 14px;
border: solid 2px transparent;
border-top-color: #29d;
border-left-color: #29d;
border-radius: 10px;
-webkit-animation: nprogress-spinner 400ms linear infinite;
-moz-animation: nprogress-spinner 400ms linear infinite;
-ms-animation: nprogress-spinner 400ms linear infinite;
-o-animation: nprogress-spinner 400ms linear infinite;
animation: nprogress-spinner 400ms linear infinite;
}
@-webkit-keyframes nprogress-spinner {
0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes nprogress-spinner {
0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes nprogress-spinner {
0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes nprogress-spinner {
0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
0% { transform: rotate(0deg); transform: rotate(0deg); }
100% { transform: rotate(360deg); transform: rotate(360deg); }
}
html, body {
height: 100%;
}
body {
background: #fefefe;
color: #424242;
font-family: "Open Sans", arial, sans-serif;
font-size: 18px;
}
h1, h2, h3, h4, h5, h6 {
margin-bottom: 33px;
text-transform: none;
}
h1 {
font-size: 26px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 20px;
margin-bottom: 20px;
}
h4 {
font-size: 18px;
margin-bottom: 18px;
}
h5 {
font-size: 16px;
margin-bottom: 15px;
}
h6 {
font-size: 14px;
margin-bottom: 12px;
}
p {
line-height: 1.8;
margin: 0 0 30px;
}
a {
color: #f03838;
text-decoration: none;
}
ul, ol {
line-height: 1.8;
margin: 0 0 40px;
padding-left: 1em;
}
ul li, ol li {
margin: 0 0 10px;
}
blockquote {
border-left: 1px dotted #303030;
margin: 40px 0;
padding: 5px 30px;
}
blockquote p {
color: #AEADAD;
display: block;
font-style: italic;
margin: 0;
width: 100%;
}
img {
display: block;
margin: 40px 0;
width: auto;
max-width: 100%;
}
pre {
background: #F1F0EA;
border: 1px solid #DDDBCC;
border-radius: 3px;
margin: 0 0 40px;
padding: 15px 20px;
}
::selection {
background: #FFF5B8;
color: #000;
display: block;
}
::-moz-selection {
background: #FFF5B8;
color: #000;
display: block;
}
.container {
margin: 0 auto;
position: relative;
width: 100%;
max-width: 889px;
}
#wrapper {
height: auto;
min-height: 100%;
margin-bottom: -265px;
}
#wrapper:after {
content: "";
display: block;
height: 265px;
}
.button {
background: #303030;
border: none;
border-radius: 3px;
color: #FEFEFE;
font-size: 14px;
font-weight: 700;
padding: 10px 12px;
text-transform: uppercase;
}
.button:hover {
background: #f03838;
}
.button-square {
background: #f03838;
float: left;
margin: 0 0 0 10px;
padding: 8px;
}
.button-square:hover {
background: #303030;
}
.site-header {
padding: 100px 0 35px;
overflow: auto;
text-align: center;
text-transform: uppercase;
}
.site-title-wrapper {
display: table;
margin: 0 auto;
}
.site-title {
float: left;
font-size: 14px;
font-weight: 600;
margin: 0;
text-transform: uppercase;
}
.site-title a {
float: left;
background: #f03838;
color: #FEFEFE;
padding: 5px 10px 6px;
}
.site-title a:hover {
background: #303030;
}
.post {
margin: 0 40px;
}
.post-header {
border-bottom: 6px solid #303030;
margin: 0 0 50px;
padding: 0 0 80px;
text-align: center;
text-transform: uppercase;
}
.post-title {
font-size: 52px;
font-weight: 700;
margin: 15px 0;
text-transform: uppercase;
}
.post-date {
color: #AEADAD;
font-size: 14px;
font-weight: 600;
line-height: 1;
margin: 25px 0 0;
}
.post-date:after {
border-bottom: 1px dotted #303030;
content: "";
display: block;
margin: 40px auto 0;
width: 100px;
}
.post-content {
margin: 0 0 92px;
}
.post-content a:hover {
border-bottom: 1px dotted #f03838;
padding: 0 0 2px;
}
.post-tags {
color: #AEADAD;
font-size: 14px;
}
.post-tags span {
font-weight: 600;
}
.post-navigation {
display: table;
margin: 70px auto 100px;
}
.newer-posts,
.older-posts {
float: left;
background: #f03838;
color: #FEFEFE;
font-size: 14px;
font-weight: 600;
margin: 0 5px;
padding: 5px 10px 6px;
text-transform: uppercase;
}
.newer-posts:hover,
.older-posts:hover {
background: #303030;
}
.page-number {
display: none;
}
.post-list {
border-top: 6px solid #303030;
list-style: none;
margin: 80px 40px 0;
padding: 35px 0 0;
}
.post-stub {
border-bottom: 1px dotted #303030;
margin: 0;
}
.post-stub:first-child {
padding-top: 0;
}
.post-stub a {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: block;
color: #424242;
padding: 20px 5px;
}
.post-stub a:hover {
background: #FCF5F5;
color: #f03838;
padding: 20px 12px;
}
.post-stub-title {
display: inline-block;
margin: 0;
text-transform: none;
}
.post-stub-date {
display: inline-block;
}
.post-stub-date:before {
content: "/ ";
}
.next-posts-link a,
.previous-posts-link a {
display: block;
padding: 8px 11px;
}
.icon {
background-size: 14px 38px;
display: block;
height: 38px;
width: 14px;
}
.icon-menu {
background-position: 0 0;
height: 14px;
width: 14px;
}
.icon-up {
background-position: 0 -15px;
height: 8px;
width: 14px;
}
.icon-rss {
background-position: 0 -24px;
height: 14px;
width: 14px;
}
.footer {
background: #303030;
color: #D3D3D3;
height: 265px;
overflow: auto;
}
.footer .site-title-wrapper {
margin: 80px auto 35px;
}
.footer .site-title a:hover,
.footer .button-square:hover {
background: #121212;
}
.button-jump-top {
padding-top: 11px;
padding-bottom: 11px;
}
.footer-copyright {
color: #656565;
font-size: 14px;
margin: 0;
text-align: center;
text-transform: uppercase;
}
.footer-copyright a {
color: #656565;
font-weight: 700;
}
.footer-copyright a:hover {
color: #FEFEFE;
}
#nprogress .bar {
background: #f03838;
}
#nprogress .peg {
box-shadow: 0 0 10px #f03838, 0 0 5px #f03838;
}
#nprogress .spinner-icon {
border-top-color: #f03838;
border-left-color: #f03838;
}
@media only screen and (max-width: 600px) {
.post-stub-title {
display: block;
}
.post-stub-date:before {
content: "";
display: block;
}
}
@media only screen and (max-width: 400px) {
.post-title {
font-size: 32px;
}
}
body{
width:80%;
margin:10% auto;
}
</style>
<script>(function (d) {
var metas = d.getElementsByTagName('meta');
var i;
function gestureStart() {
for (i=0; i<metas.length; i++) {
if (metas[i].name === "viewport") {
metas[i].content = "width=device-width, minimum-scale=0.25, maximum-scale=1.6";
}
}
}
if (navigator.userAgent.match(/iPhone/i)) {
for (i=0; i<metas.length; i++) {
if (metas[i].name === "viewport") {
metas[i].content = "width=device-width, minimum-scale=1.0, maximum-scale=1.0";
}
}
d.addEventListener("gesturestart", gestureStart, false);
}
}(document));</script>
</head>
<body>
<h1 id="brian-ephraim---principal-frontend-engineer">Brian Ephraim - principal frontend engineer</h1>
<hr />
<p>NYC / remote / Garrison, NY<br />
914-482-2364<br />
email: <a href="mailto://[email protected]">[email protected]</a><br />
linkedin: <a href="https://www.linkedin.com/in/brian-ephraim-29680531">linkedin.com/in/brian-ephraim-29680531</a><br />
github: <a href="http://github.com/defualt">github.com/defualt</a></p>
<hr />
<h2 id="year-professional-summary">18 year professional summary</h2>
<h3 id="technology">Technology</h3>
<p><strong>Languages:</strong> ES6 - Javascript - HTML5 - Sass - CSS3 - Bash - LESS - PHP - SQL<br />
<strong>Frontend libraries:</strong> React - Redux - Angular - jQuery - Require - Backbone<br />
<strong>Tooling:</strong> WebPack - NPM - Gulp - Grunt - Docker - Vagrant - ImageMagick - Bower - Yeoman<br />
<strong>Servers:</strong> Node - Apache<br />
<strong>Testing:</strong> Jest - Mocha - Chai - Enzyme - Karma - Jasmine - Protractor<br />
<strong>CSS libraries:</strong> Bourbon - Bootstrap - Foundation<br />
<strong>Databases:</strong> MongoDB - MySQL<br />
<strong>Cloud services:</strong> Amazon Web Services (AWS) - Github - Sentry - GitLab - BitBucket<br />
<strong>Client/Server Communication:</strong> AJAX - WebSockets<br />
<strong>Graphics Applications:</strong> Sketch - Zeplin - Photoshop - Illustrator - InDesign<br />
<strong>Other Applications:</strong> Sublime - iTerm2 - Chrome Dev Tools - iOs Simulator - Genymotion - All the Browsers<br />
<strong>Version Control:</strong> Git - SVN - CVS</p>
<h3 id="career">Career</h3>
<h4 id="ted-conferences-video-education---consultant-january-2018---present">TED Conferences (video & education) - Consultant, January 2018 - present</h4>
<ul>
<li>Developing React Native applications from the ground up (iOs, Android, and web)</li>
<li>Meeting application requirements as sole app developer on one project
<ul>
<li>launching the app to production in iOs App Store and Android Play Store and as a web app</li>
<li>setting up a new React Native project</li>
<li>deploying with Fastlane to Android and iOs Beta testers</li>
<li>handling Apple and Google signing certificates</li>
<li>built entire application’s screens and business logic</li>
<li>developing a custom navigation system</li>
<li>building backend in Node to support Beta phase</li>
<li>communicating backend requirements for production needs to backend engineers</li>
<li>accomplishing network interacting with GraphQL</li>
<li>integrating Codepush for faster iterations</li>
<li>closely collaborating with design and product on features</li>
<li>building a custom video player with video download and caching functionality</li>
<li>inventing a markdown-based pseudo CMS for non-technical copy contributors</li>
</ul></li>
<li>Technical leading on another brand new React Native project
<ul>
<li>maintaining both projects together as a monorepo with a custom architecture to maximize code sharing</li>
<li>converting specifications into tickets for other engineers to accomplish</li>
<li>providing principle code reviews for four engineers to ensure code quality, performance, and conformance with established systems and patterns</li>
</ul></li>
</ul>
<h4 id="float-resource-scheduling---senior-frontend-developer-november-2017---march-2018">Float (resource scheduling) - Senior Frontend Developer, November 2017 - March 2018</h4>
<ul>
<li>Building a Slackbot</li>
<li>Implementing new features and bug fixes on a complex legacy website</li>
<li>Using React and Redux</li>
</ul>
<h4 id="building-robotics-internet-of-things---senior-frontend-engineer-november-2016---may-2017">Building Robotics (internet of things) - Senior Frontend Engineer, November 2016 - May 2017</h4>
<ul>
<li>Migrating build process towards Webpack</li>
<li>Advocating migration towards React/Redux</li>
<li>Establishing end-to-end test system</li>
<li>Integrating websockets in application frontend</li>
<li>Reviewing contributor code</li>
<li>Working 100% remote</li>
<li>Agile</li>
</ul>
<h4 id="okcupid-dating-website---frontend-engineer-november-2013---august-2016">OKCupid (dating website) - Frontend Engineer, November 2013 - August 2016</h4>
<ul>
<li>Building single-page and mutli-page web apps
<ul>
<li>Using React and Angular</li>
<li>responsible for entire dating site front end feature sets</li>
<li>in both sole code owner and collaborative roles</li>
</ul></li>
<li>Developing features, such as
<ul>
<li>complex business logic</li>
<li>touch and swipe interaction</li>
<li>infinite scroll</li>
<li>pull to refresh</li>
<li>pinch to zoom</li>
<li>photo upload</li>
<li>Instant chats and notifications with WebSockets</li>
<li>Tinder-like card swiping interface</li>
<li>animated screen transitions with 3D effects</li>
<li>swipeable image galleries</li>
<li>phone/tablet responsive</li>
<li>geolocation</li>
<li>sticky footers and headers</li>
<li>lazy loading assets</li>
<li>optimized load times via vanilla.js landing pages, on-demand asset loading, bundling, and compression</li>
<li>unit tests</li>
</ul></li>
<li>Assembling Grunt development environment, including:
<ul>
<li>localhost server</li>
<li>remote debugging console</li>
<li>effortless retina/non-retina spritesheet generation</li>
<li>endpoint proxying</li>
<li>build and deployment scripts for a variety of asset servers, including AWS</li>
<li>cache-busting mechanisms</li>
<li>asset compilation</li>
<li>rollback functionality</li>
<li>git integration</li>
</ul></li>
<li>Owning entire Git codebases</li>
<li>Sharing Git codebases with other front-end engineers</li>
<li>Conducting A/B tests</li>
<li>Tweaking designs based on test results</li>
<li>Organizing project roadmaps</li>
<li>Transferring architecture and features between separate projects</li>
<li>Writing detailed specification documents for backend developers</li>
<li>Collaborating with backend developers on API modeling</li>
<li>Collaborating closely with designers on product features</li>
<li>Styling CSS with pixel perfect alignment against designer files</li>
</ul>
<h4 id="bernieselfie.com-side-project---creator-july-2015---may-2017">BernieSelfie.com (side project) - creator, July 2015 - May 2017</h4>
<ul>
<li>creating a website that helps people combine their photos with campaign graphics and share the result on social media</li>
</ul>
<h4 id="viggle-inc.-second-screen-app---senior-web-javascript-engineer-april-2013---october-2013">Viggle Inc. (second screen app) - Senior Web / Javascript Engineer, April 2013 - October 2013</h4>
<ul>
<li>Owning the Angular codebase for two single page apps</li>
<li>Delegating tasks to other frontend engineers</li>
<li>Coordinating production deployment with backend</li>
<li>Estimating tasks, researching technology, and planning for future initiatives</li>
</ul>
<h4 id="blaboid-inc.-startup---entrepreneur-november-2010---april-2013">Blaboid Inc. (startup) - Entrepreneur, November 2010 - April 2013</h4>
<ul>
<li>Launching a social networking platform</li>
<li>Coordinating business needs with lawyer, accountant, and consultants</li>
<li>Developing the platform, consisting of a single page HTML5 Backbone mobile web app with user generated content, hosted on Amazon, with PHP/MySQL backend</li>
</ul>
<h4 id="alexander-interactive-agency---frontend-web-developer-may-2011---march-2012">Alexander Interactive (agency) - Frontend Web Developer, May 2011 - March 2012</h4>
<ul>
<li>Serving E-commerce clients such as Lowe’s Home Improvement and Adorama</li>
<li>Doing agile with daily scrum calls, sprint planning/review, and demos for executive product owners</li>
<li>Flying to client corporate headquarters for onsite consulting</li>
<li>Working with distributed team members via Skype and email</li>
</ul>
<h4 id="kickappskit-digital-agency---frontend-web-developer-october-2010---may-2011">KickApps/Kit Digital (agency) - Frontend Web Developer, October 2010 - May 2011</h4>
<ul>
<li>Developing social portals for such clients as:
<ul>
<li>The Doctor Oz TV Show</li>
<li>MIT University</li>
<li>Penguin publishers</li>
<li>Book Of Cool</li>
<li>Squabbler</li>
<li>Sharecare</li>
<li>Leap4Life</li>
</ul></li>
<li>Working with distributed team members via Skype and email</li>
</ul>
<h4 id="rail-europe-travel-website---web-designer-october-2006---october-2010">Rail Europe (travel website) - Web designer, October 2006 - October 2010</h4>
<ul>
<li>developing mobile and desktop e-commerce web frontend</li>
</ul>
<h4 id="epoch-band---guitarist-september-2003---october-2006">Epoch (band) - Guitarist, September 2003 - October 2006</h4>
<ul>
<li>writing songs</li>
<li>engineering audio</li>
<li>producing albums</li>
<li>performing shows</li>
<li>building and programming electronic instruments</li>
<li>creating the band’s website</li>
</ul>
<h4 id="regeneron-pharmaceuticals---graphic-designer-july-2000---october-2005">Regeneron (pharmaceuticals) - Graphic designer, July 2000 - October 2005</h4>
<ul>
<li>Designing logos, banners, posters, fliers and presentation materials</li>
<li>Preparing images for patent submission</li>
<li>Formatting scientific imagery for journal publication</li>
</ul>
<hr />
<h2 id="education">Education</h2>
<p>2003 Ithaca College, Ithaca NY, Bachelor of Arts, Philosophy Major</p>
</body>
</html>