-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1042 lines (999 loc) · 67.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Gordon Ng</title>
<link rel="icon" type="image/x-icon" href="./assets/favicon.png" />
<link rel="stylesheet" href="./styles.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous" />
<script defer src="app.js"></script>
</head>
<body>
<!--
MARK: Navbar
-->
<div id="Navbar" class="container fixed-top rounded-4 shadow-lg glass hiddenSlideY">
<nav class="navbar navbar-expand-md py-3">
<div class="container-fluid">
<a href="#top" id="name"
class="navbar-brand d-flex align-items-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
<img src="./assets/logos/bash.png" alt="Bash Logo" class="bi me-2 neumorphicIMG" height="32" />
<span class="fs-4">Gordon Ng</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item ms-auto">
<a href="#top" class="nav-link">Home</a>
</li>
<li class="nav-item ms-auto">
<a href="#About" class="nav-link">About</a>
</li>
<li class="nav-item ms-auto">
<a href="#Projects" class="nav-link">Projects</a>
</li>
<li class="nav-item ms-auto">
<a href="#Skills" class="nav-link">Skills</a>
</li>
<li class="nav-item ms-auto">
<a href="#Interests" class="nav-link">Interests</a>
</li>
<li class="nav-item ms-auto me-3 me-md-0">
<a href="./Gordon Ng's Resume.pdf" class="btn btn-primary text-white neumorphicButton"
aria-current="page" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-cloud-arrow-down-fill" viewBox="0 0 16 16">
<path
d="M8 2a5.53 5.53 0 0 0-3.594 1.342c-.766.66-1.321 1.52-1.464 2.383C1.266 6.095 0 7.555 0 9.318 0 11.366 1.708 13 3.781 13h8.906C14.502 13 16 11.57 16 9.773c0-1.636-1.242-2.969-2.834-3.194C12.923 3.999 10.69 2 8 2m2.354 6.854-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 1 1 .708-.708L7.5 9.293V5.5a.5.5 0 0 1 1 0v3.793l1.146-1.147a.5.5 0 0 1 .708.708">
</path>
</svg>
CV
</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!-- Home -->
<div class="container">
<section id="profile">
<div class="picContainer hiddenBlur">
<img src="./assets/headshot.png" alt="Gordon profile picture" id="picture" class="neumorphism" />
</div>
<div class="text hiddenBlur">
<p class="text1">Hello, I'm</p>
<h1 class="title">Gordon Ng</h1>
<div class="d-flex justify-content-center">
<div class="carousel slide" data-bs-ride="carousel" data-bs-touch="false" data-bs-interval="4000"
data-bs-pause="false" style="width: 234px;">
<div class="carousel-inner">
<div class="carousel-item active">
<p class="text2 faded">Software Engineer</p>
</div>
<div class="carousel-item">
<p class="text2 faded">Student</p>
</div>
</div>
</div>
</div>
<div class="btn-container">
<a href="#About" class="btn btn-light neumorphicButton">
About Me
</a>
<div class="btn-group">
<button type="button" class="btn btn-primary dropdown-toggle px-3 me-md-2 neumorphicButton"
data-bs-toggle="dropdown" aria-expanded="false">
Connect
</button>
<ul class="dropdown-menu gap-1 p-2 rounded-3 mx-0 shadow w-220px">
<li>
<a class="dropdown-item rounded-2" href="https://www.linkedin.com/in/gordonng03/"
target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z" />
</svg>
LinkedIn</a>
</li>
<li>
<a class="dropdown-item rounded-2" href="https://github.com/SoloUnity"
target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8" />
</svg>
GitHub</a>
</li>
<li>
<a class="dropdown-item rounded-2" href="mailto:[email protected]"
target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" class="bi bi-envelope-fill" viewBox="0 0 16 16">
<path
d="M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z" />
</svg>
Email</a>
</li>
</ul>
</div>
</div>
</div>
</section>
</div>
<!--
MARK: About Me
-->
<div class="container px-4 py-5">
<h2 id="About" class="pb-2 hiddenBlur">About Me</h2>
<div class="row row-cols-1 row-cols-lg-1 align-items-stretch g-4 mt-5">
<div class="col-md-7 col-lg-7 default-col staggerAbout hiddenSlideX">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="h-100 d-flex flex-column p-5">
<h3 class="mb-4 display-6 lh-1 fw-bold">Hi!</h3>
<div>
I'm Gordon, from Canada <img src="./assets/flags/canada.png" class="emoji">! I am a 3rd year
<strong>Software Engineering student</strong>
at McGill University. I am also self-taught in iOS and web
development, and am currently exploring other areas such as AI
and backend development. I love coding to solve the little
problems in life. From video game passion projects to course
companion apps, I am dedicated to coding any and all, big and
small!
<br /><br />
In the past, I have worked on popular projects such as
<a href="#Projects" class="text-decoration-none richLink fw-bold"
style="white-space: nowrap;">Valorant Store Checker</a>
as well as having interned at
<a href="https://www.touchtunes.com" class="text-decoration-none richLink fw-bold"
target="_blank" style="white-space: nowrap;">TouchTunes</a>
and
<a href="https://www.bettersleep.com" class="text-decoration-none richLink fw-bold"
target="_blank" style="white-space: nowrap;">BetterSleep</a>
as an iOS developer. I love to learn and love to meet others. With that said, I am always
open to new opportunities
so feel free to reach out and
<div class="btn-group dropend">
<a class="text-decoration-none richLink fw-bold"
style="margin-top: -3px; cursor: pointer;" data-bs-toggle="dropdown"
aria-expanded="false">connect</a>
<ul class="dropdown-menu gap-1 p-2 rounded-3 mx-0 shadow w-220px">
<li>
<a class="dropdown-item rounded-2"
href="https://www.linkedin.com/in/gordonng03/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z" />
</svg>
LinkedIn</a>
</li>
<li>
<a class="dropdown-item rounded-2" href="https://github.com/SoloUnity"
target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="16"
height="16" fill="currentColor" class="bi bi-github"
viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8" />
</svg>
GitHub</a>
</li>
<li>
<a class="dropdown-item rounded-2" href="mailto:[email protected]"
target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="16"
height="16" fill="currentColor" class="bi bi-envelope-fill"
viewBox="0 0 16 16">
<path
d="M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z" />
</svg>
Email</a>
</li>
</ul>
</div>
with me!
</div>
</div>
</div>
</div>
<div class="col-md-5 col-lg-5 default-col staggerAbout hiddenSlideX">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="h-100 d-flex flex-column p-5">
<h3 class="mb-4 display-6 lh-1 fw-bold">A Bit More</h3>
<h5>Education</h5>
<p>
<strong>McGill University</strong>
<br />
BSc. Software Engineering (2022-2026)
</p>
<h5>Email</h5>
<p>[email protected]</p>
<h5>Languages</h5>
<ul>
<li><img src="./assets/flags/uk.png" class="emoji"> English</li>
<li><img src="./assets/flags/france.png" class="emoji"> French</li>
<li><img src="./assets/flags/china.png" class="emoji"> Mandarin & Cantonese</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--
MARK: Projects
-->
<div class="container px-4 py-5">
<h2 id="Projects" class="pb-2 hiddenBlur">Projects</h2>
<div class="row row-cols-1 align-items-stretch g-4 py-5 hiddenSlideX">
<div class="col proj-col" data-bs-toggle="modal" data-bs-target="#vscModal">
<div class="neumorphism h-100 overflow-hidden rounded-4 hoverable" id="vsc">
<img src="./assets/projects/ValorantStoreChecker/VSC.jpg" alt="Valorant Store Checker"
loading="lazy"
style="object-fit: cover; width: 100%; height: 100%; position: absolute; z-index: -1;" />
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1">
<h3 class="display-6 lh-1 fw-bold mb-0 mt-auto">
Valorant Store Checker
</h3>
<div class="d-flex justify-content-between align-items-center">
The premier Valorant Store Checker app for iOS
<ul class="d-flex list-unstyled mb-0 flex">
<li class="me-2">
<img src="./assets/logos/swift.png" alt="Swift" width="32" height="32"
loading="lazy" class="rounded-circle border border-white" />
</li>
<li>
<img src="./assets/logos/swiftui.png" alt="SwiftUI" width="32" height="32"
loading="lazy" class="rounded-circle border border-white" />
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row row-cols-1 align-items-stretch g-4 mb-5 hiddenSlideX">
<div class="col proj-col" data-bs-toggle="modal" data-bs-target="#aiagentModal">
<div class="neumorphism h-100 overflow-hidden rounded-4 hoverable" id="aiagent">
<img src="./assets/projects/AIAgent/AIAgent.jpg" alt="AI Game Agent" loading="lazy"
style="object-fit: cover; width: 100%; height: 100%; position: absolute; z-index: -1;" />
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1">
<h3 class="display-6 lh-1 fw-bold mb-0 mt-auto">AI Game Agent</h3>
<div class="d-flex justify-content-between align-items-center">
A 90th percentile AI game agent
<ul class="d-flex list-unstyled mb-0 flex">
<li class="me-auto">
<img src="./assets/logos/python.png" alt="Bootstrap" width="32" height="32"
loading="lazy" class="rounded-circle border border-white" />
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row row-cols-1 align-items-stretch g-4 mb-5 hiddenSlideX position-relative" style="z-index: 2;">
<div class="col proj-col" data-bs-toggle="modal" data-bs-target="#codevaultModal" data-src="">
<div class="neumorphism h-100 overflow-hidden rounded-4 hoverable" id="codevault">
<img src="./assets/projects/CodeVault/CodeVault.jpg" alt="CodeVault" loading="lazy"
style="object-fit: cover; width: 100%; height: 100%; position: absolute; z-index: -1;" />
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1">
<h3 class="display-6 lh-1 fw-bold mb-0 mt-auto">CodeVault</h3>
<div class="d-flex justify-content-between align-items-center">
A ConUHacks 2023 hackathon project
<ul class="d-flex list-unstyled mb-0 flex">
<li class="me-2">
<img src="./assets/logos/swift.png" alt="Swift" width="32" height="32"
loading="lazy" class="rounded-circle border border-white" />
</li>
<li class="me-2">
<img src="./assets/logos/swiftui.png" alt="SwiftUI" width="32" height="32"
loading="lazy" class="rounded-circle border border-white" />
</li>
<li>
<img src="./assets/logos/reactjs.png" alt="React" width="32" height="32"
loading="lazy" class="rounded-circle border border-white" />
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid position-relative hiddenSlideX" style="z-index: 1;">
<div class="row flex-nowrap scrollport " id="projectsScrollport" style="white-space:initial;">
<div class="projColSm hoverable" style="margin-left: -12px;">
<a href="https://devpost.com/software/goodlucktruck" class="text-decoration-none text-reset" target="_blank">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="d-flex flex-column h-100 p-5">
<h3 class="mb-4 display-7 lh-1 fw-bold">123Loadboard</h3>
CodeJam 2023 hackathon project, helps truckers find loads with React.js and iOS.
<span class="mt-auto">
<span class="richLink fw-bold" style="cursor: pointer;">DevPost</span>
</span>
</div>
</div>
</a>
</div>
<div class="projColSm staggerProject hiddenSlideX">
<a href="https://devpost.com/software/schedule-bsc9w6" class="text-decoration-none text-reset" target="_blank">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="d-flex flex-column h-100 p-5">
<h3 class="mb-4 display-7 lh-1 fw-bold">NextClass</h3>
CodeJam 2022 hackathon project, schedule based social media website.
<span class="mt-auto">
<span class="richLink fw-bold" target="_blank">DevPost</span>
</span>
</div>
</div>
</a>
</div>
<div class="projColSm staggerProject hiddenSlideX">
<a href="https://github.com/SoloUnity/marianopolis-computer-programming/tree/main/Programmin%20Techniques%20and%20Applications%20420-LCW-MS/Assignments/a3%20Spambase" class="text-decoration-none text-reset" target="_blank">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="d-flex flex-column h-100 p-5">
<h3 class="mb-4 display-7 lh-1 fw-bold">Spam Detector</h3>
Spam email detector leveraging machine learning algorithms in Python.
<span class="mt-auto">
<span class="text-decoration-none richLink fw-bold" target="_blank" style="cursor: pointer;">GitHub</span>
</span>
</div>
</div>
</a>
</div>
<div class="projColSm staggerProject hiddenSlideX">
<a href="https://github.com/SoloUnity/remote-search-and-rescue-robot" class="text-decoration-none text-reset" target="_blank">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="d-flex flex-column h-100 p-5">
<h3 class="mb-4 display-7 lh-1 fw-bold">Rescue Robot</h3>
Regional science fair candidate, autonomous all-terrain search & rescue bot.
<span class="mt-auto">
<span class="text-decoration-none richLink fw-bold" target="_blank" style="cursor: pointer;">GitHub</span>
</span>
</div>
</div>
</a>
</div>
<div class="hoverable projColSm">
<a href="https://github.com/SoloUnity/Gordon-Ng" class="text-decoration-none text-reset" target="_blank">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="d-flex flex-column h-100 p-5">
<h3 class="mb-4 display-7 lh-1 fw-bold">Portfolio Site</h3>
The website you are on right now! Built with HTML, CSS, and JavaScript.
<span class="mt-auto">
<span class="text-decoration-none richLink fw-bold" target="_blank" style="cursor: pointer;">GitHub</span>
</span>
</div>
</div>
</a>
</div>
<div class="hoverable projColSm" style="margin-right: -12px;">
<a href="https://github.com/SoloUnity" class="text-decoration-none text-reset" target="_blank">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="d-flex flex-column h-100 p-5">
<h3 class="mb-4 display-7 lh-1 fw-bold">GitHub</h3>
For more projects and for my latest activity, check out my GitHub!
<span class="mt-auto">
<span class="text-decoration-none richLink fw-bold" target="_blank" style="cursor: pointer;">GitHub</span>
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="d-flex justify-content-end mt-5 position-relative hiddenBlur" style="z-index: 2;">
<button type="button" class="btn btn-light rounded-circle neumorphicButton me-2 p-2 lh-1 left1"
style="width: 35px; height: 35px;">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-chevron-left faded" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0"
stroke="currentColor" stroke-width="1.5" />
</svg>
</button>
<button type="button" class="btn btn-light rounded-circle neumorphicButton p-2 lh-1 right1"
style="width: 35px; height: 35px;">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-chevron-right faded" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"
stroke="currentColor" stroke-width="1.5" />
</svg>
</button>
</div>
</div>
<!--
MARK: Skills
-->
<div class="container px-4 py-5" id="icon-grid">
<h2 id="Skills" class="pb-2 hiddenBlur">Skills</h2>
<div class="row row-cols-1 row-cols-lg-2 align-items-stretch g-4 pt-5">
<div class="col staggerSkill hiddenSlideX">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="d-flex flex-column h-100 p-5">
<h3 class="mb-4 display-6 lh-1 fw-bold">Frontend</h3>
<div class="row row-cols-1 row-cols-sm-2 g-4">
<div class="col d-flex align-items-start">
<img src="./assets/logos/swiftui.png" alt="SwiftUI logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">SwiftUI</h3>
<p class="faded">Advanced</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/uikit.png" alt="UIKit logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">UIKit</h3>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/html.png" alt="HTML logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">HTML</h3>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/css.png" alt="CSS logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">CSS</h3>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/reactjs.png" alt="UIKit logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">React.js</h3>
<p class="faded">Basic</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/javascript.png" alt="Javascript logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">JavaScript</h3>
<p class="faded">Basic</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col staggerSkill hiddenSlideX">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="d-flex flex-column h-100 p-5 text-shadow-1">
<h3 class="mb-4 display-6 lh-1 fw-bold">Backend</h3>
<div class="row row-cols-1 row-cols-sm-2 g-4">
<div class="col d-flex align-items-start">
<img src="./assets/logos/swiftdata.png" alt="SwiftData logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h2 class="mb-0 fs-4 text-body-emphasis">SwiftData</h2>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/sql.png" alt="Swift Logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">PSQL</h3>
<p class="faded">Basic</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/nodejs.png" alt="Node.js logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">Node.js</h3>
<p class="faded">Basic</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/expressjs.png" alt="Express.js logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">Express.js</h3>
<p class="faded">Basic</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col staggerSkill hiddenSlideX">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="d-flex flex-column h-100 p-5 text-shadow-1">
<h3 class="mb-4 display-6 lh-1 fw-bold">General</h3>
<div class="row row-cols-1 row-cols-sm-2 g-4">
<div class="col d-flex align-items-start">
<img src="./assets/logos/swift.png" alt="Swift logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h2 class="mb-0 fs-4 text-body-emphasis">Swift</h2>
<p class="faded">Advanced</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/objc.png" alt="Objective-C logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">Obj-C</h3>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/python.png" alt="Python logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">Python</h3>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/java.png" alt="Java logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">Java</h3>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/c.png" alt="C Logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">C</h3>
<p class="faded">Basic</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/ocaml.png" alt="OCaml Logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">OCaml</h3>
<p class="faded">Basic</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col staggerSkill hiddenSlideX">
<div class="neumorphism h-100 overflow-hidden rounded-4">
<div class="d-flex flex-column h-100 p-5 text-shadow-1">
<h3 class="mb-4 display-6 lh-1 fw-bold">Other</h3>
<div class="row row-cols-1 row-cols-sm-2 g-4">
<div class="col d-flex align-items-start">
<img src="./assets/logos/git.png" alt="Git logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h2 class="mb-0 fs-4 text-body-emphasis">Git</h2>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/github.png" alt="GitHub logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">GitHub</h3>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/xctest.png" alt="XCTest logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h2 class="mb-0 fs-4 text-body-emphasis">XCTest</h2>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/junit.png" alt="JUnit logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">JUnit</h3>
<p class="faded">Intermediate</p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/jira.png" alt="Jira Logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">Jira</h3>
<p class="faded"></p>
</div>
</div>
<div class="col d-flex align-items-start">
<img src="./assets/logos/confluence.png" alt="Swift Logo" loading="lazy"
class="bi text-body-secondary flex-shrink-0 me-3" width="28em" height="28em" />
<div>
<h3 class="mb-0 fs-4 text-body-emphasis">Confluence</h3>
<p class="faded"></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--
MARK: Interests
-->
<div class="container px-4 py-5">
<h2 id="Interests" class="pb-2 hiddenBlur">Interests</h2>
<div class="row row-cols-1 row-cols-lg-3 align-items-stretch g-4 py-4">
<div class="col default-col staggerHobby hiddenSlideX" style="z-index: 1">
<div class="neumorphism h-100 overflow-hidden rounded-4" id="badminton" style="will-change: transform;">
<img src="./assets/hobbies/badminton.jpeg" alt="CodeVault" loading="lazy"
style="object-fit: cover; width: 100%; height: 100%; position: absolute; z-index: -1;" />
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1">
<h3 class="pt-5 mt-auto display-6 lh-1 fw-bold">Badminton</h3>
</div>
</div>
</div>
<div class="col default-col staggerHobby hiddenSlideX" data-bs-toggle="modal" data-bs-target="#danceModal">
<div class="neumorphism h-100 overflow-hidden rounded-4 hoverable" id="dance">
<img src="./assets/hobbies/dance.JPG" alt="CodeVault" loading="lazy"
style="object-fit: cover; width: 100%; height: 100%; position: absolute; z-index: -1;" />
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1">
<h3 class="pt-5 mt-auto display-6 lh-1 fw-bold">Dance</h3>
</div>
</div>
</div>
<div class="col default-col staggerHobby hiddenSlideX" style="z-index: 1">
<iframe class="neumorphism rounded-4"
src="https://open.spotify.com/embed/playlist/66AeDiMrDqXStAK0DnrcYA?utm_source=generator"
width="100%" height="100%" frameborder="0" allowfullscreen=""
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"></iframe>
</div>
</div>
</div>
<!--
MARK: Footer
-->
<div class="container">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<a href="#top" id="name"
class="navbar-brand d-flex align-items-center link-body-emphasis text-body-secondary text-decoration-none">
<img src="./assets/logos/bash.png" alt="Bash Logo" class="bi me-2 neumorphicIMG" height="32" />
<span>Gordon Ng</span>
</a>
<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li class="ms-3">
<a class="text-body-secondary link-body-emphasis" href="https://www.linkedin.com/in/gordonng03/"
target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
class="bi bi-linkedin neumorphicButton" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z" />
</svg></a>
</li>
<li class="ms-3">
<a class="text-body-secondary link-body-emphasis" href="https://github.com/SoloUnity"
target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-github neumorphicIMG" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8" />
</svg></a>
</li>
<li class="ms-3">
<a class="text-body-secondary link-body-emphasis" href="mailto:[email protected]"
target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-envelope-fill neumorphicIMG" viewBox="0 0 16 16">
<path
d="M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z" />
</svg></a>
</li>
</ul>
</footer>
</div>
<!--
MARK: Modals
-->
<div class="modal fade" id="vscModal" tabindex="-1" aria-labelledby="vscModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl modal-fullscreen-md-down">
<div class="modal-content rounded-4 px-5 py-5 glass">
<div class="modal-header d-flex justify-content-between align-items-start">
<h3 class="mb-4 display-6 lh-1 fw-bold">Valorant Store Checker</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body px-0">
<h3 class="mb-0 fs-4 text-body-emphasis pb-2">Description</h3>
<p>
VSC (Valorant Store Tracker) was an open source iOS app that
allows you to track your store and preview your skins from the game
<a href="https://playvalorant.com" class="text-decoration-none richLink fw-bold" target="_blank"
style="white-space: nowrap;">Valorant</a>
. It allowed
for easy on the go access to your otherwise hard to access skin
shop, a place to easily preview before buying, and an easy way to
see all the content in the game. The application featured a modern
UI design, implemented the MVVM architecture as well as async
technologies.
<br /><br />
VSC had a lifespan of a little under a year, amassing over
<span class="fw-bold">350,000 downloads</span> and
<span class="fw-bold">50,000 active users</span>. Towards the end
of its lifespan, Riot Games and I came to a mutual agreement to
take down the application due a conflict of interest with the
game's official store. This application was a great learning
experience and serves as the one of the cornerstones for my
experience in iOS development.
</p>
<div class="my-3 d-flex justify-content-between align-items-center flex-wrap">
<div>
<ul class="d-flex align-items-center list-unstyled mb-0 flex-wrap">
<li class="me-3 d-flex align-items-center">
<img src="./assets/logos/swift.png" alt="Swift" height="24" class="me-2" />
<strong>Swift</strong>
</li>
<li class="me-3 d-flex align-items-center">
<img src="./assets/logos/swiftui.png" alt="SwiftUI" height="24" class="me-2" />
<strong>SwiftUI</strong>
</li>
</ul>
</div>
<a href="https://github.com/SoloUnity/valorantstorechecker-iOS" target="_blank"
class="btn btn-dark neumorphicButton my-1">
<div style="display: flex; cursor: pointer">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8">
</path>
</svg>
<span class="ms-2">GitHub</span>
</div>
</a>
</div>
<div class="scrollport" id="vscScrollport">
<img class="vscImage neumorphicButton" src="./assets/projects/ValorantStoreChecker/1.png"
loading="lazy" />
<img class="vscImage neumorphicButton" src="./assets/projects/ValorantStoreChecker/2.png"
loading="lazy" />
<img class="vscImage neumorphicButton" src="./assets/projects/ValorantStoreChecker/3.png"
loading="lazy" />
<img class="vscImage neumorphicButton" src="./assets/projects/ValorantStoreChecker/4.png"
loading="lazy" />
<img class="vscImage neumorphicButton" src="./assets/projects/ValorantStoreChecker/5.png"
loading="lazy" />
<img class="vscImage neumorphicButton" src="./assets/projects/ValorantStoreChecker/6.png"
loading="lazy" />
<img class="vscImage neumorphicButton" src="./assets/projects/ValorantStoreChecker/7.png"
loading="lazy" />
</div>
<div class="d-flex justify-content-end mt-3 position-relative">
<button type="button" class="btn btn-light rounded-circle neumorphicButton me-2 p-2 lh-1 left2"
style="width: 35px; height: 35px;">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-chevron-left faded" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0"
stroke="currentColor" stroke-width="1.5" />
</svg>
</button>
<button type="button" class="btn btn-light rounded-circle neumorphicButton p-2 lh-1 right2"
style="width: 35px; height: 35px;">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-chevron-right faded" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"
stroke="currentColor" stroke-width="1.5" />
</svg>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="aiagentModal" tabindex="-1" aria-labelledby="aiagentModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl modal-fullscreen-md-down">
<div class="modal-content rounded-4 px-5 py-5 glass">
<div class="modal-header d-flex justify-content-between align-items-start">
<h3 class="mb-4 display-6 lh-1 fw-bold">AI Game Agent</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"
onclick="pauseAllVideos()"></button>
</div>
<div class="modal-body px-0">
<h3 class="mb-0 fs-4 text-body-emphasis pb-2">Description</h3>
<p>
AI Game Agent is my deepest foray into AI, a project undertaken in the class
<a href="https://www.mcgill.ca/study/2024-2025/courses/comp-424"
class="text-decoration-none richLink fw-bold" target="_blank"
style="white-space: nowrap;">COMP 424</a>
Artificial Intelligence. It is an advanced AI
developed for a strategic two-player board game. In this game,
players move on a grid and place barriers to control space.
The goal of the game is to wall off a maximum area of the board, with each tile counting as a
point.
This
game agent achieved a
<span class="fw-bold">90th percentile</span> score in a round
robin tournament against other agents designed by my peers. AI Game
Agent uses sophisticated game theory algorithms and heuristics to
make intelligent decisions. These include:
</p>
<ul>
<li>Alpha-beta pruning with a transposition table</li>
<li>Iterative deepening search strategies</li>
<li>
Genetic algorithm with crossover and mutation to train heuristic
weights
</li>
</ul>
<p>
These methods enable efficient exploration of possible moves,
optimizing decisions within limited time frames. Custom heuristic
functions assess the game state from various strategic
perspectives such as expansion potential, aggression, positional
advantage, and barrier extension. These heuristics are weighted
and combined to form a comprehensive evaluation of each move,
making AI Game Agent a competitive and adaptable AI for grid-based
board games. The genetic algorithm optimizes the heuristic weights
of AI Game Agent. Key features include:
</p>
<ul>
<li>
A robust evolutionary approach fine-tuning decision-making
against various enemy strategies
</li>
<li>
Customizable parameters including population size, mutation and
crossover rates, and number of weights
</li>
<li>
Fitness evaluation based on performance against diverse enemy
agents
</li>
<li>
Evolutionary operations utilizing two-point crossover, Gaussian
mutation, and tournament selection
</li>
<li>
Diversity maintenance by periodically reintroducing successful
individuals to the population
</li>
<li>
Detailed logging to track best weights and win percentages
against opponents for each generation
</li>
</ul>
<div class="my-3 d-flex justify-content-between align-items-center flex-wrap">
<ul class="d-flex align-items-center list-unstyled mb-0 flex-wrap">
<li class="me-3 d-flex align-items-center">
<img src="./assets/logos/python.png" alt="Python" height="24" class="me-2" />
<strong>Python</strong>
</li>
</ul>
<a href="https://github.com/SoloUnity/colosseum-survival-ai" target="_blank"
class="btn btn-dark neumorphicButton my-1">
<div style="display: flex; cursor: pointer">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8">
</path>
</svg>
<span class="ms-2">GitHub</span>
</div>
</a>
</div>
<video controls width="100%" class="rounded-4 neumorphicButton">
<source src="./assets/projects/AIAgent/AIAgent.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
</div>
<div class="modal fade" id="codevaultModal" tabindex="-1" aria-labelledby="codevaultModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl modal-fullscreen-md-down">
<div class="modal-content rounded-4 px-5 py-5 glass">
<div class="modal-header d-flex justify-content-between align-items-start">
<h3 class="mb-4 display-6 lh-1 fw-bold">CodeVault</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"
onclick="pauseAllVideos()"></button>
</div>
<div class="modal-body px-0">
<h3 class="mb-0 fs-4 text-body-emphasis pb-2">Description</h3>
<p>
CodeVault is a tool developed for the CSE challenge at the
<a href="https://conuhacks.io" class="text-decoration-none richLink fw-bold" target="_blank"
style="white-space: nowrap;">ConUHacks</a>
<strong> 2023 hackathon</strong>, featuring a React web
app and an offline SwiftUI mobile app. It offers the latest
password generation and verification tools, providing users with
the ability to quickly create strong passwords and check their
strength. Additionally, CodeVault offers valuable insights into
cybersecurity, helping users make informed decisions about their
digital security. <br><br>
Our team embarked on this project to explore cybersecurity in
software development. The web app was built using the React JS
library, HTML, CSS, and JavaScript, while the mobile app was
developed with Swift and SwiftUI. Despite facing challenges with
React hooks and CSS design, the team successfully deployed both
apps, achieving most of our initial goals. Through this project,
we enhanced our React.js skills and improved our data parsing and
analysis capabilities.
</p>
<div class="my-3 d-flex justify-content-between align-items-center flex-wrap">
<ul class="d-flex align-items-center list-unstyled mb-0 flex-wrap">
<li class="me-3 d-flex align-items-center">
<img src="./assets/logos/swift.png" alt="Swift" height="24" class="me-2" />
<strong>Swift</strong>
</li>
<li class="me-3 d-flex align-items-center">
<img src="./assets/logos/swiftui.png" alt="SwiftUI" height="24" class="me-2" />
<strong>SwiftUI</strong>
</li>
<li class="me-3 d-flex align-items-center">
<img src="./assets/logos/reactjs.png" alt="ReactJS" height="24" class="me-2" />
<strong>React.js</strong>
</li>
</ul>
<a href="https://github.com/CX899/CodeVault" target="_blank"
class="btn btn-dark neumorphicButton my-1">
<div style="display: flex; cursor: pointer">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8">
</path>
</svg>
<span class="ms-2">GitHub</span>
</div>
</a>
</div>
<video controls width="100%" class="rounded-4 neumorphicButton">
<source src="./assets/projects/CodeVault/CodeVault.mp4" type="video/mp4" />
</video>
</div>
</div>