-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1388 lines (1286 loc) · 52.7 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
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 lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Resume of Olive Haven</title>
<!-- <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> -->
<!-- <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" rel="stylesheet">
<style type="text/css">
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800);
@charset "utf-8";
@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }
body{
font-family: 'Open Sans', Arial, Tahoma;
font-weight: 400;
color: #363636;
background: #334960;
}
blockquote {
font-size: 1em;
}
.container{
margin-top: 80px;
margin-bottom: 15px;
background: #fff;
}
#photo-header{
margin-top: -75px;
}
#photo{
width: 160px;
height: 160px;
border-radius: 50%;
overflow: hidden;
padding: 5px;
background: #334960;
display: inline-block;
}
#photo img{
width: 150px;
height: 150px;
border-radius: 50%;
}
#text-header h1{
margin: 0;
padding: 0;
font-size: 1.5em;
font-weight: 700;
text-transform: uppercase;
letter-spacing: -1px;
}
#text-header h1::first-line{
font-size: 1.5em;
font-weight: 800;
line-height: 1.5em;
}
#text-header h1 span{
color: #334960;
opacity: 0.7;
}
#text-header h1 sup{
opacity: 0.5;
}
#text-header:after{
width: 100%;
height: 3px;
border-bottom: 1px solid #ddd;
margin-top: 15px;
content: '';
display: block;
}
.box{
padding-bottom: 10px;
margin-bottom: 25px;
}
.box h2{
color: #227c74;
font-size: 1.5em;
font-weight: 700;
text-transform: uppercase;
}
.box p{
white-space: pre-line;
}
#awards,
#education{
margin-top: 20px;
margin-bottom: 0;
position: relative;
padding: 1em 0;
list-style: none;
}
#awards:before,
#education:before {
width: 5px;
height: 100%;
position: absolute;
left: 35px;
top: 0;
content: ' ';
display: block;
background: #32475c;
background: -moz-linear-gradient(top, #ffffff 0%, #32475c 7%, #32475c 89%, #ffffff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(7%,#32475c), color-stop(89%,#32475c), color-stop(100%,#ffffff));
background: -webkit-linear-gradient(top, #ffffff 0%,#32475c 7%,#32475c 89%,#ffffff 100%);
background: -o-linear-gradient(top, #ffffff 0%,#32475c 7%,#32475c 89%,#ffffff 100%);
background: -ms-linear-gradient(top, #ffffff 0%,#32475c 7%,#32475c 89%,#ffffff 100%);
background: linear-gradient(to bottom, #ffffff 0%,#32475c 7%,#32475c 89%,#ffffff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 );
}
#awards li,
#education li{
width: 100%;
z-index: 2;
position: relative;
float: left;
}
#awards .year,
#education .year{
width: 14%;
background: #fff;
padding: 10px;
font-weight: 700;
display: inline-block;
}
#awards .description,
#education .description{
width: 83%;
display: inline-block;
background: #eee;
margin-bottom: 10px;
position: relative;
padding: 10px;
border-bottom: 1px solid #ccc;
border-right: 1px solid #ccc;
}
#awards .description:after,
#education .description:after {
content: '';
position: absolute;
top: 15px;
right: 0;
left: -16px;
height: 0;
width: 0;
border: solid transparent;
border-right-color: #eee;
border-width: 8px;
pointer-events: none;
}
#awards .description h3,
#education .description h3{
font-size: 1.2em;
margin: 0;
padding: 0;
font-weight: 700;
}
#awards .description p,
#education .description p{
margin-top: 5px;
padding: 0;
}
.job{
margin-bottom: 15px;
}
.job .details {
margin-left: 3%;
width: 95%;
padding: 10px;
margin-bottom: 10px;
background: #eee;
border-bottom: 1px solid #ccc;
border-right: 1px solid #ccc;
}
.job .where{
font-size: 1.2em;
font-weight: bold;
}
.job .year{
opacity: 0.7;
}
.job .profession{
font-size: 1.2em;
font-weight: bold;
}
.job .description{
line-height: 1.5em;
}
/* .job .highlights{
padding: 5px 0;
font-weight: bold;
} */
.job .job-details {
padding-left: 5%;
width: 100%;
}
.job .job-details .description {
white-space: pre-line;
tab-size: 4;
}
.publication {
margin-bottom: 0;
}
.publication .name{
font-size: 1em;
font-weight: bold;
}
.publication .year{
opacity: 0.7;
}
.publication p{
margin: 0;
padding-top: 10px;
}
.contact-item{
width: 100%;
float: left;
}
.contact-item .icon{
padding: 10px;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
color: #32475c;
background: #eee;
}
.contact-item:last-child .icon{
border-bottom: none;
}
.contact-item .title{
width: 80%;
width: calc(100% - 55px);
font-weight: 700;
opacity: 0.9;
}
.contact-item .title.only{
margin-top: 10px;
}
.contact-item .description{
width: 80%;
width: calc(100% - 55px);
color: #334960;
}
.item-interests,
.item-skills{
height: 30px;
color: #334960;
padding: 5px 10px;
margin-bottom: 5px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 1.1em;
font-weight: 600;
}
.interest,
.skill{
color: #fff;
display: inline-block;
margin-right: 5px;
margin-bottom: 5px;
padding: 5px 10px;
background: #32475c;
position: relative;
font-size: .85em;
}
.skill-level {
background-color: #227c74;
border-radius: 4px;
color: #fff;
padding: 1px 8px;
font-size: .75em;
position: absolute;
margin: 1px 10px;
}
#language-skills .skill{
margin: 10px 0;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
</style>
<style type="text/css" media="print">
body {
font-size: .95em;
-webkit-print-color-adjust: exact;
}
a[href]:after {
content: none !important;
}
#photo{
display: none;
}
.box {
margin-bottom: -10px;
}
blockquote,
#education,
#awards,
.contact-item,
.publication,
.skills,
.interests {
page-break-inside: avoid;
}
.col-sm-5{
width: 40%;
padding: 0 15px;
}
.col-sm-7{
width: 60%;
padding: 0 15px;
}
.skills .col-sm-offset-1,
.interests .col-sm-offset-1{
margin-top: -10px;
margin-bottom: 5px;
}
#education {
margin: 0;
margin-bottom: -20px;
}
#awards:before,
#education:before {
background: none;
}
#awards .description,
#education .description,
.job .details {
border: 1px solid #eee;
}
.publication,
.publication .panel-heading,
.publication .name{
margin: 0;
padding: 0 5px;
border: none;
}
.publication .panel-body {
padding: 0 10px;
margin: 0;
}
.badge {
margin: 0;
}
.list-group-item{
border: none;
margin: 0;
padding: 5px 15px;
}
.list-group-item:after{
content: '';
position: absolute;
top: 8px;
right: 0;
left: -1px;
height: 0;
width: 0;
border: solid transparent;
border-right-color: #999;
border-width: 4px;
pointer-events: none;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<div id="photo-header" class="text-center">
<!-- PHOTO (AVATAR) -->
<div id="photo">
<img src="https://avatars.githubusercontent.com/u/95305" alt="avatar">
</div>
<div id="text-header" >
<h1>Olive Haven<br></h1>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-7">
<!-- ABOUT ME -->
<div class="box">
<h2><i class="fas fa-user ico"></i> About</h2>
<p>In my roles as an experienced member of technical staff / tech lead, I have been dedicated to fostering empathy and encouraging teamwork, collaboration, and mentorship within my teams. In managing and resolving incidents with high customer impact, I strive to create a healthy and productive work environment by maintaining open lines of communication with stakeholders. I mentor team members in analytical problem-solving, emphasizing the application of the scientific method to research issues and conduct experiments for root cause analysis. By leveraging strong written and verbal communication skills and prioritizing customer feedback, I can drive continuous improvement, informed decision-making, and effective engineering roadmap planning. My extensive experience in roadmap planning, Agile, and Kanban helps ensure projects stay within scope and deliver exceptional customer service and engagement.</p>
</div>
<!-- WORK EXPERIENCE -->
<div class="box">
<h2><i class= "fas fa-suitcase ico"></i> Work Experience</h2>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
LegalZoom
<div class="pull-right">
Remote
</div>
</div>
<div class="address">
<a href="https://www.legalzoom.com" target= "_blank"><i class="fas fa-globe ico"></i> https://www.legalzoom.com</a>
</div>
<div class="year">September 2022 – September 2024</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Senior Site Reliability & DevOps Engineer</div>
<div class="description">
Experienced technical staff member supporting a high growth ~350-member engineering org and helping to double an Engineering Services (SRE/DevOps/Platform) organization from ~10 to ~20 engineers supporting SaaS and B2B products. I started working as an SRE in 2022, then moved to support the expanding DevOps team throughout 2023
<ol><li>Datacenter migration to AWS cloud infrastructure, resulting in significant cost savings and improved resource provisioning efficiency through infrastructure as code and AWS services.</li><li>Migration to from Akamai CDN to AWS CloudFront, leveraging CDK infrastructure-as-code in TypeScript / JavaScript to provide a more performant, cost-effective, and engineer-friendly self-serve platform for CDN management.</li><li>Supported expanding the SRE and DevOps teams in hiring 2 new DevOps engineers, 2 new Site Reliability Engineers, and and cross-training 4 former Datacenter Operations Engineers as AWS Cloud Engineers. Facilitated onboarding for new engineers through comprehensive documentation and knowledge sharing sessions, accelerating their integration into the team and promoting a collaborative environment.</li><li>Enhanced system reliability through effective incident management and troubleshooting, with a focus on root cause analysis and continuous improvement, reducing downtime and service disruptions.</li><li>Strengthened cross-team collaboration by providing hands-on support to developer teams, streamlining release processes, and supporting service launches. This resulted in increased release velocity, minimized incidents, and improved team efficiency.</li><li>Promoted a collaborative and empathetic team environment, fostering knowledge sharing, improving team morale, and mentoring junior engineers.</li><li>Platform operations and maintenance for CI/CD, Monitoring, Deployment systems (including migrating legacy systems). Including GitHub Enterprise, GitHub Actions, ArgoCD, Jenkins, Kubernetes, Datadog, Azure Active Directory, Azure DevOps, Rundeck, IIS, and Rundeck.</li></ol>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Armorblox
<div class="pull-right">
Remote
</div>
</div>
<div class="address">
<a href="https://www.armorblox.com/" target= "_blank"><i class="fas fa-globe ico"></i> https://www.armorblox.com/</a>
</div>
<div class="year">March 2021 – July 2022</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Senior System Reliability Engineer</div>
<div class="description">
Hired as Product / Platform engineer for this small email security SaaS startup, I ran into several (rather normal) startup issues including immature engineering culture, burgeoning technical debt, code rot, and poor production reliability. I was able to help plug these holes by creating documentation and implementing engineering and development best practices. This work on improving developer experience led to discussing production reliability shortcomings with the CTO and engineering organization management.
Following this proven positive impact, I was able to get C-level buy-in to create a dedicated Systems Reliability Team. As a founding member of this team, I helped hire and train Junior, Senior, and Principal engineers. My main goal was to get each member up to speed, able to progress as individual engineers, and to support the broader engineering org goals and milestones. With this fledgling SRE team, I worked to prioritize the following engineering goals:
<ol><li>Automation of manual tasks in the production environment (as well as development and staging), primarily leveraging Stackstorm workflow/runbook automation services</li><li>Improved development workflow and maturing engineering culture with Bitbucket Pipelines and Jenkins CI/CD and improvements to in-house development environment Kubernetes / Helm management</li><li>Monitoring of application and infrastructure services with Prometheus and Grafana</li><li>Oncall rotation with actionable metrics & dashboards, detailed runbooks, and incident response procedures to improve detection of and response time to incidents in production systems</li><li>Infrastructure as Code (IaC) defining environments, clusters, services with reproducible Terraform, Helm, and ArgoCD code managed in understandable and testable Git repositories</li><li>Catch-all DevOps support for developers, QA engineers, and Customer Support staff who need help understanding, interacting with, fixing issues, as well as identifying common problems and developing solutions to prevent future recurrence</li></ol>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
New Context
<div class="pull-right">
Remote
</div>
</div>
<div class="address">
<a href="https://newcontext.com" target= "_blank"><i class="fas fa-globe ico"></i> https://newcontext.com</a>
</div>
<div class="year">March 2020 – March 2021</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Senior DevSecOps Consultant</div>
<div class="description">
I was hired as a remote security consultant contracting with large enterprise clients to do security analysis of infrastructure.
While there, I created Go microservices leveraging GCP, AWS, Kubernetes, and Postgres APIs to do internal service discovery and track sensitive data flow throughout organizational infrastructure. The results of this analysis were stored in an extensible neo4j graph database and surfaced as security and business metric queries and dashboards.
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Atlassian
<div class="pull-right">
Mountain View, CA
</div>
</div>
<div class="address">
<a href="https://atlassian.com" target= "_blank"><i class="fas fa-globe ico"></i> https://atlassian.com</a>
</div>
<div class="year">February 2017 – February 2018</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Senior Trust Engineer</div>
<div class="description">
I worked as a Senior Software Engineer building distributed microservices in Go for internal Identity APIs. This involved interacting with various Product, Platform, and SRE teams across Atlassian to support their specific use cases of a overarching Atlassian product and user Identity.
My main task was building a distributed, high reliability, low latency authorization store from scratch as the backend authorization provider for all modern Go microservices (with legacy support for custom authorization architectures already in place in Jira and Confluence). Much of this work was on low-level performance tuning of queries to shared Cassandra and Redis databases.
I gained a lot of monitoring and performance tuning skills by working with Atlassian's amazing embedded SRE team to:
<ol><li>Implement custom metric gathering with Prometheus</li><li>Create performance & reliability monitoring dashboards in Honeycomb</li><li>Act as first line Oncall and service specific alerting and operations runbooks</li><li>Create automated CI/CD testing and full microservice load testing across staging environments</li><li>Have full ownership of the services release management, including GitOps for environment management and hotfixes</li></ol>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Salesforce
<div class="pull-right">
San Francisco, CA
</div>
</div>
<div class="address">
<a href="https://salesforce.com" target= "_blank"><i class="fas fa-globe ico"></i> https://salesforce.com</a>
</div>
<div class="year">June 2016 – December 2016</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Distributed Systems/Security Engineer</div>
<div class="description">
I created a Public Key Infrastructure for internal services including HSM-backed CA with CFSSL and Puppet managed internal service public key credential generation.
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Cloudflare
<div class="pull-right">
San Francisco, CA
</div>
</div>
<div class="address">
<a href="https://cloudflare.com" target= "_blank"><i class="fas fa-globe ico"></i> https://cloudflare.com</a>
</div>
<div class="year">September 2014 – March 2016</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Cryptographic Systems Engineer</div>
<div class="description">
I improved global web cryptographic standards and implementations. I helped provide fast and secure TLS for free to millions of sites by implementing low level extensions to standard nginx to allow dynamic TLS cert and key lookup from a global distributed cache.
I also improved many open source PKI and generic infosec infrastructure software in OpenSSL, Go, and CFSSL toolkit.
I implemented "Keyless SSL" software in Go allowing use of proxied TLS keys from otherwise untrusted edge servers so that TLS wouldn't need to be shipped to untrusted datacenters or hostile jurisdictions.
During my time here, I learned a great deal about the modern TLS ecosystem on the internet, including spending many hours on code archaeology of various server and client codebases or testing closed source implementations to diagnose and fix / workaround protocol bugs as they came up in the wild.
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Google Summer of Code
<div class="pull-right">
Stanford, CA
</div>
</div>
<div class="address">
<a href="https://ooni.org" target= "_blank"><i class="fas fa-globe ico"></i> https://ooni.org</a>
</div>
<div class="year">June 2014 – July 2014</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Tor Project Student Developer</div>
<div class="description">
I worked on packaging ooni-probe (part of the Open Observatory of Network Interference) for easy access and use in locations where ISPs or Governments are blocking Tor. I learned a great deal about the obfuscation (and detection) techniques used in the wild to hide (and identify) encrypted communications.
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Amazon
<div class="pull-right">
Seattle, WA
</div>
</div>
<div class="address">
<a href="https://aws.amazon.com" target= "_blank"><i class="fas fa-globe ico"></i> https://aws.amazon.com</a>
</div>
<div class="year">October 2013 – December 2013</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Software Development Engineering Intern</div>
<div class="description">
As an engineer on the AWS S3 team, I built a service to detect hotspots in the S3 cloud storage system trie data structure for targeted repair to keep S3 lookups performant.
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Mozilla, OWASP
<div class="pull-right">
Mountain View, CA
</div>
</div>
<div class="address">
<a href="https://www.zaproxy.org" target= "_blank"><i class="fas fa-globe ico"></i> https://www.zaproxy.org</a>
</div>
<div class="year">July 2013 – September 2013</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Security Tools Intern</div>
<div class="description">
While working as a software engineering intern with the Mozilla Security Tools team, I worked on the OWASP ZAP webapp penetration testing tool and added SPDY (later HTTP/2) and QUIC (later HTTP/3) support by rewriting the internal network stack using the Netty framework.
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
VMware
<div class="pull-right">
Palo Alto, CA
</div>
</div>
<div class="address">
<a href="https://vmware.com/" target= "_blank"><i class="fas fa-globe ico"></i> https://vmware.com/</a>
</div>
<div class="year">March 2013 – June 2013</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Security Intern</div>
<div class="description">
I added Secure Boot support to virtual UEFI firmware across all VMware products by implementing OpenSSL-based public key authentication in virtual storage devices.
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Facebook
<div class="pull-right">
Menlo Park, CA
</div>
</div>
<div class="address">
<a href="https://engineering.fb.com" target= "_blank"><i class="fas fa-globe ico"></i> https://engineering.fb.com</a>
</div>
<div class="year">January 2013 – April 2013</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Security Infrastructure Intern</div>
<div class="description">
I worked on the Security Infrastructure team to detect Android malware on end-user devices and track spread through the social Graph API.
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Stanford CURIS
<div class="pull-right">
Stanford, CA
</div>
</div>
<div class="address">
<a href="https://undergradresearch.stanford.edu" target= "_blank"><i class="fas fa-globe ico"></i> https://undergradresearch.stanford.edu</a>
</div>
<div class="year">June 2012 – September 2012</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Cryptography Researcher</div>
<div class="description">
Using C++ and NTL, I designed and implemented a highly optimized Lattice-based Fully Homomorphic (FHE) cryptosystem based on a custom polynomial ring translation of [Brakerski12] resulting in a paper and poster.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-5">
<!-- CONTACT -->
<div class="box clearfix">
<h2><i class="fas fa-bullseye ico"></i> Contact</h2>
<div class="contact-item">
<div class="icon pull-left text-center"><span class="fas fa-map-marker fa-fw"></span></div>
<div class="title pull-right">United States</div>
<div class="title pull-right">Portland, OR US</div>
</div>
<div class="contact-item">
<div class="icon pull-left text-center"><span class="fas fa-phone fa-fw"></span></div>
<div class="title only pull-right">+19494156469</div>
</div>
<div class="contact-item">
<div class="icon pull-left text-center"><span class="fas fa-envelope fa-fw"></span></div>
<div class="title only pull-right"><a href="mailto:[email protected]" target="_blank">[email protected]</a></div>
</div>
<div class="contact-item">
<div class="icon pull-left text-center"><span class="fas fa-globe fa-fw"></span></div>
<div class="title only pull-right"><a href="https://haven.lol" target="_blank">https://haven.lol</a></div>
</div>
<div class="contact-item">
<div class="icon pull-left text-center"><span class="fab fa-docx resume fa-fw"></span></div>
<div class="title pull-right">DOCX Resume</div>
<div class="description pull-right"><a href="https://haven.lol/OliveHaven.docx" target="_blank">OliveHaven.docx</a></div>
</div>
<div class="contact-item">
<div class="icon pull-left text-center"><span class="fab fa-pdf resume fa-fw"></span></div>
<div class="title pull-right">PDF Resume</div>
<div class="description pull-right"><a href="https://haven.lol/OliveHaven.pdf" target="_blank">OliveHaven.pdf</a></div>
</div>
<div class="contact-item">
<div class="icon pull-left text-center"><span class="fab fa-github fa-fw"></span></div>
<div class="title pull-right">GitHub</div>
<div class="description pull-right"><a href="https://github.com/0xhaven" target="_blank">0xhaven</a></div>
</div>
<div class="contact-item">
<div class="icon pull-left text-center"><span class="fab fa-linkedin fa-fw"></span></div>
<div class="title pull-right">LinkedIn</div>
<div class="description pull-right"><a href="https://www.linkedin.com/in/0xhaven/" target="_blank">0xhaven</a></div>
</div>
</div>
<!-- EDUCATION -->
<div class="box">
<h2><i class="fas fa-university ico"></i> Education</h2>
<ul id="education" class="clearfix">
<li>
<div class="year pull-left">2010 2014</div>
<div class="description pull-right">
<h3>Stanford University</h3>
<div class="where"></div>
<p><i class= "fas fa-graduation-cap ico"></i> BS</p>
<p>Computer Science, Mathematics Minor</p>
<div>Courses</div>
<ul class="list-group">
<li class="list-group-item">CS 355: Advanced Topics in Cryptography</li>
<li class="list-group-item">CS 343: Advanced Topics in Compilers</li>
<li class="list-group-item">CS 243: Program Analysis and Optimizations</li>
<li class="list-group-item">CS 240: Advanced Topics in Operating Systems</li>
<li class="list-group-item">CS 140: Operating Systems & Systems Programming</li>
<li class="list-group-item">CS 244: Advanced Topics in Networking</li>
<li class="list-group-item">CS 242: Programming Languages</li>
<li class="list-group-item">CS 161: Design and Analysis of Algorithms</li>
<li class="list-group-item">Math 121: Galois Theory</li>
<li class="list-group-item">Phil 152: Computability and Logic</li>
<li class="list-group-item">Phil 154: Modal Logic</li>
<li class="list-group-item">Math 161: Set Theory</li>
<li class="list-group-item">Math 171: Fundamental Concepts of Analysis</li>
</ul>
</div>
</li>
<li>
<div class="year pull-left">2008 2010</div>
<div class="description pull-right">
<h3>Gatton Academy of Mathematics and Science</h3>
<div class="where"></div>
<p><i class= "fas fa-graduation-cap ico"></i> High School</p>
<p>Mathematics and Computer Science</p>
<div>Courses</div>
<ul class="list-group">
<li class="list-group-item">CS 443: Data Structures</li>
<li class="list-group-item">Math 473: Graph Theory</li>
<li class="list-group-item">Math 450: Complex Analysis</li>
<li class="list-group-item">Math 435: Partial Differential Equations</li>
<li class="list-group-item">Math 307: Linear Algebra</li>
<li class="list-group-item">Math 310: Discrete Mathematics</li>
</ul>
</div>
</li>
</ul>
</div>
<!-- SKILLS -->
<div class="box">
<h2><i class="fas fa-tasks ico"></i> Skills</h2>
<div class="skills clearfix">
<div class="item-skills">
System Reliability Engineering
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
DevOps
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Infrastructure as Code (IaC)
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Continuous Integration/Continuous Deployment (CI/CD)
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Kubernetes
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Docker
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Amazon Web Services (AWS)
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Google Cloud Platform (GCP)
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Azure
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Terraform
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Ansible
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Jenkins
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
GitOps
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Service Monitoring
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Site Reliability Engineering (SRE)
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Automation
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Scripting (Bash, Python)
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Networking
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Security
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Container Orchestration
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Log Management
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Incident Response
</div>
<div class="col-sm-offset-1 col-sm-12 clearfix">
</div>
</div>
<div class="skills clearfix">
<div class="item-skills">
Agile/Scrum