-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1054 lines (1034 loc) · 74.5 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>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Stylesheets -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.2/css/bootstrap.min.css"
integrity="sha512-rt/SrQ4UNIaGfDyEXZtNcyWvQeOq0QLygHluFQcSjaGB04IxWhal71tKuzP6K8eYXYB6vJV4pHkXcmFGGQ1/0w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.9.1/font/bootstrap-icons.min.css"
integrity="sha512-5PV92qsds/16vyYIJo3T/As4m2d8b6oWYfoqV+vtizRB6KhF1F9kYzWzQmsO6T3z3QG2Xdhrx7FQ+5R1LiQdUA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css"
integrity="sha512-1cK78a1o+ht2JcaW6g8OXYwqpev9+6GqOkz9xmBN9iUUhIndKtxwILGWYOSibOKjLsEdjyjZvYDq/cZwNeak0w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Glide.js/3.5.0/css/glide.core.min.css"
integrity="sha512-tYKqO78H3mRRCHa75fms1gBvGlANz0JxjN6fVrMBvWL+vOOy200npwJ69OBl9XEsTu3yVUvZNrdWFIIrIf8FLg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-toaster@4.1.2/css/bootstrap-toaster.min.css"
integrity="sha256-StBkWY+saGalYZXl/1BIthHJmad/IpYLuOvrSAm1tB0=" crossorigin="anonymous">
<link rel="stylesheet" href="css/index.min.css" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
<link rel="manifest" href="images/favicon/site.webmanifest">
<title>Peyton Gasink</title>
</head>
<body>
<div class="jumbotron jumbotron-fluid" id="hero">
<div class="container">
<div class="d-flex align-items-center flex-column title">
<div class="col-10 col-sm-6 col-md-3">
<img class="circle-image" src="images/peyton.png" alt="" />
</div>
<h1 class="display-4 text-center">Peyton Gasink</h1>
<p id="outline" class="lead text-center">
Welcome to my portfolio! I am a software engineer at Aspirent, specializing
in React and .NET, and I am a graduate of Auburn University. War Eagle!
</p>
</div>
</div>
</div>
<div class="container text-center" id="techContainer" data-aos="fade-up">
<h2 id="techExp">Technological Experience</h2>
<p>
Below are the technologies, programming languages, and services I am well-versed in. Expand the full list to
see them all!
</p>
<h3>Web</h3>
<div class="row row-cols-2 row-cols-sm-3 row-cols-md-4 row-cols-lg-5 tech-row">
<div class="col">
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/html.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">HTML</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://www.w3.org/Style/CSS/Overview.en.html" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/css.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">CSS</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/javascript.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">JavaScript</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://getbootstrap.com" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/bootstrap-logo.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">Bootstrap</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://reactjs.org" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/react.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">React</h3>
</div>
</div>
</a>
</div>
</div>
<div class="collapse" id="collapseTech" aria-expanded="false">
<h3>Programming Languages</h3>
<div class="row row-cols-2 row-cols-sm-3 row-cols-md-4 row-cols-lg-5 tech-row">
<div class="col">
<a href="https://en.wikipedia.org/wiki/C_Sharp_(programming_language)" target="_blank"
rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/csharp.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">C#</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://en.wikipedia.org/wiki/C%2B%2B" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/cplusplus.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">C++</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://en.wikipedia.org/wiki/Java_(programming_language)" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/java.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">Java</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://en.wikipedia.org/wiki/Python_(programming_language)" target="_blank"
rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/python.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">Python</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://en.wikipedia.org/wiki/Swift_(programming_language)" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/swift.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">Swift</h3>
</div>
</div>
</a>
</div>
</div>
<h3>Microsoft Stack</h3>
<div class="row row-cols-2 row-cols-sm-3 row-cols-md-4 row-cols-lg-5 tech-row">
<div class="col">
<a href="https://dotnet.microsoft.com/apps/aspnet" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/dotnet.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">ASP.NET</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://dotnet.microsoft.com/apps/xamarin/xamarin-forms" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/xamarin.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">Xamarin.Forms</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://www.microsoft.com/en-us/sql-server/default.aspx" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/sqlserver.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">SQL Server</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://azure.microsoft.com/en-us/services/app-service/" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/azappservice.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">Azure App Service</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://azure.microsoft.com/en-us/services/devops/" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/azdevops.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">Azure DevOps</h3>
</div>
</div>
</a>
</div>
</div>
<h3>Development Tools</h3>
<div class="row row-cols-2 row-cols-sm-3 row-cols-md-4 row-cols-lg-5 tech-row">
<div class="col">
<a href="https://visualstudio.microsoft.com/vs/" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/visualstudio.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">Visual Studio</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/vscode.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">VS Code</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://docs.microsoft.com/en-us/sql/ssms/sql-server-management-studio-ssms?view=sql-server-ver15"
target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/ssms.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">SSMS</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://github.com" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/github.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">GitHub</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://www.npmjs.com" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/npm.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">npm</h3>
</div>
</div>
</a>
</div>
</div>
<h3>Collaboration & Communication</h3>
<div class="row row-cols-2 row-cols-sm-3 row-cols-md-4 row-cols-lg-5 tech-row">
<div class="col">
<a href="https://products.office.com/en-us/microsoft-teams/group-chat-software" target="_blank"
rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/teams.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">Microsoft Teams</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://www.atlassian.com/software/jira" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/jira.svg" class="tech-image" alt="">
<h3 class="card-title h5 text-center">JIRA</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="https://www.servicenow.com" target="_blank" rel="noopener">
<div class="card align-items-center" data-aos="fade-up">
<div class="card-body">
<img src="images/technologies/servicenow.svg" class="tech-image smaller" alt="">
<h3 class="card-title h5 text-center">ServiceNow</h3>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="d-flex align-items-center">
<div class="col-2 tech-btn">
<button id="techCollapse" class="btn" type="button" data-toggle="collapse" data-target="#collapseTech"
aria-expanded="false" aria-controls="collapseTech">
<span class="bi bi-chevron-down fs-2" aria-hidden="true"></span>
</button>
</div>
<div class="col-5 line-wing"></div>
<div class="col-5 line-wing"></div>
</div>
<div id="showMore">Show More</div>
</div>
<div data-aos="fade-up" id="projectContainer">
<div id="triangleDivider"></div>
<div class="container mt-3" data-aos="fade-up">
<h2 id="" class="text-center">Projects</h2>
<p class="text-center">
Below are a few of my recent projects. Take a look to see my work in action!
</p>
<div class="glide" data-aos="fade-up">
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides">
<!-- Toasts -->
<li class="glide__slide">
<div class="card">
<div class="card-body project-card-body">
<div class="row">
<div class="col-md-6 col-lg-8 project-card-details mb-3 mb-lg-0">
<a href="https://bootstraptoaster.peytongasink.dev" target="_blank"
rel="noopener">
<div>
<span class="h5 card-title">
Bootstrap Toaster
</span>
<span class="bi bi-link-45deg fs-5" aria-hidden="true"></span>
</div>
</a>
<div class="badge badge-success">March 2020 - Present</div>
<a href="https://www.jsdelivr.com/package/npm/bootstrap-toaster"
target="_blank" rel="noopener">
<img src="https://camo.githubusercontent.com/351f229816cc9e0d1bce353c2cf3c56a012c945f236010917ec6a2035693dc3a/68747470733a2f2f646174612e6a7364656c6976722e636f6d2f76312f7061636b6167652f6e706d2f626f6f7473747261702d746f61737465722f62616467653f7374796c653d726f756e646564"
alt="jsDelivr Download Stats"
data-canonical-src="https://data.jsdelivr.com/v1/package/npm/bootstrap-toaster/badge?style=rounded"
style="max-width:100%;" />
</a>
<div>
<span>Skills Used: </span>
<span class="badge badge-primary">HTML</span>
<span class="badge badge-primary">CSS</span>
<span class="badge badge-primary">JavaScript</span>
<span class="badge badge-primary">Bootstrap</span>
<span class="badge badge-primary">npm</span>
</div>
<div>
<hr />
</div>
<div class="navbar navbar-expand-md">
<button class="bg-info text-light navbar-toggler mb-1" type="button"
data-toggle="collapse" data-target="#descToast"
aria-controls="descToast" aria-expanded="false"
aria-label="Read more about this project.">
Read About This Project <span class="bi bi-caret-down-fill"
aria-hidden="true"></span>
</button>
<p id="descToast" class="card-text collapse navbar-collapse">
An open-source, personal project of mine, Bootstrap Toaster is a
robust, plug & play generator for Bootstrap toast
notifications. I designed it as a way to quickly and
programmatically create Bootstrap toasts by abstracting the
setup and maintenance from the developer. It features a variety of
customization options including support for automatic light
and dark theme detection, positioning in each corner of the
viewport, elapsed time displayed on the toast, and different
statuses to convey different meanings. It also has built-in support
accessibility considerations for screenreaders,
making it a perfect fit for institutions with accessibility
requirements.
</p>
</div>
</div>
<div id="toastDemo" class="col-md-6 col-lg-4">
<div class="toast fade show" role="status" aria-live="polite"
aria-atomic="true" data-autohide="true" data-delay="10000">
<div class="toast-header">
<span class="status-icon bi mr-2 text-success bi-check-circle-fill"
aria-hidden="true"></span>
<strong class="mr-auto toast-title">Success</strong>
<small class="timer" aria-hidden="true">just now</small>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="toast-body">
Task completed successfully.
</div>
</div>
<div class="toast fade show" role="alert" aria-live="assertive"
aria-atomic="true" data-autohide="true" data-delay="10000">
<div class="toast-header">
<span
class="status-icon bi mr-2 text-warning bi-exclamation-circle-fill"
aria-hidden="true"></span>
<strong class="mr-auto toast-title">Warning</strong>
<small class="timer" aria-hidden="true">1m ago</small>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="toast-body">
There's something that needs your attention.
</div>
</div>
<div class="toast fade show" role="alert" aria-live="assertive"
aria-atomic="true" data-autohide="true" data-delay="10000">
<div class="toast-header">
<span class="status-icon bi mr-2 text-danger bi-x-circle-fill"
aria-hidden="true"></span>
<strong class="mr-auto toast-title">Error</strong>
<small class="timer" aria-hidden="true">2m ago</small>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="toast-body">
A server error occurred.
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<!-- Azure -->
<li class="glide__slide">
<div class="card">
<div class="card-body project-card-body">
<div class="row">
<div class="col-md-6 col-lg-8 project-card-details mb-3 mb-lg-0">
<div class="h5 card-title">
Azure Migration
</div>
<div class="badge badge-success">May - October 2020</div>
<div>
<span>Skills Used: </span>
<span class="badge badge-primary">Azure DevOps</span>
<span class="badge badge-primary">Azure Pipelines</span>
<span class="badge badge-primary">Azure Artifacts</span>
<span class="badge badge-primary">Azure App Service</span>
<span class="badge badge-primary">CI/CD</span>
<span class="badge badge-primary">NuGet</span>
</div>
<div>
<hr />
</div>
<div class="navbar navbar-expand-md">
<button class="bg-info text-light navbar-toggler mb-1" type="button"
data-toggle="collapse" data-target="#descAzure"
aria-controls="descAzure" aria-expanded="false"
aria-label="Read more about this project.">
Read About This Project <span class="bi bi-caret-down-fill"
aria-hidden="true"></span>
</button>
<p id="descAzure" class="card-text collapse navbar-collapse">
The goal of the project is to migrate all of our ASP .NET
applications from being hosted on-prem to Azure App Service.
My initial responsibilities include updating one of our class
libraries and several blocking projects for hosting using
Azure DevOps and Pipelines to lay the groundwork and establish a
repeatable process for the rest of my team to follow.
<br /><br />
So far this has been an extremely valuable learning experience for
me. I have learned how to use Azure Pipelines for
continuous integration, configuring and monitoring an app through
Azure App Service, and hosting private NuGet packages
within Azure Artifacts. Being on the front lines during Auburn's
transition to cloud computing has been an awesome
experience so far, and has challenged me in unique ways while
allowing me to hit the ground running.
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="row">
<img class="col-6 mt-3 tech-image" src="images/technologies/azure.svg"
alt="" />
<img class="col-6 mt-3 tech-image"
src="images/technologies/azappservice.svg" alt="" />
<img class="col-6 mt-3 tech-image" src="images/technologies/nuget.svg"
alt="" />
<img class="col-6 mt-3 tech-image"
src="images/technologies/azdevops.svg" alt="" />
<img class="col-6 mt-3 tech-image"
src="images/technologies/azpipelines.svg" alt="" />
<img class="col-6 mt-3 tech-image"
src="images/technologies/azartifacts.svg" alt="" />
</div>
</div>
</div>
</div>
</div>
</li>
<!-- Nursing -->
<li class="glide__slide">
<div class="card">
<div class="card-body project-card-body">
<div class="row">
<div class="col-md-6 col-lg-8 project-card-details mb-3 mb-lg-0">
<a href="https://cws.auburn.edu/nursing" target="_blank" rel="noopener">
<div>
<span class="h5 card-title">
Auburn University School of Nursing
</span>
<span class="bi bi-link-45deg fs-5" aria-hidden="true"></span>
</div>
</a>
<div class="badge badge-success">March - June 2020</div>
<div>
<span>Skills Used: </span>
<span class="badge badge-primary">C#</span>
<span class="badge badge-primary">HTML</span>
<span class="badge badge-primary">CSS</span>
<span class="badge badge-primary">JavaScript</span>
<span class="badge badge-primary">Bootstrap</span>
</div>
<div>
<hr />
</div>
<div class="navbar navbar-expand-md">
<button class="bg-info text-light navbar-toggler mb-1" type="button"
data-toggle="collapse" data-target="#descNursing"
aria-controls="descNursing" aria-expanded="false"
aria-label="Read more about this project.">
Read About This Project <span class="bi bi-caret-down-fill"
aria-hidden="true"></span>
</button>
<p id="descNursing" class="card-text collapse navbar-collapse">
I began working on this project in October 2019 to create a
proof-of-concept redesign of the School of Nursing's home
page. A few months after completion, my team was contracted to go
through with a redesign of the entire website in the
style of my earlier work. The project's goal is to create a more
captivating experience than what is currently in place
on the current production version of the site. The site also
features many customization options for administrators.
Much of the content on the public-facing portions of the site is
fully editable, and other data-driven features provide
wizards for administrators to follow. The site features modern
paradigms and interface metaphors such as a large hero
units, cards, interactive widgets for news, upcoming events,
podcasts, are some of the means by which we accomplished
this goal. My personal contributions include the home page, and
reusable components such as gesture-based site
navigation, widgets for recent news and upcoming events, and rich
content editors. The site's first phase launched in
June 2020.
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div id="carouselNursing" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselNursing" data-slide-to="0" class="active">
</li>
<li data-target="#carouselNursing" data-slide-to="1"></li>
<li data-target="#carouselNursing" data-slide-to="2"></li>
<li data-target="#carouselNursing" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/projects/nursing1.png" class="d-block w-100"
alt="AUSON navigation buttons">
</div>
<div class="carousel-item">
<img src="images/projects/nursing2.png" class="d-block w-100"
alt="Gesture-based navbar">
</div>
<div class="carousel-item">
<img src="images/projects/nursing3.png" class="d-block w-100"
alt="News feed">
</div>
<div class="carousel-item">
<img src="images/projects/nursing4.png" class="d-block w-100"
alt="Upcoming events feed">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<!-- Big Event 2 -->
<li class="glide__slide">
<div class="card">
<div class="card-body project-card-body">
<div class="row">
<div class="col-md-5 project-card-details mb-3 mb-lg-0">
<a href="https://bigevent.auburn.edu" target="_blank" rel="noopener">
<div>
<span class="h5 card-title">
The BIG Event (2.0)
</span>
<span class="bi bi-link-45deg fs-5" aria-hidden="true"></span>
</div>
</a>
<div class="badge badge-success">January - February 2020</div>
<div>
<span>Skills Used: </span>
<span class="badge badge-primary">C#</span>
<span class="badge badge-primary">SQL</span>
<span class="badge badge-primary">HTML</span>
<span class="badge badge-primary">CSS</span>
<span class="badge badge-primary">JavaScript</span>
<span class="badge badge-primary">Bootstrap</span>
</div>
<div>
<hr />
</div>
<div class="navbar navbar-expand-md">
<button class="bg-info text-light navbar-toggler mb-1" type="button"
data-toggle="collapse" data-target="#descBE2"
aria-controls="descBE2" aria-expanded="false"
aria-label="Read more about this project.">
Read About This Project <span class="bi bi-caret-down-fill"
aria-hidden="true"></span>
</button>
<p id="descBE2" class="card-text collapse navbar-collapse">
Led the charge in enhancing The BIG Event web app, originally
created in late 2018. Though it was a shorter project,
getting to work on it was a really rewarding experience because I
went from being a junior developer on the original
project to lead developer for the update. Enhancements include bug
fixes from the original release, new features and
workflow improvements, and upgraded reporting for admins. For this
project I was responsible for upgrading the
authentication service to give more freedom and permission
customization to various user roles, and rewriting the app's
email hub system from the database all the way to the user
interface.
<br /><br />
The rewrite of the email hub was particularly rewarding because it
was code that I originally wrote in 2018 that
incurred a significant amount of technical debt, so I was able to
demonstrate how far I have progressed in a just over a
year's time. The rewrite was my third iteration of this feature,
which allows storing email templates with placeholder
variables to be later sent by the app programmatically, so by this
point I had improved vastly both in vision and
execution. The new code is significantly more efficient,
maintainable, and provides new features such as including .ics
calendar invites as attachments to the emails.
</p>
</div>
</div>
<div class="col-md-7">
<div id="carouselBE2" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselBE2" data-slide-to="0" class="active">
</li>
<li data-target="#carouselBE2" data-slide-to="1"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/projects/bigevent5.png" class="d-block w-100"
alt="Various email templates in the Email Hub.">
</div>
<div class="carousel-item">
<img src="images/projects/bigevent6.png" class="d-block w-100"
alt="Email template editor with highlighted placeholder variables.">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<!-- Voting -->
<li class="glide__slide">
<div class="card">
<div class="card-body project-card-body">
<div class="row">
<div class="col-md-6 col-lg-8 project-card-details mb-3 mb-lg-0">
<div class="h5 card-title">SGA Elections</div>
<div class="badge badge-success">November 2019 - January 2020</div>
<div>
<span>Skills Used: </span>
<span class="badge badge-primary">C#</span>
<span class="badge badge-primary">SQL</span>
<span class="badge badge-primary">HTML</span>
<span class="badge badge-primary">CSS</span>
<span class="badge badge-primary">JavaScript</span>
<span class="badge badge-primary">Bootstrap</span>
</div>
<div>
<hr />
</div>
<div class="navbar navbar-expand-md">
<button class="bg-info text-light navbar-toggler mb-1" type="button"
data-toggle="collapse" data-target="#descVoting"
aria-controls="descVoting" aria-expanded="false"
aria-label="Read more about this project.">
Read About This Project <span class="bi bi-caret-down-fill"
aria-hidden="true"></span>
</button>
<p id="descVoting" class="card-text collapse navbar-collapse">
Led a team of six co-op students in adding new features to Auburn
University's SGA Election web app to accommodate a new
ranked-choice voting option for executive office positions. This
required significant modifications to the database
schema to allow for both traditional and ranked-choice options. In
addition, stored procedures were created to calculate
and distribute votes in each time candidates are removed at the end
of a round. My work on the project consisted of a
complete rewrite of the front-end and back-end code for casting
votes to support both traditional and ranked-choice
voting, since each election position could be configured to use
either format.
<br /><br />
Since the majority of students use their phones to vote for their
candidate(s) of choice, my redesign was designed
first-and-foremost for that use case. It features hierarchical menus
for selecting candidates within grouped election
positions. To fully take advantage of touchscreen use, the
experience is gesture-based and makes use of drag-and-drop to
rank candidates in the user's desired order.
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div id="carouselSGA" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselSGA" data-slide-to="0" class="active">
</li>
<li data-target="#carouselSGA" data-slide-to="1"></li>
<li data-target="#carouselSGA" data-slide-to="2"></li>
<li data-target="#carouselSGA" data-slide-to="3"></li>
<li data-target="#carouselSGA" data-slide-to="4"></li>
<li data-target="#carouselSGA" data-slide-to="5"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/projects/voting1.png" class=" d-block w-100"
alt="List of election groups and their positions.">
</div>
<div class="carousel-item">
<img src="images/projects/voting2.png" class="d-block w-100"
alt="Drag-and-drop interface for ranked-choice voting.">
</div>
<div class="carousel-item">
<img src="images/projects/voting3.png" class="d-block w-100"
alt="Ranking candidates.">
</div>
<div class="carousel-item">
<img src="images/projects/voting4.png" class="d-block w-100"
alt="Single-choice election position.">
</div>
<div class="carousel-item">
<img src="images/projects/voting5.png" class="d-block w-100"
alt="Multiple-choice election position.">
</div>
<div class="carousel-item">
<img src="images/projects/voting6.png" class="d-block w-100"
alt="Voting in an election referendum.">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<!-- News -->
<li class="glide__slide">
<div class="card">
<div class="card-body project-card-body">
<div class="row">
<div class="col-md-6 col-lg-8 project-card-details mb-3 mb-lg-0">
<a href="https://cws.auburn.edu/shared/pagemaster/PMNews/Index/201"
target="_blank" rel="noopener">
<div>
<span class="h5 card-title">
News
</span>
<span class="bi bi-link-45deg fs-5" aria-hidden="true"></span>
</div>
</a>
<div class="badge badge-success">June - July 2019</div>
<div>
<span>Skills Used: </span>
<span class="badge badge-primary">C#</span>
<span class="badge badge-primary">API</span>
<span class="badge badge-primary">SQL</span>
<span class="badge badge-primary">HTML</span>
<span class="badge badge-primary">CSS</span>
<span class="badge badge-primary">JavaScript</span>
<span class="badge badge-primary">Bootstrap</span>
</div>
<div>
<hr />
</div>
<div class="navbar navbar-expand-md">
<button class="bg-info text-light navbar-toggler mb-1" type="button"
data-toggle="collapse" data-target="#descNews"
aria-controls="descNews" aria-expanded="false"
aria-label="Read more about this project.">
Read About This Project <span class="bi bi-caret-down-fill"
aria-hidden="true"></span>
</button>
<p id="descNews" class="card-text collapse navbar-collapse">
Developed a news platform for any of our on-campus clients to use at
the push of a button. It was built into a shared
platform that all our applications are connected to, so enabling the
news features would not require updates to
individual apps. The news site provides customization options with
pre-built HTML templates for news widgets, cards on
the main news feed, and for articles, as well as an API for
customized integration into sites.
<br /><br />
My work on this project focused largely on creating the templates
for articles and the main news feed. I wrote the HTML,
CSS, and JavaScript required, and also added support for convenient
features such as browser reader modes and social
media share buttons. I also created pages where an app's admin(s)
can view live previews of available templates and
select their preferred options. Finally, I wrote a web API so any
site could consume a news feed and create custom
implementations, secured by an API key unique to each app's feed.
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div id="carouselNews" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselNews" data-slide-to="0" class="active">
</li>
<li data-target="#carouselNews" data-slide-to="1"></li>
<li data-target="#carouselNews" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/projects/news1.png" class="d-block w-100"
alt="The headline of a news article.">
</div>
<div class="carousel-item">
<img src="images/projects/news2.png" class="d-block w-100"
alt="More information about the article: author, social media share links, etc.">
</div>
<div class="carousel-item">
<img src="images/projects/news3.png" class="d-block w-100"
alt="List of recently published articles.">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<!-- Big Event 1 -->
<li class="glide__slide">
<div class="card">
<div class="card-body project-card-body">
<div class="row">
<div class="col-md-6 col-lg-8 project-card-details mb-3 mb-lg-0">
<a href="https://bigevent.auburn.edu" target="_blank" rel="noopener">
<div>
<span class="h5 card-title">
The BIG Event (1.0)
</span>
<span class="bi bi-link-45deg fs-5" aria-hidden="true"></span>
</div>
</a>
<div class="badge badge-success">August - November 2018</div>
<div>
<span>Skills Used: </span>
<span class="badge badge-primary">C#</span>
<span class="badge badge-primary">SQL</span>
<span class="badge badge-primary">HTML</span>
<span class="badge badge-primary">CSS</span>
<span class="badge badge-primary">JavaScript</span>
<span class="badge badge-primary">Bootstrap</span>
</div>
<div>
<hr />
</div>
<div class="navbar navbar-expand-md">
<button class="bg-info text-light navbar-toggler mb-1" type="button"
data-toggle="collapse" data-target="#descBE1"
aria-controls="descBE1" aria-expanded="false"
aria-label="Read more about this project.">
Read About This Project <span class="bi bi-caret-down-fill"
aria-hidden="true"></span>
</button>
<p id="descBE1" class="card-text collapse navbar-collapse">
Worked as a member of a six-person team of co-op students to create
a highly customizable web application for Auburn
University's chapter of The BIG Event, which is a service
organization that gives back to the local community one day
every year through organized volunteer work. The system provides the
ability to volunteer, create a job site request,
assign volunteers to job sites, and allow administrators to track
and notify participants of The BIG Event both leading
up to and on the day of the event through emails, SMS messages, and
live status board maps of the job sites.
<br /><br />
My primary contributions include the ability to edit email templates
to be sent programmatically by various other parts
of the application. Each template includes placeholder variables
that are replaced with actual data as the email is
being sent. I also created the ability to volunteer for the event,
where a user can volunteer individually, create/join
a team, or select an organization to volunteer with.
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div id="carouselBE1" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselBE1" data-slide-to="0" class="active">
</li>
<li data-target="#carouselBE1" data-slide-to="1"></li>
<li data-target="#carouselBE1" data-slide-to="2"></li>
<li data-target="#carouselBE1" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/projects/bigevent1.png" class="d-block w-100"
alt="Must agree to Hold Harmless statement.">
</div>
<div class="carousel-item">
<img src="images/projects/bigevent2.png" class="d-block w-100"
alt="Hold Harmless popup window.">
</div>
<div class="carousel-item">
<img src="images/projects/bigevent3.png" class="d-block w-100"
alt="Creating a team to volunteer with.">
</div>
<div class="carousel-item">
<img src="images/projects/bigevent4.png" class="d-block w-100"
alt="Volunteering with an organization.">
</div>
</div>
<a class="carousel-control-prev" href="#carouselBE1" role="button"
data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselBE1" role="button"
data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="glide__arrows" data-glide-el="controls">
<button class="btn btn-dark glide__arrow glide__arrow--left" data-glide-dir="<">
<span class="bi bi-arrow-left fs-4" aria-hidden="true" title="Previous"></span>
<span class="sr-only">Previous</span>
</button>
<button class="btn btn-dark glide__arrow glide__arrow--right" data-glide-dir=">">
<span class="bi bi-arrow-right fs-4" aria-hidden="true" title="Next"></span>
<span class="sr-only">Next</span>
</button>
</div>
<ol class="glide__bullets carousel-indicators" data-glide-el="controls[nav]">
<li class="glide__bullet" data-glide-dir="=0"></li>
<li class="glide__bullet" data-glide-dir="=1"></li>
<li class="glide__bullet" data-glide-dir="=2"></li>
<li class="glide__bullet" data-glide-dir="=3"></li>
<li class="glide__bullet" data-glide-dir="=4"></li>
<li class="glide__bullet" data-glide-dir="=5"></li>
<li class="glide__bullet" data-glide-dir="=6"></li>
</ol>