-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1214 lines (1134 loc) · 79.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 class="no-js" lang="en">
<head>
<meta charset="utf-8">
<!--====== Title ======-->
<title>Colton Milbrandt</title>
<meta name="description" content="I'm a skilled finance professional with 9 years of experience in leadership and analysis. With expertise in creating models to tackle complex problems, I combine my financial knowledge with tech-savviness and self-taught programming skills.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--====== Favicon Icon ======-->
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/png">
<link rel="apple-touch-icon" href="assets/images/apple-touch-icon.png" />
<!--====== Animate CSS ======-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--====== Magnific Popup CSS ======-->
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<!--====== Slick CSS ======-->
<link rel="stylesheet" href="assets/css/slick.css">
<!--====== Line Icons CSS ======-->
<link rel="stylesheet" href="assets/css/LineIcons.2.0.css">
<!--====== Style CSS ======-->
<!-- <link rel="stylesheet" href="assets/css/style.css"> -->
<link rel="stylesheet" href="assets/css/tailwind.css">
<link rel="stylesheet" href="dist/output.css">
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!--====== PRELOADER PART START ======-->
<div class="hidden preloader">
<div class="loader">
<div class="ytp-spinner">
<div class="ytp-spinner-container">
<div class="ytp-spinner-rotator">
<div class="ytp-spinner-left">
<div class="ytp-spinner-circle"></div>
</div>
<div class="ytp-spinner-right">
<div class="ytp-spinner-circle"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--====== PRELOADER PART ENDS ======-->
<!--====== HEADER PART START ======-->
<header class="header-area">
<div class="navbar-area">
<div class="container relative">
<div class="row">
<div class="w-full">
<nav class="flex items-center justify-between navbar navbar-expand-lg justify-center">
<a class="mr-4 navbar-brand grid grid-cols-6" href="index.html">
<img src="assets/images/profile-img.jpg" class="justify-center rounded-full col-span-1 w-10" alt="hero">
<h2 id="#nav-title" class="nav-title col-span-5 text-2xl items-left pt-1 pl-3 justify-center font-bold text-white header-title wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.4s">Colton Milbrandt</h2>
</a>
<button class="block navbar-toggler focus:outline-none lg:hidden" type="button" aria-controls="navbarOne" aria-expanded="false" aria-label="Toggle navigation">
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button>
<div class="hidden absolute text-gray-700 left-0 z-20 w-full px-5 py-3 duration-300 bg-white shadow lg:w-auto collapse navbar-collapse lg:block top-100 mt-full lg:static lg:bg-transparent lg:shadow-none" id="navbarOne">
<ul id="nav" class="items-center content-start mr-auto lg:justify-end navbar-nav lg:flex">
<li class="nav-item active">
<a class="page-scroll" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#portfolio">My Portfolio</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#experience">Experience</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#contact">Contact Me</a>
</li>
</ul>
</div> <!-- navbar collapse -->
<div class="absolute right-0 hidden mt-2 mr-24 navbar-btn sm:inline-block lg:mt-0 lg:static lg:mr-0">
<a class="main-btn gradient-btn page-scroll" data-scroll-nav="0" href="#contact" rel="nofollow">Contact Me</a>
</div>
</nav> <!-- navbar -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</div> <!-- navbar area -->
<div id="home" class="header-hero min-h-screen sm:min-h-0" style="background-image: url(assets/images/banner-bg.svg)">
<div class="container">
<div class="row lg:pt-16 lg:px-12">
<div class="w-full lg:w-1/2 p-10 lg:px-10 xl:px-20">
<div class="text-center wow fadeIn" data-wow-duration="0.8s" data-wow-delay="1s">
<div class="pt-16 md:pt-16 lg:pt-28 xl:pt-24">
<img src="assets/images/profile-img.jpg" class="w-60 md:w-80 max-w-md lg:w-full m-auto justify-center rounded-full" alt="hero">
</div> <!-- header hero image -->
</div>
</div>
<div class="w-full lg:w-1/2 pt-4 lg:pt-56 pb-20 sm:pb-36">
<div class="mb-12 text-center header-hero-content">
<h3 class="xs-title text-3xl font-light leading-tight text-white header-sub-title wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s">Hi, I'm Colton Milbrandt!</h3>
<h2 class="xs-title-emphasis mb-3 text-4xl xl:text-5xl xl:pt-2 font-bold text-white header-title wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.4s">Financial Analyst</h2>
<p class="mb-8 text-white text-lg lg:text-lg xl:text-2xl wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.8s">Finance ∙ Tech ∙ Business<br><span class="text-theme-color-2 font-bold xl:text-xl">Available for work.</span></p>
<a href="#contact" class="main-btn page-scroll gradient-btn gradient-btn-2 wow fadeInUp" data-wow-duration="1s" data-wow-delay="1.1s">Contact Me</a>
</div> <!-- header hero content -->
</div>
</div> <!-- row -->
</div>
<div id="particles-1" class="particles"></div>
</div> <!-- header hero -->
</header>
<!--====== HEADER PART ENDS ======-->
<!--====== BRAND PART START ======-->
<div class="pt-4 lg:pt-0 brand-area">
<div class="container">
<div class="row">
<div class="w-full">
<div class="items-center justify-center row lg:justify-between">
<div class="single-logo sm:max-w-44 hover:opacity-100 wow fadeIn" data-wow-duration="0.9s" data-wow-delay="0.2s">
<img src="assets/images/SkyWestLogo.png" alt="brand">
</div> <!-- single logo -->
<div class="single-logo hover:opacity-100 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.3s">
<img src="assets/images/rent-buddy-grey.png" alt="brand">
</div> <!-- single logo -->
<div class="single-logo hover:opacity-100 wow fadeIn" data-wow-duration="1.1s" data-wow-delay="0.4s">
<img src="assets/images/gwin-logo.png" alt="brand">
</div> <!-- single logo -->
<div class="single-logo hover:opacity-100 wow fadeIn" data-wow-duration="1.2s" data-wow-delay="0.5s">
<img src="assets/images/freelancer-logo-black.png" alt="brand">
</div> <!-- single logo -->
<div class="single-logo hover:opacity-100 wow fadeIn w-42" data-wow-duration="1.3s" data-wow-delay="0.6s">
<img src="assets/images/touch-of-color-logo.png" alt="brand">
</div> <!-- single logo -->
</div> <!-- brand logo -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</div>
<!--====== BRAND PART ENDS ======-->
<!--====== ABOUT ME PART START ======-->
<section id="about-me" class="relative pt-20 about-area">
<div class="container">
<div class="grid grid-cols-6">
<div class="col-span-6 md:col-span-2 flex items-center justify-center">
<img src="assets/images/profile-img.jpg" class="w-1/2 md:w-10/12 rounded-md mt-12 about-image wow fadeInRightBig" alt="hero">
</div>
<div class="col-span-6 md:col-span-4">
<div class="mx-4 mt-12 max-w-2xl about-content wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="mb-4 section-title">
<!-- <div class="line"></div> -->
<h3 class="title">About <span>Me</span></h3>
</div> <!-- section title -->
<!-- <p class="mb-8 lg:text-lg">Hi there! I'm Colton Milbrandt, a blockchain developer with seven years of experience in finance and tech. I enjoy using my skills to create finance-related applications, such as my Solidity-built market launching AMM, Gwin, which I created to solve the problem of making markets despite low-interest. I also successfully funded and launched my own company, Rent Buddy, an all-in-one rental property management app that used java and angular.js. As a leader of fourteen in that role, I developed a productive mindset and learned to make intelligent decisions, focusing on incrementally building out the nearest and most valuable goals. This, along with a natural team mindset, allowed me to launch our robust app, Rent Buddy, with a bootstrap budget.</p> -->
<p class="mb-8 lg:text-lg">Hi, there! I'm Colton Milbrandt, a finance professional with over 9 years of expertise driving profitability in financial leadership and analyst roles. I hold a Bachelor's degree in Finance with an MBA on the way and love creating models that make sense of complex problems. I'm also tech-savvy, with self-taught programming skills and a knack for picking up new technologies. My true passion lies in leveraging complex models to spot patterns, trends, and risks that help my teams make profitable, data-driven decisions. Let's create some value together!</p>
<!-- <p class="mb-8 lg:text-lg">Hi there! I'm Colton Milbrandt, a skilled developer with seven years of experience in software development and finance. I enjoy using my technical skills to drive ambitious projects to launch. With my expertise in Solidity, Javascript, and front-end development, I recently created Gwin, a unique market launching AMM. Prior to that, as founder of Rent Buddy Inc, I secured over $100k in funding and led a team of 14 to successfully launch a pioneering all-in-one rental property management app. In addition to my technical skills, I am a strong communicator and have extensive experience in project management including years of working effectively with remote teams. I am always eager to explore new opportunities and especially to work on innovative projects that fully realize the potential of blockchain technology.</p> -->
</div> <!-- about content -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== ABOUT ME PART ENDS ======-->
<!--====== ABOUT PART START ======-->
<section id="portfolio" class="relative pt-20 about-area">
<div class="container">
<h3 class="title mx-4 text-theme-color-2 text-5xl font-bold wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.2s">My Portfolio</h3>
<div class="row">
<div class="w-full lg:w-1/2">
<div class="mx-4 mt-12 about-content wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.3s">
<div class="mb-4 section-title">
<div class="line"></div>
<h3 class="title">Financial Analysis</h3>
</div> <!-- section title -->
<span class="text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
<svg class="w-5 inline-block" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path style="fill: white;" d="M156.6 384.9L125.7 354c-8.5-8.5-11.5-20.8-7.7-32.2c3-8.9 7-20.5 11.8-33.8L24 288c-8.6 0-16.6-4.6-20.9-12.1s-4.2-16.7 .2-24.1l52.5-88.5c13-21.9 36.5-35.3 61.9-35.3l82.3 0c2.4-4 4.8-7.7 7.2-11.3C289.1-4.1 411.1-8.1 483.9 5.3c11.6 2.1 20.6 11.2 22.8 22.8c13.4 72.9 9.3 194.8-111.4 276.7c-3.5 2.4-7.3 4.8-11.3 7.2v82.3c0 25.4-13.4 49-35.3 61.9l-88.5 52.5c-7.4 4.4-16.6 4.5-24.1 .2s-12.1-12.2-12.1-20.9V380.8c-14.1 4.9-26.4 8.9-35.7 11.9c-11.2 3.6-23.4 .5-31.8-7.8zM384 168c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40z"/></svg>
2014 - current
</span>
<p class="mb-6 mt-4">Explore examples of my expertise in corporate financial analysis, market research, data-driven investment decisions, and strategic recommendations. Through intricate modeling, comprehensive risk assessment using Monte Carlo simulations, and meticulous sensitivity analysis, I have developed effective strategies to accomplish management objectives, conducted thorough evaluations of securities, and demonstrated adaptability within complex financial landscapes.</p>
<div class="inline-block float-left mb-4">
<!-- <a href="https://github.com/rentbuddy/rentbuddy-app" target="_blank" rel="noopener" type="button" data-mdb-ripple="true" data-mdb-ripple-color="light" class="mr-2 inline-block items-center justify-center justify-between px-6 py-2.5 text-white font-medium text-xs leading-tight rounded-md shadow-md hover:shadow-lg focus:shadow-lg focus:outline-none focus:ring-0 active:shadow-lg transition duration-150 ease-in-out" style="background-color: #555;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" class="inline-block w-4 h-4">
<path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/>
</svg>
<span class=""> View Code</span>
</a> -->
<a href="https://coltonmilbrandt.gitbook.io/financial-analyst-portfolio/" target="_blank" rel="noopener" class="main-btn gradient-btn">See Portfolio</a>
</div>
</div> <!-- about content -->
</div>
<div class="w-full lg:w-1/2" id="bull-container">
<div class="mx-4 mt-12 text-center about-image wow fadeInRightBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div
class="rounded-md relative w-full overflow-hidden"
style="padding-top: 56.25%"
>
<img src="assets/images/Bull.png" class="absolute opacity-80 top-0 left-0 h-full w-full object-cover" alt="bullPic">
</div>
</div> <!-- about image -->
</div>
</div> <!-- row -->
</div> <!-- container -->
<div class="about-shape-1">
<img src="assets/images/about-shape-1.svg" alt="shape">
</div>
</section>
<!--====== ABOUT PART ENDS ======-->
<!--====== ABOUT PART START ======-->
<section class="relative pt-20 about-area">
<div class="about-shape-2">
<img src="assets/images/about-shape-2.svg" alt="shape">
</div>
<div class="container">
<div class="row">
<div class="w-full lg:w-1/2 lg:order-last">
<div class="mx-4 mt-12 about-content wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="mb-4 section-title">
<div class="line"></div>
<h3 class="title">Rent Buddy <span> an All-In-One Rental Management App</span></h3>
</div> <!-- section title -->
<span class="text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
<svg class="w-5 inline-block" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path style="fill: white;" d="M156.6 384.9L125.7 354c-8.5-8.5-11.5-20.8-7.7-32.2c3-8.9 7-20.5 11.8-33.8L24 288c-8.6 0-16.6-4.6-20.9-12.1s-4.2-16.7 .2-24.1l52.5-88.5c13-21.9 36.5-35.3 61.9-35.3l82.3 0c2.4-4 4.8-7.7 7.2-11.3C289.1-4.1 411.1-8.1 483.9 5.3c11.6 2.1 20.6 11.2 22.8 22.8c13.4 72.9 9.3 194.8-111.4 276.7c-3.5 2.4-7.3 4.8-11.3 7.2v82.3c0 25.4-13.4 49-35.3 61.9l-88.5 52.5c-7.4 4.4-16.6 4.5-24.1 .2s-12.1-12.2-12.1-20.9V380.8c-14.1 4.9-26.4 8.9-35.7 11.9c-11.2 3.6-23.4 .5-31.8-7.8zM384 168c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40s17.9 40 40 40z"/></svg>
Launched (2015-2021)
</span>
<p class="mb-6 mt-4">I led a team of fourteen to be among the first to solve the problem of how landlords could connect with their tenants and manage their rental properties, streamlining dozens of complex processes into a simple and intuitive user experience. Rent Buddy combined credit and background checks, rent payments, applications, listings, leases, and more into a single, automated, easy-to-use platform.</p>
<div class="inline-block float-left mb-4">
<!-- <a href="https://github.com/rentbuddy/rentbuddy-app" target="_blank" rel="noopener" type="button" data-mdb-ripple="true" data-mdb-ripple-color="light" class="mr-2 inline-block items-center justify-center justify-between px-6 py-2.5 text-white font-medium text-xs leading-tight rounded-md shadow-md hover:shadow-lg focus:shadow-lg focus:outline-none focus:ring-0 active:shadow-lg transition duration-150 ease-in-out" style="background-color: #555;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" class="inline-block w-4 h-4">
<path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/>
</svg>
<span class=""> View Code</span>
</a> -->
<a href="https://coltonmilbrandt.gitbook.io/rent-buddy/" target="_blank" rel="noopener" class="main-btn docs-btn">See More</a>
</div>
</div> <!-- about content -->
</div>
<div class="w-full lg:w-1/2 lg:order-first">
<div class="mx-4 mt-12 text-center about-image wow fadeInRightBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div
class="embed-responsive rounded-md embed-responsive-16by9 relative w-full overflow-hidden"
style="padding-top: 56.25%"
>
<iframe
class="embed-responsive-item absolute top-0 right-0 bottom-0 left-0 w-full h-full"
src="https://www.youtube.com/embed/PE9ltQHDAzI"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
data-gtm-yt-inspected-2340190_699="true"
id="240632615"
></iframe>
</div>
</div> <!-- about image -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== ABOUT PART ENDS ======-->
<!--====== ABOUT PART START ======-->
<section id="portfolio" class="relative pt-20 about-area">
<div class="container">
<div class="row">
<div class="w-full lg:w-1/2">
<div class="mx-4 mt-12 about-content wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.3s">
<div class="mb-4 section-title">
<div class="line"></div>
<h3 class="title">Gwin <span>a Market Launching AMM</span></h3>
</div> <!-- section title -->
<span class="text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded-md">
<svg class="w-5 inline-block" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path style="fill: white;" d="M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>
Prototyped
</span>
<p class="mb-6 mt-4">When I learned you could create an entire exchange with just code, I had to do it! I designed and coded Gwin from scratch using Solidity and the Ethereum blockchain. The platform's algorithms were carefully crafted to ensure maximum balance and performance for small and large markets, allowing you to confidently trade in even obscure markets, like data. All you need is a Chainlink price feed. The pools are auto settled, so there's no need to worry about the risk of absent exit liquidity.</p>
<div class="grid grid-cols-6 w-full text-sm md:text-base">
<div class="col-span-3 pr-1 sm:col-span-2">
<a href="https://github.com/coltonmilbrandt/gwin-protocol" target="_blank" rel="noopener" class=" text-center main-btn github-btn w-full"><i class="lni lni-github-original"></i> View Code</a>
</div>
<div class="col-span-3 pl-1 sm:col-span-2">
<a href="https://coltonmilbrandt.gitbook.io/gwin/" target="_blank" rel="noopener" class="text-center main-btn docs-btn w-full"><i class="lni lni-book w-4 h-4"></i> View Docs</a>
</div>
<div class="col-span-6 mt-1 sm:col-span-2 sm:mt-0 sm:pl-2">
<a href="https://gwin-app.vercel.app/" target="_blank" rel="noopener" class="text-center main-btn gradient-btn w-full"><i class="lni lni-bolt"></i> Try on Goerli</a>
</div>
</div>
</div> <!-- about content -->
</div>
<div class="w-full lg:w-1/2">
<div class="mx-4 mt-12 text-center about-image wow fadeInRightBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div
class="embed-responsive rounded-md embed-responsive-16by9 relative w-full overflow-hidden"
style="padding-top: 56.25%"
>
<iframe
class="embed-responsive-item absolute top-0 right-0 bottom-0 left-0 w-full h-full"
src="https://www.youtube.com/embed/RLfVTgmGQdk"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
data-gtm-yt-inspected-2340190_699="true"
id="240632615"
></iframe>
</div>
</div> <!-- about image -->
</div>
</div> <!-- row -->
</div> <!-- container -->
<div class="about-shape-1">
<img src="assets/images/about-shape-1.svg" alt="shape">
</div>
</section>
<!--====== ABOUT PART ENDS ======-->
<!--====== SKILLS PART START ======-->
<section id="skills" class="services-area pt-120">
<div class="container">
<div class="justify-center row">
<div class="w-full lg:w-2/3">
<div class="pb-10 text-center section-title">
<div class="m-auto line"></div>
<h3 class="title">Skills</h3>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<div class="justify-center row">
<div class="w-full sm:w-2/3 lg:w-1/3 lg:order-2">
<div class="single-services wow fadeIn border-theme-color-2 border-2" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="services-icon">
<img class="shape" src="assets/images/services-shape.svg" alt="shape">
<img class="shape-1" src="assets/images/services-shape-1.svg" alt="shape">
<i class="lni lni-cog"></i>
</div>
<div class="mt-8 services-content">
<h4 class="mb-8 text-xl font-bold text-gray-900">Finance</h4>
<ol class="mb-8">
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Modeling</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-1/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-11/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Analytical Reports</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-2/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-10/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
<li class="my-2 font-light text-gray-400">
Analysis
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Financial</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-2/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-10/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Market</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-3/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-9/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Data</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-3/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-9/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Risk</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-2/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-10/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
<li class="my-2 font-light text-gray-400">
Software
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Excel</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-1/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-11/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Google Sheets</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-1/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-11/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Quickbooks</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-4/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-8/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
<li class="my-2 font-light text-gray-400">
Markets
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Trading</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-3/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-9/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Options</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-4/12 border-b-4 border-line-theme-color-3 opacity-20"></div>
<div class="w-8/12 border-b-4 border-line-theme-color-3 opacity-70"></div>
</div>
</li>
</ol>
</div>
</div> <!-- single services -->
</div>
<div class="w-full sm:w-2/3 lg:w-1/3 lg:order-1">
<div class="mt-8 text-center single-services wow fadeIn" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="services-icon">
<img class="shape" src="assets/images/services-shape.svg" alt="shape">
<img class="shape-1" src="assets/images/services-shape-2.svg" alt="shape">
<i class="lni lni-bolt-alt"></i>
</div>
<div class="mt-8 services-content">
<h4 class="mb-8 text-xl font-bold text-gray-900">Tech</h4>
<ol class="mb-8">
<li class="my-2 font-light text-gray-400">
Front End
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Javascript</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-4/12 border-b-4 border-line-theme-color opacity-20"></div>
<div class="w-8/12 border-b-4 border-line-theme-color"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Python</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-5/12 border-b-4 border-line-theme-color opacity-20"></div>
<div class="w-7/12 border-b-4 border-line-theme-color"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">HTML/CSS</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-1/12 border-b-4 border-line-theme-color opacity-20"></div>
<div class="w-11/12 border-b-4 border-line-theme-color"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Next/React.js</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-3/12 border-b-4 border-line-theme-color opacity-20"></div>
<div class="w-9/12 border-b-4 border-line-theme-color"></div>
</div>
</li>
<li class="my-2 font-light text-gray-400">
Blockchain
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Solidity</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-3/12 border-b-4 border-line-theme-color opacity-20"></div>
<div class="w-9/12 border-b-4 border-line-theme-color"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Ganache</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-4/12 border-b-4 border-line-theme-color opacity-20"></div>
<div class="w-8/12 border-b-4 border-line-theme-color"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Hardhat</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-6/12 border-b-4 border-line-theme-color opacity-20"></div>
<div class="w-6/12 border-b-4 border-line-theme-color"></div>
</div>
</li>
</ol>
<div class="w-8/12 m-auto">
<a href="https://www.github.com/coltonmilbrandt" target="_blank" rel="noopener" class="text-center main-btn github-btn w-full"><i class="lni lni-github-original"></i> GitHub</a>
</div>
</div>
</div> <!-- single services -->
</div>
<div class="w-full sm:w-2/3 lg:w-1/3 lg:order-3">
<div class="mt-8 text-center single-services wow fadeIn" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="services-icon">
<img class="shape" src="assets/images/services-shape.svg" alt="shape">
<img class="shape-1" src="assets/images/services-shape-3.svg" alt="shape">
<i class="lni lni-baloon"></i>
</div>
<div class="mt-8 services-content">
<h4 class="mb-8 text-xl font-bold text-gray-900">Professional</h4>
<ol class="mb-8">
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">MS Office</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-1/12 border-b-4 border-line-theme-color-2 opacity-20"></div>
<div class="w-11/12 border-b-4 border-line-theme-color-2 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Communication</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-1/12 border-b-4 border-line-theme-color-2 opacity-20"></div>
<div class="w-11/12 border-b-4 border-line-theme-color-2 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Decision Making</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-2/12 border-b-4 border-line-theme-color-2 opacity-20"></div>
<div class="w-10/12 border-b-4 border-line-theme-color-2 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1 leading-5">Project Management</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-2/12 border-b-4 border-line-theme-color-2 opacity-20"></div>
<div class="w-10/12 border-b-4 border-line-theme-color-2 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1">Agile</div>
<div class="col-span-1 flex items-center justify-center">
<div class="w-3/12 border-b-4 border-line-theme-color-2 opacity-20"></div>
<div class="w-9/12 border-b-4 border-line-theme-color-2 opacity-70"></div>
</div>
</li>
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1"> </div>
</li> <!-- placeholder line -->
<li class="text-left grid grid-cols-2 mb-1">
<div class="col-span-1"> </div>
</li> <!-- placeholder line -->
</ol>
</div>
</div> <!-- single services -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== SKILLS PART ENDS ======-->
<!--====== EXPERIENCE PART STARTS ======-->
<section id="experience" class="services-area pt-120">
<div class="container">
<div class="justify-center row">
<div class="w-full lg:w-2/3">
<div class="pb-10 text-center section-title">
<div class="m-auto line"></div>
<h3 class="title">Relevant Experience</h3>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<ol class="border-l border-gray-300 lg:w-9/12 m-auto text-gray-500">
<li class="wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="flex flex-start items-center pt-2">
<div class="bg-gray-300 w-2 h-2 rounded-full -ml-1 mr-3"></div>
<p class="text-gray-500 text-sm">8/2023 - current</p>
</div>
<div class="mt-0.5 ml-4 mb-6 text-gray-500">
<h4 class="text-gray-800 font-semibold text-xl mb-1.5">Financial/Revenue Analyst</h4>
<p class="text-gray-500 font-thin mb-3">SkyWest Airlines</p>
<ul class="list-disc pl-4 mb-4">
<li>Directly managed a portfolio representing a significant portion of SkyWest's $3 billion in annual revenue. </li>
<li>Accomplished a 16% year-over-year increase in revenue by analyzing market trends, strategically adding flights, and optimizing revenue models.</li>
<li>Optimized profitability by responding to rapidly changing market demands with innovative initiatives.</li>
<li>Swiftly mastered enterprise software and integrated new automation tools across the department, tripling team productivity for primary processes.</li>
</ul>
<div class="row">
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Excel
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
VBA/Macros
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Financial Analysis
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Modeling
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Risk Analysis
</span>
</div> <!-- Row -->
</div>
</li>
<li class="wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="flex flex-start items-center pt-2">
<div class="bg-gray-300 w-2 h-2 rounded-full -ml-1 mr-3"></div>
<p class="text-gray-500 text-sm">4/2021 - current</p>
</div>
<div class="mt-0.5 ml-4 mb-6 text-gray-500">
<h4 class="text-gray-800 font-semibold text-xl mb-1.5">Pricing Analyst</h4>
<p class="text-gray-500 font-thin mb-3">Touch of Color</p>
<ul class="list-disc pl-4 mb-4">
<li>Utilized market competitive information and analytical tools to set pricing in order to maximize revenue.</li>
<li>Engineered an automated estimating and ordering system with JavaScript and Google Sheets, enhancing pricing accuracy and streamlining complex data processes.</li>
<li>Achieved 50% reduction in time input and cut supply costs by up to 44% through effective human error reduction.</li>
<li>Optimized sales funnel strategy and pricing to increase profit by 20%-39% per accepted estimate.</li>
</ul>
<div class="row">
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Google Sheets
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Financial Analysis
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Javascript
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Google App Scripts
</span>
</div> <!-- Row -->
</div>
</li>
<li class="wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="flex flex-start items-center pt-2">
<div class="bg-theme-color-2 w-2 h-2 rounded-full -ml-1 mr-3"></div>
<p class="text-theme-color-2 text-sm">8/2015 - 4/2021</p>
</div>
<div class="mt-0.5 ml-4 pb-5">
<h4 class="text-gray-800 font-semibold text-xl mb-1.5">CFO, President</h4>
<p class="text-gray-500 font-thin mb-3">Rent Buddy Inc</p>
<ul class="list-disc pl-4 mb-4">
<li>Secured funding of over $150k, led a team of 14 to successfully launch an all-in-one rental management web app.</li>
<li>Performed comprehensive market research and analysis to establish optimal pricing and marketing strategies, measuring their sensitivity to market risks with Excel-powered Monte Carlo simulations.</li>
<li>Prepared financial forecasts, created ad-hoc reports, and managed all corporate finances and bookkeeping, using the information to make key leadership decisions affecting the bottom-line.</li>
<li>Screened potential vendors, made proposals, and negotiated terms with our payment, contract signing, background check, and credit check partners.</li>
<li>Led app development, leveraging JavaScript, HTML, and CSS skills to create user-friendly UI/UX.</li>
<li>Earned 70+ 5-Star reviews by building great relationships with our remote Freelancer development team.</li>
</ul>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Javascript
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
AngularJS
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
HTML / CSS
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Agile
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Project Management
</span>
</div>
</li>
</ol>
</div> <!-- container -->
</section>
<section id="experience" class="services-area pt-120">
<div class="container">
<div class="justify-center row">
<div class="w-full lg:w-2/3">
<div class="pb-10 text-center section-title">
<div class="m-auto line"></div>
<h3 class="title">Education</h3>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<ol class="border-l border-gray-300 lg:w-9/12 m-auto text-gray-500">
<li class="wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="flex flex-start items-center pt-2">
<div class="bg-gray-300 w-2 h-2 rounded-full -ml-1 mr-3"></div>
<p class="text-gray-500 text-sm">2024 - 2025 <span class="text-gray-400 font-thin">(To be completed in January)</span></p>
</div>
<div class="mt-0.5 ml-4 pb-5">
<h4 class="text-gray-800 font-semibold text-xl mb-1.5">Master of Business Administration</h4>
<p class="text-gray-500 font-thin mb-3">WGU</p>
<ul class="list-disc pl-4 mb-4">
<li>Developing advanced knowledge in business management practices and strategic decision-making.</li>
</ul>
</div>
</li>
<li class="wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="flex flex-start items-center pt-2">
<div class="bg-gray-300 w-2 h-2 rounded-full -ml-1 mr-3"></div>
<p class="text-gray-500 text-sm">2011 - 2015</p>
</div>
<div class="mt-0.5 ml-4 pb-5">
<h4 class="text-gray-800 font-semibold text-xl mb-1.5">Bachelor of Science in Finance</h4>
<p class="text-gray-500 font-thin mb-3">Utah Tech University</p>
<ul class="list-disc pl-4 mb-4">
<li>Ranked #1 in highly competitive Finance Capstone Class (Portfolio Practicum).</li>
<li>Served as Portfolio Manager for the Finance Club.</li>
<li>Scored in the top 1% on Business Major Fields Test.</li>
<li>Earned Prestigious ELLI Award for outstanding academic achievement.</li>
<li>Attended on Scholarships.</li>
</ul>
</div>
</li>
</ol>
</div> <!-- container -->
</section>
<section id="experience-two" class="services-area pt-120">
<div class="container">
<div class="justify-center row">
<div class="w-full lg:w-2/3">
<div class="pb-10 text-center section-title">
<div class="m-auto line"></div>
<h3 class="title">Professional Development</h3>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<ol class="border-l border-gray-300 lg:w-9/12 m-auto text-gray-500">
<li class="wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="flex flex-start items-center pt-3">
<div class="bg-gray-300 w-2 h-2 rounded-full -ml-1 mr-3"></div>
<p class="text-gray-500 text-sm">10/2022 - 11/2022</p>
</div>
<div class="mt-0.5 ml-4 mb-6 text-gray-500">
<h4 class="text-gray-800 font-semibold text-xl mb-1.5">Chainlink Fall Hackathon</h4>
<ul class="list-disc pl-4 mb-4">
<li>Attended workshops to learn about gas optimization, testing with hardhat, and more.</li>
<li>Used Solidity, Brownie, and Chainlink Price Feeds in my project submission.</li>
</ul>
<div class="row">
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Solidity
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Brownie
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Ganache
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Python
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Chainlink
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Next.js
</span>
</div> <!-- Row -->
</div>
</li>
<li class="wow fadeInLeftBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="flex flex-start items-center pt-3">
<div class="bg-gray-300 w-2 h-2 rounded-full -ml-1 mr-3"></div>
<p class="text-gray-500 text-sm">4/2022 - 5/2022</p>
</div>
<div class="mt-0.5 ml-4 mb-6 text-gray-500">
<h4 class="text-gray-800 font-semibold text-xl mb-1.5">Chainlink Spring Hackathon</h4>
<ul class="list-disc pl-4 mb-4">
<li>Attended workshops to expand developer skills, joined a team to prove concept for an inflation-stable USD coin.</li>
<li>Create scripts to interact with Aave and other DeFi protocols.</li>
<li>Created full-stack staking Dapp with Solidity, Next.js, and Moralis.</li>
<!-- <li>Used ERC-4626 to lock up yield-earning DAI in a vault and provide liquidity for withdrawals.</li>
<li>Designed variable collateralization requirement & liquidations, calculated by yield and inflation data.</li> -->
</ul>
<div class="row">
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Solidity
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Hardhat
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Javascript
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
ERC-4626
</span>
<span class="mr-2 mb-2 text-xs justify-center inline-block py-1.5 px-2.5 leading-none text-center whitespace-nowrap align-baseline font-bold bg-gray-300 text-white rounded">
Truflation
</span>
</div> <!-- Row -->
</div>
</li>
</ol>
</div> <!-- container -->
</section>
<!--====== EXPERIENCE PART ENDS ======-->
<!--====== TESTIMONIAL PART START ======-->
<section id="testimonial" class="testimonial-area pt-120">
<div class="container">
<div class="justify-center row">
<div class="w-full lg:w-2/3">
<div class="pb-10 text-center section-title">
<div class="m-auto line"></div>
<h3 class="title">People<span> I've worked with</span></h3>
<div class="mt-4">
<a href="https://www.freelancer.com/u/coltonmilbrandt" target="_blank" rel="noopener" class="text-center text-theme-color hover:text-theme-color-2">Freelancer Profile</a>
</div>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<div class="row testimonial-active wow fadeInUpBig" data-wow-duration="0.6s" data-wow-delay="0.2s">
<div class="w-full lg:w-1/3">
<div class="single-testimonial">
<div class="flex items-center justify-between mb-6">
<div class="quota">
<i class="text-4xl duration-300 lni lni-quotation text-theme-color"></i>
</div>
<div class="star">
<ul class="flex">
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
</ul>
</div>
</div>
<div class="mb-8">
<p>Absolutely outstanding. Very supportive and enthusiastic. I am extremely happy to work with him.</p>
</div>
<div class="flex items-center testimonial-author">
<div class="relative author-image">
<img class="shape" src="assets/images/textimonial-shape.svg" alt="shape">
<img class="author rounded-full" src="assets/images/girish.jpg" alt="author">
</div>
<div class="author-content media-body">
<h6 class="mb-1 text-xl font-bold text-gray-900">Girish R.</h6>
<p></p>
</div>
</div>
</div> <!-- single testimonial -->
</div>
<div class="col-lg-4">
<div class="single-testimonial">
<div class="flex items-center justify-between mb-6">
<div class="quota">
<i class="text-4xl duration-300 lni lni-quotation text-theme-color"></i>
</div>
<div class="star">
<ul class="flex">
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
</ul>
</div>
</div>
<div class="mb-8">
<p>Always on time and on budget... Very responsible, easy to work with him. Hope to work with him more and more!</p>
</div>
<div class="flex items-center testimonial-author">
<div class="relative author-image">
<img class="shape" src="assets/images/textimonial-shape.svg" alt="shape">
<img class="author rounded-full" src="assets/images/than.jpg" alt="author">
</div>
<div class="author-content media-body">
<h6 class="mb-1 text-xl font-bold text-gray-900">Than T.</h6>
<p></p>
</div>
</div>
</div> <!-- single testimonial -->
</div>
<div class="col-lg-4">
<div class="single-testimonial">
<div class="flex items-center justify-between mb-6">
<div class="quota">
<i class="text-4xl duration-300 lni lni-quotation text-theme-color"></i>
</div>
<div class="star">
<ul class="flex">
</ul>
</div>
</div>
<div class="mb-8">
<p>Wonderful Guy. Very polite and communicative. Love working with you.<br> </p>
</div>
<div class="flex items-center testimonial-author">
<div class="relative author-image">
<img class="shape" src="assets/images/textimonial-shape.svg" alt="shape">
<img class="author rounded-full" src="assets/images/stanly.png" alt="author">
</div>
<div class="author-content media-body">
<h6 class="mb-1 text-xl font-bold text-gray-900">Stanly</h6>
<p></p>
</div>
</div>
</div> <!-- single testimonial -->
</div>
<div class="col-lg-4">
<div class="single-testimonial">
<div class="flex items-center justify-between mb-6">
<div class="quota">
<i class="text-4xl duration-300 lni lni-quotation text-theme-color"></i>
</div>
<div class="star">
<ul class="flex">
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
</ul>
</div>
</div>
<div class="mb-8">
<p>Very good Employer. Nice experience working with him!!!<br> </p>
</div>
<div class="flex items-center testimonial-author">
<div class="relative author-image">
<img class="shape" src="assets/images/textimonial-shape.svg" alt="shape">
<img class="author rounded-full" src="assets/images/rupal.jpg" alt="author">
</div>
<div class="author-content media-body">
<h6 class="mb-1 text-xl font-bold text-gray-900">Rupal H.</h6>
<p></p>
</div>
</div>
</div> <!-- single testimonial -->
</div>
<div class="col-lg-4">
<div class="single-testimonial">
<div class="flex items-center justify-between mb-6">
<div class="quota">
<i class="text-4xl duration-300 lni lni-quotation text-theme-color"></i>
</div>
<div class="star">
<ul class="flex">
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
<li><i class="lni lni-star-filled text-theme-color-2"></i></li>
</ul>
</div>
</div>
<div class="mb-8">
<p>It was great working with you, I'll work with you again whenever I get a chance.<br> </p>
</div>
<div class="flex items-center testimonial-author">
<div class="relative author-image">
<img class="shape" src="assets/images/textimonial-shape.svg" alt="shape">
<img class="author rounded-full" src="assets/images/muhammad-a.jpg" alt="author">
</div>