-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
1528 lines (1366 loc) · 57.6 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
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
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Christopher Robison</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<style>
/********************************************
* reset from
* http://meyerweb.com/eric/tools/css/reset/
*******************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
display: flex;
justify-content: center;
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/****************
* COMMONS
****************/
body,
html {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 13px;
color: #40484f;
font-weight: 400;
letter-spacing: 0;
line-height: 1.46153846;
text-align: left;
-webkit-text-size-adjust: 100%;
}
p {
display: block;
margin-bottom: 1.3em;
}
a {
color: #0095ff;
text-decoration: none;
}
a:hover {
color: #0c65a5;
text-decoration: underline;
}
ul {
margin-top: 1rem;
}
li {
list-style-type: square;
list-style-position: outside;
margin-left: 1.3em;
}
.highlights>li>p {
margin-bottom: 0.5em;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.67rem;
}
h3 {
font-size: 1.27rem;
}
em {
color: #757575;
}
blockquote {
margin-bottom: 1em;
}
strong {
font-weight: 700;
}
/* main container */
#resume {
padding: 1rem;
margin-top: 2rem;
max-width: 80rem;
margin: 2rem auto 0px auto;
display:inline-block;
}
/* every section wrapper */
.section {
margin-bottom: 1rem;
}
section .location {
margin-right: .5em;
color: #606d76;
font-weight: 700;
}
#contact {
margin-top: .5rem;
}
#profiles .item {
padding: 0;
}
#header>#profiles,
#header>#contact,
#skills,
#languages,
#interests {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-justify-content: flex-start;
justify-content: flex-start;
}
#header>div {
line-height: 1.5;
}
#header>div>div {
margin-right: 1.2em;
}
#header h1.name {
font-size: 2.8rem;
font-weight: 100;
line-height: 100%;
}
#header h2.label {
color: #202931;
font-size: 1.47rem;
font-weight: 300;
}
#header .picture {
width: 11em;
float: right;
border-radius: 4px;
}
.main-summary {
background: #f1f8ff;
padding: 1.2em 1em;
margin-top: 1rem;
}
.main-summary p {
margin: .15em 0 0;
}
h2.section-title {
display: inline-block;
background: #fff;
padding: 0 1em 0.3em 0;
color: #ff6d1f;
text-transform: uppercase;
font-weight: 600;
border: none;
font-size: .9rem;
}
.section>header {
position: relative;
}
.fa {
margin-right: 0.25em;
}
.section>header::after {
position: absolute;
left: 0;
top: .7em;
height: 1px;
background: #ccc;
content: "";
width: 100%;
z-index: -100;
display: block;
}
.section.main-summary>section {
margin: 0;
}
.section>section>header {
font-size: 1.38rem;
position: relative;
margin-top: .7em;
}
.section>section>header:first-of-type {
margin: 0;
}
.section>section>header .space-left {
position: absolute;
left: -1.56rem;
top: 5px;
color: #aaa;
line-height: 1;
opacity: 0;
}
.position,
.company,
.organization,
.institution,
.date,
.area,
.studyType,
.title,
.awarder {
display: inline;
}
.position,
.studyType,
.area,
.title,
.language,
.name {
font-weight: 600;
}
.company::before,
.institution::before,
.organization::before,
.awarder::before {
content: "at "
}
.company,
.institution,
.organization,
.awarder {
color: #606d76;
font-weight: 400;
}
.section header .date {
font-size: 1rem;
display: inline-table;
padding: .1em 0;
font-weight: 600;
}
ul.keywords,
ul.courses {
margin-top: .5em;
}
ul.keywords li,
ul.courses li {
display: inline-block;
margin: 2px 2px 2px 0;
padding: 4px 5px 5px;
font-size: .9rem;
line-height: 1;
text-transform: lowercase;
color: #3e6d8e;
background-color: #dfeaf1;
border: 0 solid #dfeaf1;
white-space: nowrap;
}
ul.keywords li:hover,
ul.courses li:hover {
background: #dfeaf0;
}
.item {
padding: .5em 0;
}
.gpa {
padding-bottom: .5em;
}
.fa.social {
font-size: 1.1em;
}
/* Social Media Brand Colors */
.google-plus {
color: #dd4b39;
}
.tumblr {
color: #32506d;
}
.foursquare {
color: #0072b1;
}
.facebook {
color: #3b5998;
}
.linkedin {
color: #007bb6;
}
.pinterest {
color: #cb2027;
}
.dribbble {
color: #ea4c89;
}
.instagram {
color: #517fa4;
}
.twitter {
color: #00aced;
}
.soundcloud {
color: #ff3a00;
}
.wordpress {
color: #21759b;
}
.youtube {
color: #bb0000;
}
.github {
color: #171515;
}
.stack-overflow {
color: #828386;
position: relative;
}
.flickr {
color: #ff0084;
}
.stack-overflow::after {
position: absolute;
left: 0;
content: '\f16c';
color: #f68a1f;
overflow: hidden;
height: 100%;
}
.telegram {
color: #2291c3;
}
#languages .item,
#skills .item,
#interests .item {
width: 15em;
padding: 0 .5em .5em 0;
border-bottom: none;
}
#skills .item {
width: 16em;
}
#skills .item .keywords {
width: 15em;
}
/* Skill chart */
.level {
margin-bottom: .5em;
}
.level .bar {
border: 1px solid #ddd;
display: block;
width: 10em;
height: 5px;
position: relative;
}
.level .bar::after {
position: absolute;
content: " ";
top: 0;
left: 0;
background: black;
height: 5px;
}
.level.beginner .bar::after {
background: #EB5F51;
width: 2.5em;
}
.level.intermediate .bar::after {
background: #ffdf1f;
width: 5em;
}
.level.advanced .bar::after,
.level.fluent .bar::after {
background: #5CB85C;
width: 7.5em;
}
.level.master .bar::after,
.level.native.speaker .bar::after {
background: #59C596;
width: 10em;
}
#references .item {
padding-left: .5em;
border-left: 5px solid #ff6d1f;
}
.toggle-item {
visibility: hidden;
}
/******************
* HELPER CLASSES
******************/
.clear::after {
content: "";
display: table;
clear: both;
}
.display {
display: block;
opacity: 1 !important;
}
.margin1 {
margin-bottom: .5rem;
}
/****************
* TABLET
****************/
@media screen and (min-width: 602px) {
#resume {
width: 80%;
margin: 0 auto;
}
}
/****************
* LAPTOP
****************/
@media screen and (min-width: 1025px) {
li {
margin-left: 1.5em;
}
#resume {
width: 820px;
margin: 2rem auto;
}
.section>section>header .space-left {
opacity: 1;
cursor: pointer;
}
.section>section {
margin-left: 1.67rem;
}
.toggle-item {
transform: translate(-9999px);
}
.toggle-item+label {
display: block;
margin-top: -16px;
}
.toggle-item:checked+label:after {
content: '\f0d7';
}
.toggle-item+label:after {
float: left;
cursor: pointer;
margin-left: -20px;
color: #aaa;
font-size: 16px;
content: '\f0da';
font-family: Fontawesome;
}
.toggle-item~.item {
height: 0;
opacity: 0;
}
.toggle-item:checked~.item {
height: auto;
opacity: 1;
transition: all .5s linear;
}
.company::before,
.institution::before,
.organization::before,
.awarder::before {
content: "| ";
}
.header-left {
float: left;
width: 70%;
word-break: normal;
}
.section header .date {
float: right;
padding: .2em;
}
.display {
display: none;
}
.display:not(.none) {
display: block;
}
}
@media print {
#resume {
margin: 0;
padding: 0;
-ms-word-wrap: break-word;
word-wrap: break-word;
line-height: 1.3;
/*font-family: Arial, Georgia, "Lucida Grande", sans-serif;*/
}
@page {
margin: 1cm 1.4cm;
}
.item-count {
display: none;
}
.company::before,
.institution::before,
.organization::before,
.awarder::before {
content: "at ";
}
.main-summary {
padding: 2rem 0;
}
.section {
margin: .8rem 0;
padding: 0;
}
.section header {
padding-bottom: .15rem;
}
.section .location {
padding-bottom: .15rem;
}
.stack-overflow::after {
content: "";
}
.fa.social {
color: #828386;
}
ul {
margin-top: .4em;
}
ul,
li {
padding: 0;
}
ul.keywords li,
ul.courses li {
margin: 0;
padding: 0;
font-size: .8rem;
text-transform: lowercase;
}
ul.keywords li::after,
ul.courses li::after {
padding: 0 0 0 .1rem;
content: " |";
}
ul.keywords::before,
ul.courses::before {
font-size: .8rem;
font-weight: 600;
}
ul.keywords::before {
content: "Skills acquired: ";
}
#skills .keywords::before {
content: '';
}
.section p {
margin: 0;
padding: 0;
}
ul.courses::before {
content: "Major courses: ";
}
ul.keywords li:last-of-type::after,
ul.courses li:last-of-type::after {
content: "";
}
.level em {
font-style: normal;
padding: .1em 0;
}
.level .bar {
display: none;
}
#profiles .item {
padding: 0;
}
.item.display {
display: block;
opacity: 1 !important;
}
}
section.education-item {
clear: both;
}
section { clear: left; }
</style>
</head>
<body>
<div id="resume">
<header id="header" class="clear">
<img class="picture" src="data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAAKAAD/4QN2aHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzE0OCA3OS4xNjQwMzYsIDIwMTkvMDgvMTMtMDE6MDY6NTcgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6MDE0QjQyODgzMDkyMTFFQkIwMjRFQUVFNEYwMUQ2RTgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTk5MDIxRjc0QzE1MTFFQkI2MzA4RDgyNzRBQjk4ODgiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTk5MDIxRjY0QzE1MTFFQkI2MzA4RDgyNzRBQjk4ODgiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjAgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4Y2E2NTExYy1jMTEyLTQ5ZTMtOTk3OS05MTBmNGRmNTg2NzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDE0QjQyODgzMDkyMTFFQkIwMjRFQUVFNEYwMUQ2RTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJE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" alt="Christopher Robison" />
<div class="middle">
<h1 class="name">Christopher Robison</h1>
<h2 class="label">Award-winning technology leader</h2>
</div>
<span class="location">
<span class="city">San Francisco,</span>
<span class="region">CA</span>
</span>
<div id="contact">
<div class="website">
<span class="fa fa-external-link"></span>
<a target="_blank" target="_blank" href="https://www.cdr2.com/">https://www.cdr2.com/</a>
</div>
<div class="email">
<span class="fa fa-envelope-o"></span>
<a href="mailto:cdr@cdr2.com">cdr@cdr2.com</a>
</div>
<div class="phone">
<span class="fa fa-mobile"></span>
<a href="tel:(415) 810-6991">(415) 810-6991</a>
</div>
</div>
<div id="profiles">
<div class="item">
<div class="username">
<span class="fa fa-linkedin linkedin social"></span>
<span class="url">
<a target="_blank" href="https://www.linkedin.com/in/crobison">crobison</a>
</span>
</div>
</div>
<div class="item">
<div class="username">
<span class="fa fa-twitter twitter social"></span>
<span class="url">
<a target="_blank" href="https://twitter.com/thechrisrobison">thechrisrobison</a>
</span>
</div>
</div>
<div class="item">
<div class="username">
<span class="fa fa-github github social"></span>
<span class="url">
<a target="_blank" href="https://github.com/chrisrobison">chrisrobison</a>
</span>
</div>
</div>
</div>
</header>
<section class="section main-summary">
<section>
<div><p>Skilled technology leader excelling in the rapid development of solutions to manage complex technical environments for growing companies, ranging from startups to billion dollar industry leaders. With over 20 years experience in the industry, I can build, develop and lead high-performance technical teams and effectively manage people and resources in-person and remotely across multiple geographic locations. My extensive experience allows me to leverage my business acumen and technical expertise to translate a technology needs into innovative solutions and actionable plans. Hands-on but I know how to delegate. I am just as comfortable managing people and engineering resources as I am hacking away at code. tl;dr: I build things that make companies go.</p></div>
</section>
</section>
<section class="section margin1">
<header>
<h2 class='section-title'>Skills</h2>
</header>
<section id="skills">
<div class="item">
<h3 class="name">
Programming Languages
</h3>
<ul class="keywords">
<li>Javascript [node.js]</li>
<li>Javascript [browser]</li>
<li>C</li>
<li>C++</li>
<li>Java</li>
<li>Kotlin</li>
<li>Objective-C</li>
<li>Swift</li>
<li>PHP</li>
<li>Python</li>
<li>Perl</li>
<li>Go</li>
<li>C#</li>
<li>Bash</li>
</ul>
</div>
<div class="item">
<h3 class="name">
Leadership
</h3>
<ul class="keywords">
<li>Strategic Planning</li>
<li>Team Building</li>
<li>Team Leadership</li>
<li>Procedure Development</li>
<li>Process Improvement</li>
<li>Product Development</li>
<li>Entrepreneurship</li>
<li>Budgeting / Financial Planning</li>
</ul>
</div>
<div class="item">
<h3 class="name">
Software Engineering
</h3>
<ul class="keywords">
<li>Best Practices</li>
<li>Entrepreneurship</li>
<li>Software Development</li>
<li>Microservices Architecture</li>
<li>Scrum / Agile</li>
<li>Mobile Application Development</li>
<li>Cloud Services</li>
<li>Service Integration</li>
</ul>
</div>
</section>
</section>
<section class="section">
<header>
<h2 class='section-title'>Work Experience <span class="item-count">(11)</span></h2>
</header>
<section id="work">
<section class="work-item">
<input id="work-item-0" type="checkbox" class="toggle-item" checked="checked" />
<label for="work-item-0"></label>
<header>
<div class="position">Chief Technology Officer</div>
<div class="company">D. Harris Tours, Inc.</div>
<div class="date">
<span class="startDate">February 2020</span>
<span class="endDate">- Present</span>
</div>
</header>
<span class="location">
<span class="fa fa-map-marker"></span>
San Francisco, CA
</span>
<span class="website">
<a target="_blank" href="https://dharristours.com/">https://dharristours.com/</a>
</span> <div class="item" id="work-item">
<div class="summary">
<p><p>D Harris Tours is a shuttle bus transportation company which offers 22-44 passenger buses for hire. The majority of their business is derived from schools (student event transportation) and local tours. 10 years ago, I developed and implemented software that allowed D Harris to grow from 2 buses to 12. But the system I implemented 10 years ago was not made for the increased number of drivers, buses, customers and trips the company had grown to serve. Hired as CTO where I updated and enhanced their systems with modern tools to better manage the growing company; real-time bus data, automated maintenance notifications, automated trip confirmations and notifications via email and SMS and more. After reviewing the first months trip data, I found that drivers would often sit idle for 4-5 hours, waiting to pickup students they had dropped off at a football game or band practice. I developed an algorithm to identify these idle times and match them with jobs. I offered drivers an extra hours pay if they did the extra trip. This nearly doubled the daily revenue until the COVID-19 shutdown.</p></p>
</div>
<ul class="highlights">
<li><p>Automated notifications for trips, bus maintenance</p></li>
<li><p>Automated billing and invoicing</p></li>
<li><p>Migrated driver logs to digital format</p></li>
<li><p>Increased daily revenue with better trip optimization</p></li>
</ul>
</div>
</section>
<section class="work-item">
<input id="work-item-1" type="checkbox" class="toggle-item" />
<label for="work-item-1"></label>
<header>
<div class="position">Manager, Software Engineering</div>
<div class="company">Conversant, Inc. (formerly Mediaplex)</div>
<div class="date">
<span class="startDate">July 2010</span>
<span class="endDate">- February 2020</span>
</div>
</header>
<span class="location">
<span class="fa fa-map-marker"></span>
San Francisco, CA
</span>
<span class="website">
<a target="_blank" href="https://conversantmedia.com">https://conversantmedia.com</a>
</span> <div class="item" id="work-item">
<div class="summary">
<p><p>Working at the same company for 10 years presented many challenges. I wore many hats and performed many roles all while the company changed names and was bought and sold twice. By the time my team was cut due to COVID-19, we were responsible for designing, developing and maintaining the infrastructure and code-base that serves many millions of mobile and rich media ads each day. </p><p>Mediaplex was an online advertising company that was started in 1999 and in 2001 acquired by ValueClick. The servers and software that ran the ad serving platform was over a decade old and the stack was beginning to show its age. The surge in popularity of "Rich Media" ads that began hitting the market in 2009 was beyond what their backend had been engineered to handle. Competing ad vendors who could serve these new rich media ads began stealing away valuable business, costing the company revenue and customers. I was hired to lead their Rich Media effort and help modernize their ad serving infrastructure and metric collection.</p><p>I was responsible for designing and implementing a RESTful API for serving rich media ads and building out scalable backend services to handle integration with existing servers and infrastructure.</p><p>A large part of Rich Media ad serving and reporting is performed in the client and this required creating a small, reliable, cross-browser client-side ad loading framework that worked in tandem with the new backend API. After stabilizing the infrastructure, Managed engineering resources to work with product services team to ensure the successful deployment of all Rich Media ad campaigns. These enhancements were a great success by all counts; increasing revenue by $1.2 million in the first year alone.</p><p>By the time Rich Media ad serving was running smoothly, demand for mobile ads was steadily increasing. My team was tasked with implementing a mobile ad solution. Our company joined the IAB [https://iab.com], a consortium of online advertising companies that develops industry standards on my recommendation. As a participating IAB member, we were instrumental in helping to define the updated MRAID 2.0 standard for serving mobile ads. The MRAID protocol is still currently in use and the de facto standard for mobile ad serving. I wrote the initial Conversant Mobile Ad MRAID SDK's for both iOS and Android as well test apps for both platforms to be used internally and by our customers to preview ads in a mobile environment before deployment. Infrastructure upgrades done for logging and reporting of rich media ads carried over nicely to mobile and no changes to the backend were needed.</p></p>
</div>
<ul class="highlights">
<li><p>Contributed to IAB MRAID 2.0 standard</p></li>
<li><p>Implemented MRAID SDK's on iOS and Android platforms</p></li>
<li><p>Developed and deployed mobile ad solutions for multiple platforms.</p></li>
<li><p>Designed and deployed 'Rich Media' ad delivery and reporting infrastructure.</p></li>
<li><p>Architected and deployed RESTful API for ad serving, tracking metrics and reporting.</p></li>
<li><p>Developed client-side Javascript 'ad controller' for mobile and web</p></li>
<li><p>Developed flexible metrics tracking with non-blocking endpoints</p></li>
<li><p>10 years</p></li>
</ul>
</div>
</section>
<section class="work-item">
<input id="work-item-2" type="checkbox" class="toggle-item" />
<label for="work-item-2"></label>
<header>
<div class="position">Web Architect</div>
<div class="company">Mindjet</div>
<div class="date">
<span class="startDate">September 2007</span>
<span class="endDate">- July 2010</span>
</div>
</header>
<span class="location">
<span class="fa fa-map-marker"></span>
San Francisco, CA
</span>
<span class="website">
<a target="_blank" href="https://www.mindjet.com">https://www.mindjet.com</a>