-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbruno.bronosky.resume.html
1523 lines (1467 loc) · 56.8 KB
/
bruno.bronosky.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 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 Bruno Bronosky</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/6.4.2/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; }
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
body{
font-family: 'Open Sans', Arial, Tahoma;
font-weight: 400;
color: #363636;
background: #334960;
}
blockquote {
font-size: 1em;
}
.container{
position: absolute;
left: 10px;
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;
letter-spacing: -1px;
}
#text-header h1::first-line{
font-size: 1.5em;
font-weight: 800;
line-height: 1.5em;
text-transform: uppercase;
}
#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;
}
#section_about p{
margin-left: 1.2em;
}
#section_about h1{
margin-left: 1.0em;
font-size: 1.2em;
font-weight: 600;
}
/*#section_work_experience{}*/
/*#section_awards{}*/
/*#section_volunteer{}*/
/*#section_projects{}*/
/*#section_contact{}*/
/*#section_skills{}*/
/*#section_publications{}*/
/*#section_languages{}*/
/*#section_hobbies{}*/
/*#section_education{}*/
#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: none;
}
#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: none;
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%;
}
.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;
}
.list-group {
/*/ No need to set list-style: none; since .list-group-item is block level /*/
margin-bottom: 20px;
padding-left: 0; /*/ reset padding because ul and ol /*/
}
/*/ Individual list items //
//
// Use on `li`s or `div`s within the `.list-group` parent. /*/
.list-group-item {
position: relative;
display: list-item;
padding: 0px;
/*/ Place the border on the list items and negative margin up for better styling /*/
margin: 0px 0px -1px 20px;
border: none;
/*
background-color: @list-group-bg;
border: 1px solid @list-group-border;
// Round the first and last items //
&:first-child {
.border-top-radius(@list-group-border-radius);
}
&:last-child {
margin-bottom: 0;
.border-bottom-radius(@list-group-border-radius);
}
*/
}
.preload img {
animation: rotation 3s infinite linear;
}
@media print {
.preload img {
animation: none;
}
}
.preload a {
color: #666666;
text-decoration: none;
}
.ribbon {
right: 0px;
position: absolute;
z-index: 200;
line-height: 100%;
text-align: right;
/* display: none; scale: 0.65; */
}
.dark-include{ display: none; }
.dark-exclude{ display: initial; }
@media (prefers-color-scheme: dark) {
.dark-include{ display: initial; }
.dark-exclude{ display: none; }
body{
background: #1c2835;
color: #aaaaaa;
}
.container{
background: #0b0f14;
}
#photo{
background: #1c2835;
}
.list-group-item {
background: #0b0f14;
}
#awards .year,
#education .year{
background: #0b0f14;
}
#text-header h1 span{
color: #5b7fa9;
}
.item-interests,
.item-skills{
color: #5b7fa9;
}
#awards .description,
#education .description{
background: #10171e;
border-right: 1px solid #333;
border-bottom: 1px solid #333;
}
#awards .description:after,
#education .description:after {
border-right-color: #10171e;
}
.job .details {
background: #10171e;
border-right: 1px solid #333;
border-bottom: 1px solid #333;
}
.contact-item .icon{
background: #10171e;
color: #5b7fa9;
border-right: 1px solid #333;
border-bottom: 1px solid #333;
}
#language-skills .skill{
border-bottom: 1px solid #10171e;
}
}
</style>
<style type="text/css" media="print">
body {
font-size: .95em;
-webkit-print-color-adjust: exact;
}
.preload img {
animation: none;
}
a[href]:after {
content: none !important;
}
#photo{
display: none;
}
.box {
margin-bottom: -10px;
}
blockquote,
#education,
#awards,
.avoid-break,
.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;
}
.job {
margin: 0px;
}
.publication,
.publication .panel-heading,
.publication .name{
margin: 0;
padding: 0 5px;
border: none;
}
.publication .panel-body {
padding: 0 10px;
margin: 0;
}
.panel-default {
margin-top: 10px;
}
.badge {
margin: 0;
}
.list-group {
margin-bottom: 8px;
padding-left: 0;
}
.list-group-item{
border: none;
padding: 0px;
margin: 0px 0px -1px 20px;
}
.list-group-item:after{
content: none;
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>
<script>
function setPreferredColorScheme(mode = "dark") {
console.log("changing")
for (var i = document.styleSheets.length - 1; i >= 0; i--) {
console.log("i",i)
document.styleSheets[i];
if(document.styleSheets[i].href !== null){ continue; }
for (var j = document.styleSheets[i].rules.length - 1; j >= 0; j--) {
console.log("j",j)
media = document.styleSheets[i].rules[j].media;
if (media && media.mediaText) {
console.log("includes mediaText")
if (media.mediaText.includes("dark")){
console.log("prefers dark")
console.log("set preference to light")
if (media.mediaText.includes("light")) media.deleteMedium("(prefers-color-scheme: light)");
if (media.mediaText.includes("dark")) media.deleteMedium("(prefers-color-scheme: dark)");
media.appendMedium("(prefers-color-scheme: light)");
} else {
console.log("prefers not dark")
console.log("set preference to dark")
if (media.mediaText.includes("light")) media.deleteMedium("(prefers-color-scheme: light)");
if (media.mediaText.includes("dark")) media.deleteMedium("(prefers-color-scheme: dark)");
media.appendMedium("(prefers-color-scheme: dark)");
}
}
}
}
}
</script>
</head>
<body>
<div class="container">
<a class="ribbon" href="https://github.com/RichardBronosky/resume#bruno-bronosky" target="_blank">
<svg
bruno:ref1="https://editsvgcode.com/"
xml:space="preserve"
width="147"
height="147"
overflow="visible"
style="-webkit-filter:drop-shadow(0 0 5px rgba(0,0,0,.7));filter:drop-shadow(0 0 5px rgba(0,0,0,.7))"
viewBox="28.386 1.317 147 147"
ml-update="aware"
version="1.1"
id="svg4"
sodipodi:docname="github-ribbon-is.svg"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:bruno="https://github.com/RichardBronosky/resume"><defs
id="defs1"><style
type="text/css"
id="style1">@import url('https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic');</style></defs><sodipodi:namedview
id="namedview4"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="5.7482993"
inkscape:cx="94.549704"
inkscape:cy="10.698817"
inkscape:window-width="1891"
inkscape:window-height="1051"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
showgrid="false" /><linearGradient
id="a"
x1="125.566"
x2="105.649"
y1="662.853"
y2="682.77"
gradientTransform="translate(0 -614.771)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#6d6d6d"
id="stop1" /><stop
offset="1"
style="stop-color:#5d5d5d"
id="stop2" /></linearGradient><path
fill="url(#a)"
d="M 175.622,137.972 35.676,-1.977 55.591,-21.892 195.539,118.055 Z"
id="ribbon"
style="display:inline"
inkscape:label="ribbon" /><path
fill="none"
stroke="#ffffff"
stroke-dasharray="3, 1.5"
d="M 30.705,-9.861 185.08,144.514 m -138.5,-172.5 154.375,154.375"
opacity="0.5"
id="stitches"
style="-webkit-filter:drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));filter:drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));display:inline"
inkscape:label="stitches" /><g
id="text_group"
inkscape:label="Text Group"><g
id="locate"
inkscape:label="locate"
transform="translate(113.6, 62.6)"><g
id="rotate"
inkscape:label="rotate"
transform="rotate(45)"><g
id="scale"
inkscape:label="scale"
transform="scale(1,1.1)"><text
xml:space="preserve"
id="main_text"
inkscape:label="main_text"
text-anchor="middle"
x="0"
y="0"
style="fill:#ffffff;font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;font-size:12.5857px;font-family:Roboto,sans-serif;-inkscape-font-specification:'Roboto,sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:1.04881"><tspan
sodipodi:role="line"
id="text_span"
inkscape:label="text_span"
x="0"
y="0">View Source on Github</tspan></text></g></g></g></g></svg>
</a>
<label class="ribbon" for="dark_mode">Switch to</br><span class="dark-include">light</span><span class="dark-exclude">dark</span></br>mode</label>
<button id="dark_mode" style="display:none" onclick="setPreferredColorScheme()">foo bar</button>
<div class="row">
<div class="col-xs-12">
<div id="photo-header" class="text-center">
<!-- PHOTO (AVATAR) -->
<div id="photo">
<img src="http://www.gravatar.com/avatar/959ccd33301cb3c15953c1a632a36763?s=500" alt="avatar">
</div>
<div id="text-header" >
<h1>Bruno Bronosky<br><span>Principal DevOps Automation Engineer and Trainer</span></h1>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-7">
<!-- ABOUT ME -->
<div class="box" id="section_about">
<h2><i class="fas fa-user ico"></i> About</h2>
<p><p>Born in the Appalachian mountains of West Virginia to a radio electronics technician, Bruno grew up in coal mining
country where most of his classmates remain. He never threw a ball with his father, though they did attend a
handful of Cincinnati Reds baseball games. They spent their nights and weekends soldering Heathkit projects from
Radio Shack (my first computer was a <a href="https://vintagecomputer.com/heathkit-h89.html">Heathkit H89</a>) and writing games and equation solvers in Borland Turbo Basic, then Turbo Pascal, and eventually Delphi.
When calling his father in 1995 to tell him Bruno got his first professional programming gig, they both saw this
like getting drafted into MLB. Every day Bruno feels like "the luckiest man in baseball" to have escaped the coal
mines.</p>
<h1 id="whatbrunodoes">What Bruno does:</h1>
<ul>
<li>cloud computing: OpenStack Amazon Web Services, Microsoft Azure, Google Cloud Platform, Linode, DigitalOcean, Heroku</li>
<li>container services: Docker, Kubernetes, Nomad, ECS, EKS</li>
<li>infrastructure orchestration and automation with Terraform, Ansible, Chef, Argo</li>
<li>infrastructure and capacity planning</li>
<li>data center operations</li>
<li>OpenVPN, SSH tunneling, network security</li>
<li>troubleshoot network issues</li>
<li>DBA for DynamoDB, Kafka, Cassandra, MongoDB, CouchDB, PostgreSQL, MySQL</li>
<li>administer various Unix and GNU/Linux</li>
<li>administer virtualization hosts and guests</li>
<li>optimize RAID, swap, cache</li>
<li>archaeology of code, protocol, process</li>
<li>manage systems engineers, software developers</li>
<li>manage vendors, contractors</li>
<li>manage client SLAs, vendor SLAs</li>
<li>study complex systems and make them accessible to various audiences</li>
<li>{review, recommend} application {architecture, code}</li>
<li>maintain SDLC process</li>
<li>develop web and mobile applications</li>
<li>architect {cloud, web, mobile} solutions</li>
<li>{develop, deploy} {iPhone, Android} apps</li>
<li>{develop, deploy} {Cordova, React Native} HTML5+CSS3+JS apps</li>
<li>{audit, deploy} {developer code, data migrations}</li>
<li>{transform, migrate} data</li>
<li>audit application code for security and performance</li>
</ul>
<h1 id="whatbrunois">What Bruno is:</h1>
<ul>
<li>teacher</li>
<li>strong verbal and written communicator</li>
<li>excellent troubleshooter, debugger, and problem bisector</li>
<li>unrepentant command line addict</li>
<li>ambiguity assassin</li>
</ul></p>
</div>
<!-- WORK EXPERIENCE -->
<div class="box" id="section_work_experience">
<h2><i class= "fas fa-suitcase ico"></i> Work Experience</h2>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Confidential: International Airline
</div>
<div class="year">2022 – 2023</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Contract: Trainer of DevOps Engineers</div>
<div class="description">
Value: >$10B Employees: >90k
<ul class="list-group">
<li class="list-group-item">CI/CD with Harness.io, AWS infrastructure with CDK+CFN, Migration to Github Enterprise from 5 other VCS</li>
<li class="list-group-item">architect and develop an internal ML/AI Software Development Co-Pilot trained on internal code repos to reduce code "re-invention" and time/effort</li>
</ul>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Confidential: Cyber Security and Biometric Identity Org
</div>
<div class="year">2022 – 2022</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Contract: Trainer of DevOps Engineers</div>
<div class="description">
Value: >$3B Employees: >10k
<ul class="list-group">
<li class="list-group-item">CI/CD with CloudBees/Jenkins and Argo-CD</li>
<li class="list-group-item">software testing with SonarQube, JMeter, and various other tools</li>
</ul>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Confidential: Financial Services Org
</div>
<div class="year">2021 – 2022</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Contract: Trainer of Robotics, Computer Vision, and Machine Learning Engineers</div>
<div class="description">
Value: >$1T Employees: >225k
<ul class="list-group">
<li class="list-group-item">Robotics R&D, Machine Learning, Computer Vision, Software Development, Network & Physical Architecture, DevSecOps, Linux System Administration</li>
<li class="list-group-item">ROS 1&2 [Robotics Operating System], Dobot CR5, Python, C++</li>
</ul>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Confidential: Chemical Engineering R&D and Production Org
</div>
<div class="year">2021 – 2021</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Contract: Trainer of DevOps Engineers</div>
<div class="description">
Value: >$10B Employees: >90k
<ul class="list-group">
<li class="list-group-item">CI/CD with Jenkins, SonarQube, JMeter, various software testing tools</li>
<li class="list-group-item">AWS infrastructure and network security architecture</li>
<li class="list-group-item">Architected an internal ML/AI Software Development Co-Pilot trained on internal code repos to reduce code "re-invention" and time/effort</li>
</ul>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Rooms To Go
<div class="pull-right">
Dunwoody, GA
</div>
</div>
<div class="year">2018 – 2021</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Principal DevOps Engineer</div>
<div class="description">
<ul class="list-group">
<li class="list-group-item">Direct and train a department of DevOps Engineers and SREs.</li>
<li class="list-group-item">Train developers to follow DevOps & CI/CD processes.</li>
<li class="list-group-item">Architect Hybrid-Cloud and Multi-Cloud infrastructure.</li>
<li class="list-group-item">Set and enforce security practices.</li>
<li class="list-group-item">Develop tools and services in bash, Node.js, Python, and Go.</li>
<li class="list-group-item">Design, build, and deploy Docker containers, API Gateways.</li>
<li class="list-group-item">Automate and orchestrate infrastructure with Packer and Terraform.</li>
<li class="list-group-item">Build and maintain [Fargate] ECS, EKS, and Kubernetes clusters serving microservices.</li>
<li class="list-group-item">Manage AWS costs.</li>
<li class="list-group-item">Make and document changes to AWS infrastructure via aws-cli.</li>
<li class="list-group-item">Manage network security with AWS Security Groups, iptables, and OpenVPN.</li>
<li class="list-group-item">Maintain MongoDB and DynamoDB databases.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
MidAmerican Energy Services
<div class="pull-right">
Dunwoody, GA
</div>
</div>
<div class="year">2016 – 2018</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">DevOps Team Leader</div>
<div class="description">
<ul class="list-group">
<li class="list-group-item">Orchestrate infrastructure with Packer, Terraform, Chef, and Ansible.</li>
<li class="list-group-item">Build and maintain Kubernetes clusters serving microservices.</li>
<li class="list-group-item">Develop tools in Python, Go, bash, awk, sed, CircuitPython, and Arduino.</li>
<li class="list-group-item">Build and maintain Cassandra, MongoDB, and MySQL databases.</li>
<li class="list-group-item">Build custom Raspberry Pi images for IoT devices sent to client locations.</li>
<li class="list-group-item">Design and CNC mill custom IoT hardware cases.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Cox Media Group [Technology]
<div class="pull-right">
Atlanta, GA
</div>
</div>
<div class="year">2012 – 2016</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Solution Architect, Mobile</div>
<div class="description">
<ul class="list-group">
<li class="list-group-item">Develop mobile client and backend POCs.</li>
<li class="list-group-item">Architect and deploy cloud infrastructure.</li>
<li class="list-group-item">Develop and maintain original Open Source software projects.</li>
<li class="list-group-item">Workflow and process automation.</li>
<li class="list-group-item">Lead mobile architecture and technical strategy.</li>
<li class="list-group-item">Present and teach.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Cox Media Group [Technology]
<div class="pull-right">
Atlanta, GA
</div>
</div>
<div class="year">2009 – 2012</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Software Development Manager</div>
<div class="description">
<ul class="list-group">
<li class="list-group-item">Co-Manage a ~30 developer team.</li>
<li class="list-group-item">Improve performance through coaching.</li>
<li class="list-group-item">Encourage and inspire developers and vendors to give great service.</li>
<li class="list-group-item">Workflow automation scripting.</li>
<li class="list-group-item">Architect and develop software.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Cox Media Group [Technology]
<div class="pull-right">
Atlanta, GA
</div>
</div>
<div class="year">2008 – 2009</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">Internet Systems Manager & MySQL DBA</div>
<div class="description">
<ul class="list-group">
<li class="list-group-item">Administer GNU/Linux servers.</li>
<li class="list-group-item">Manage a department of sysadmins.</li>
<li class="list-group-item">Workflow automation and config management.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Cox Media Group (Atlanta Journal-Constitution)
<div class="pull-right">
Atlanta, GA
</div>
</div>
<div class="year">2007 – 2008</div>
</div>
</div>
<div class="row">
<div class="job-details col-xs-11">
<div class="profession">MySQL DBA</div>
<div class="description">
<ul class="list-group">
<li class="list-group-item">Administer MySQL.</li>
<li class="list-group-item">Optimize developer code.</li>
<li class="list-group-item">Maintain high availability and performance.</li>
<li class="list-group-item">Develop extra Django and Rails projects.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="job clearfix">
<div class="row">
<div class="details">
<div class="where">
Yahoo!
<div class="pull-right">