-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1634 lines (1409 loc) · 83.6 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.0">
<!--==================== UNICONS ====================-->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<!--==================== SWIPER CSS ====================-->
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css">
<!--==================== CSS ====================-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Reginald Tan</title>
<link rel="icon" href="assets/img/logo.png">
</head>
<body>
<!--==================== HEADER ====================-->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">Reginald</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list grid">
<li class="nav__item">
<a href="#home" class="nav__link active-link">
<p class="nav__text">Home</p>
</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">
<p class="nav__text">About</p>
</a>
</li>
<li class="nav__item">
<a href="#skills" class="nav__link">
<p class="nav__text">Skills</p>
</a>
</li>
<li class="nav__item">
<a href="#portfolio" class="nav__link">
<p class="nav__text">Projects</p>
</a>
</li>
<li class="nav__item">
<a href="#timelines" class="nav__link">
<p class="nav__text">Timelines </p>
</a>
</li>
<li class="nav__item">
<a href="#testimonial" class="nav__link">
<p class="nav__text">Testimonials</p>
</a>
</li>
</ul>
<i class="uil uil-times nav__close" id="nav-close"></i>
</div>
<div class="nav__btns">
<!-- Theme change button -->
<i class="uil uil-moon change-theme" id="theme-button"></i>
<div class="nav__toggle" id="nav-toggle">
<i class="uil uil-apps nav__btn"></i>
</div>
</div>
</nav>
</header>
<!--==================== MAIN ====================-->
<main class="main">
<!--==================== Home ====================-->
<section class="home section" id="home">
<div class="home__container container grid">
<div class="home__content grid">
<div class="home__social">
<a href="https://www.linkedin.com/in/reginald-tan-817044194/" target="_blank" class="home__social-icon">
<i class="uil uil-linkedin-alt"></i>
</a>
<a href="https://github.com/klystrn" target="_blank" class="home__social-icon">
<i class="uil uil-github-alt"></i>
</a>
<a href="https://instagram.com/donkeyminutes/" target="_blank" class="home__social-icon">
<i class="uil uil-instagram"></i>
</a>
</div>
<div class="home__img">
<svg class="home__blob" viewBox="0 0 200 187" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<mask id="mask0" mask-type="alpha">
<path d="M190.312 36.4879C206.582 62.1187 201.309 102.826 182.328 134.186C163.346 165.547
130.807 187.559 100.226 186.353C69.6454 185.297 41.0228 161.023 21.7403 129.362C2.45775
97.8511 -7.48481 59.1033 6.67581 34.5279C20.9871 10.1032 59.7028 -0.149132 97.9666
0.00163737C136.23 0.303176 174.193 10.857 190.312 36.4879Z"/>
</mask>
<g mask="url(#mask0)">
<path d="M190.312 36.4879C206.582 62.1187 201.309 102.826 182.328 134.186C163.346
165.547 130.807 187.559 100.226 186.353C69.6454 185.297 41.0228 161.023 21.7403
129.362C2.45775 97.8511 -7.48481 59.1033 6.67581 34.5279C20.9871 10.1032 59.7028
-0.149132 97.9666 0.00163737C136.23 0.303176 174.193 10.857 190.312 36.4879Z"/>
<image class="home__blob-img" x='-60' y='-140' xlink:href="assets/img/perfil.png"/>
</g>
</svg>
</div>
<div class="home__data">
<h1 class="home__title1">Hello,</h1>
<h1 class="home__title2">I am Reginald</h1>
<h3 class="home__subtitle">Student, Coder, Designer</h3>
<p class="home__description1"><strong><i>Open-minded</i></strong> student learning IT in Ngee Ann Polytechnic</p>
<p class="home__description2"><strong><i>Critical-thinker</i></strong> with a passion for programming</p>
<p class="home__description3"><strong><i>Creative-type</i></strong> with a focus on user-centered design</p>
</div>
</div>
<div class="home__buttons">
<a href="https://drive.google.com/drive/folders/1YjodlkFAfC1sUJMeW_hYlMkWEEEbbt4J?usp=sharing" class="button button--flex" target=”blank">
Download <br> Certificates<i class="uil uil-download-alt button__icon"></i>
</a>
<a href="assets/pdf/Reginald Tan's Resume.pdf" class="button button--flex2" target=”blank">
Download Resume<i class="uil uil-download-alt button__icon"></i>
</a>
</div>
</div>
</section>
<!--==================== About ====================-->
<section class="about section" id="about">
<h2 class="section__title">About Me</h2>
<span class="section__subtitle">A Short Introduction of Myself</span>
<div class="about__container container grid">
<div class="about__images-grid">
<div class="about__images-grid-1"><img src="assets/img/picture2.jpg" alt="" class="about__img1"></div>
<div class="about__images-grid-2"><img src="assets/img/picture3.JPG" alt="" class="about__img2"></div>
</div>
<div class="about__data">
<p class="about__description1">
Graduated from SST in 2021, I specialised in Computing, where I was introduced to skills & concepts like
Dynamic Programming in Python, Logic Circuits, & Data Validation. Post-graduation, I have continued to
be a part of the SST family, giving talks to new cohorts & being a panelist for multiple open houses.
</p>
<p class="about__description2">
During my time studying IT, I have been introduced to many skills & concepts, namely
Object-Oriented Programming, ASP.NET Core, Data Structures & Algorithms, Databases & UI/UX design.
I have also been able to develop my passions in Full-Stack Development, UI/UX design, and OOP using
languages such as Python, C#, & C++.
</p>
<p class="about__description3">
With a passion for technology, I am also the head secretary in Overflow, a Student-Initiated-Group
which focuses on teaching current technologies and advanced programming. In my time as an EXCO member,
I have taught workshops & bootcamps on DSA, Web Dev, & Vue.js, on top of providing tech support for
other workshops, like Building A Discord Bot & OOP in Python.
</p>
<div class="about__info">
<div>
<span class="about__info-title">07 </span>
<span class="about__info-name">IT-related <br>Competitions</span>
</div>
<div>
<span class="about__info-title">11 </span>
<span class="about__info-name">IT-focused <br>Projects</span>
</div>
<div>
<span class="about__info-title">16 </span>
<span class="about__info-name">ICT Workshops <br> Hosted</span>
</div>
</div>
</div>
</div>
</section>
<!--==================== Skills ====================-->
<section class="skills section" id="skills">
<h2 class="section__title">Skills</h2>
<span class="section__subtitle">My Skills, Proficiencies, & Qualities</span>
<div class="skills__container container grid">
<div>
<!--==================== SKILLS 1 ====================-->
<div class="skills__content skills__close">
<div class="skills__header">
<i class="uil uil-desktop skills__icon"></i>
<div>
<h1 class="skills__title1">Languages & Frameworks</h1>
<span class="skills__subtitle">5 Years of Experience</span>
</div>
<i class="uil uil-angle-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Python</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>C#</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>C++</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>JavaScript</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>HTML & CSS</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>SQL</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>ASP.NET</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Vue.js</h3>
</div>
</div>
</div>
</div>
<!--==================== SKILLS 2 ====================-->
<div class="skills__content skills__close">
<div class="skills__header">
<i class="uil uil-trophy skills__icon"></i>
<div>
<h1 class="skills__title3">Interests & Passions</h1>
<span class="skills__subtitle">Where I Want to Grow</span>
</div>
<i class="uil uil-angle-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Data Structures & Algorithms</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>UI/UX Design</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Full-Stack Development</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>FinTech</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Object-Oriented Programming</h3>
</div>
</div>
</div>
</div>
</div>
<div>
<!--==================== SKILLS 3 ====================-->
<div class="skills__content skills__close">
<div class="skills__header">
<i class="uil uil-users-alt skills__icon"></i>
<div>
<h1 class="skills__title2">Softwares & Technologies</h1>
<span class="skills__subtitle">Familiar Development Tools</span>
</div>
<i class="uil uil-angle-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Git & GitHub</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Figma</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>MapBox</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>JetBrains WebStorm & PyCharm</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Microsoft Visual Studio & VS Code</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Microsoft SQL Server Management Studio 18</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Adobe XD, PhotoShop & Illustrator</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Google SketchUp</h3>
</div>
</div>
</div>
</div>
<!--==================== SKILLS 4 ====================-->
<div class="skills__content skills__close">
<div class="skills__header">
<i class="uil uil-accessible-icon-alt skills__icon"></i>
<div>
<h1 class="skills__title2">Values & Qualities</h1>
<span class="skills__subtitle">My Personal Traits & Beliefs</span>
</div>
<i class="uil uil-angle-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Highly-motivated</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Open-minded & keen-to-learn</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Adaptable & a quick-learner</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Detail-oriented</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name"> <i class="uil uil-circle services__modal-icon"></i>Communicative & Collaborative</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==================== Projects ====================-->
<section class="portfolio section" id="portfolio">
<h2 class="section__title">Projects</h2>
<span class="section__subtitle">The Main Projects I've Worked On</span>
<div class="portfolio__container container swiper-container">
<div class="swiper-wrapper">
<!--==================== The Tea Shop ====================-->
<div class="portfolio__content grid swiper-slide">
<img src="assets/img/TheTeaShop.png" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">The Tea Shop</h3>
<p class="portfolio__description">In 2022, I had the opportunity to build a website for an online tea business. This was exciting as it was the first proper website I built from scratch and I learnt to implement technologies like Bootstrap.</p>
<a href="https://klystrn.github.io/TheTeaShop/" target="_blank" class="button button--flex button--small portfolio__button">
TheTeaShop
<i class="uil uil-arrow-right button__icon"></i>
</a>
</div>
</div>
<!--==================== Panel Party ====================-->
<div class="portfolio__content grid swiper-slide">
<img src="assets/img/PanelParty.png" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">Panel Party</h3>
<p class="portfolio__description">
Panel Party is a fun & interactive game my team & I developed
for NP ICT Open House 2023. The main objective of the game is to capture as many tiles as
possible by moving over them, without letting them be re-captured by your opponent before
the timer runs out.
<br><br>
For this game, I mainly worked on sprite movement and collision detection.
</p>
</div>
</div>
<!--==================== Shipee ====================-->
<div class="portfolio__content grid swiper-slide">
<img src="assets/img/Shipee.png" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">Shipee</h3>
<p class="portfolio__description">
During COVID-19, many businesses pivoted by shipping their products D2C. Due to the sheer
number of shipping services, online shoppers have trouble keeping track of all their shipments.
<br><br>
This gave rise to AfterShip, a delivery tracking tool that reads a user's email and
automatically identifies the parcels they have being delivered.
<br><br>
Shipee is a re-branding, re-purposing, & re-packaging of AfterShip, focusing on
user-satisfaction, great customer support, & lightning-fast usability.
</p>
<a href="https://www.canva.com/design/DAFjPnmQx_U/qcxuOR6clE94do4eqLwqyw/edit?utm_content=DAFjPnmQx_U&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton" target="_blank" class="button button--flex button--small portfolio__button">
Proposal & Prototype
<i class="uil uil-arrow-right button__icon"></i>
</a>
</div>
</div>
<!--==================== FitVenture ====================-->
<div class="portfolio__content grid swiper-slide">
<img src="assets/img/FitVenture.png" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">FitVenture & ImmersiveGym</h3>
<p class="portfolio__description">
FitVenture is a mobile app able to track health-related data & set goals for the user to
lead a healthier lifestyle. Users can also meal plan & compete in friendly challenges.
<br><br>
The Immersive Gym is a physical kiosk that features a lifesize 180° screen for users to
enjoy virtual environments.
<br><br>
This project showcases my understanding of UX design, prototyping & usability testing.
</p>
<a href="https://www.canva.com/design/DAFsOZZ5tYI/LVT0_v4-iFvTTMhsJmM6OQ/edit?utm_content=DAFsOZZ5tYI&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton" target="_blank" class="button button--flex button--small portfolio__button">
Proposal & Prototype
<i class="uil uil-arrow-right button__icon"></i>
</a>
</div>
</div>
<!--==================== Sorts ====================-->
<div class="portfolio__content grid swiper-slide">
<img src="assets/img/sorts.png" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">Sorts</h3>
<p class="portfolio__description">Sorts is an iOS application that helps educators group students while taking into consideration the students strengths levels and maximum group sizes. Sorts was developed by Pollo, where I was the lead programmer on this project. Sorts was developed because educators in SST said that grouping took too long and it was too complex to consider everyone's strengths levels</p>
</div>
</div>
<!--==================== Online Courier System ====================-->
<div class="portfolio__content grid swiper-slide">
<img src="assets/img/OnlineCourierSystem.png" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">Online Courier System</h3>
<p class="portfolio__description">
To showcase my understanding of web app development, I built an online courier management system
similar to NinjaVan & SingPost using ASP.NET Core MVC. Users are able to log in as a customer
or staff member & view the respective features for their use.
<br><br>
This project pushed my personal capabilities and enhanced my skills in C#, JavaScript, & databases.
</p>
</div>
</div>
<!--==================== Tower Defence Game ====================-->
<div class="portfolio__content grid swiper-slide">
<img src="assets/img/TowerDefenceGame.png" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">Tower Defence Game</h3>
<p class="portfolio__description">Using Python, I built a text-based unit defence game (similar to Plants VS Zombies). In this project, I acquired experience in Python, PyGame, game design & logic.</p>
</div>
</div>
<!--==================== locationX ====================-->
<div class="portfolio__content grid swiper-slide">
<img src="assets/img/locationX.png" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">locationX</h3>
<p class="portfolio__description">locationX is a program that provides the schedule of the National School Games in a more systematic and editable format. Since the current NSG is manually created, 22.23.24 strived to create a more systematic and structured method to do so. The editor also allows the user to edit match data with ease</p>
<a href="https://sites.google.com/sst.edu.sg/cp-coursework-gallery/2021/locationx?authuser=0" target="_blank" class="button button--flex button--small portfolio__button">
locationX Gallery
<i class="uil uil-arrow-right button__icon"></i>
</a>
</div>
</div>
<!--==================== Portfolio Website ====================-->
<div class="portfolio__content grid swiper-slide">
<img src="assets/img/personalPortfolioWebsite.png" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">Personal Website</h3>
<p class="portfolio__description">A personal portfolio website developed using HTML, CSS, and JavaScript. To create this, I followed a tutorial and researched from different sources on how to create the components I wanted. This allowed me to further my HTML, CSS, and JavaScript skills as well as strengthened my resolve to go into IT</p>
<a href="#" class="button button--flex button--small portfolio__button">
Personal Website
<i class="uil uil-arrow-right button__icon"></i>
</a>
</div>
</div>
</div>
<!-- Add Arrows -->
<div class="swiper-button-next">
<i class="uil uil-angle-right-b swiper-portfolio-icon"></i>
</div>
<div class="swiper-button-prev">
<i class="uil uil-angle-left-b swiper-portfolio-icon"></i>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
</div>
</section>
<!--==================== Timelines ====================-->
<section class="qualification section" id="timelines">
<h2 class="section__title">Timelines</h2>
<span class="section__subtitle">The Various Journeys In My Life</span>
<div class="qualification__container container">
<div class="qualification__tabs">
<div class="qualification__button button--flex qualification__active" data-target='#education'>
<i class="uil uil-graduation-cap qualification__icon"></i>
Education
</div>
<div class="qualification__button button--flex" data-target="#projects">
<i class="uil uil-keyboard qualification__icon"></i>
Projects
</div>
<div class="qualification__button button--flex" data-target="#experiences">
<i class="uil uil-comment-alt-edit qualification__icon"></i>
Experiences
</div>
<div class="qualification__button button--flex" data-target="#leadership">
<i class="uil uil-user-check qualification__icon"></i>
Leadership
</div>
<div class="qualification__button button--flex" data-target="#awards">
<i class="uil uil-medal qualification__icon"></i>
Awards
</div>
</div>
<div class="qualification__sections">
<!--==================== QUALIFICATION CONTENT 1 ====================-->
<div class="qualification__content qualification__active" data-content id="education">
<!--==================== QUALIFICATION 1 ====================-->
<div class="qualification__data">
<div>
<h3 class="qualification__title">Overflow Workshop: "Web Develpoment using Figma & Front-End Technologies"</h3>
<span class="qualification__subtitle">
As the overall-in-charge of this workshop, I had the chance to teach students how to
prototype a website using Figma & how to utilise Figma's developer mode to convert their
prototype into a functional website.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
October 2023
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>
<!--==================== QUALIFICATION 2 ====================-->
<div class="qualification__data">
<div></div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
<div>
<h3 class="qualification__title">Certification: "Programming Foundations: Data Structures"</h3>
<span class="qualification__subtitle">
To grow my knowledge on data structures, I enrolled in an online LinkedIn Learning course.
From this course I learned how to convert my C++ data structures knowledge into functional
Python in topics like dictionaries, stacks & queues.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
October 2023
</div>
</div>
</div>
<!--==================== QUALIFICATION 3 ====================-->
<div class="qualification__data">
<div>
<h3 class="qualification__title">Electives: "Customer Experience Management" & "eCommerce Development Applications"</h3>
<span class="qualification__subtitle">
In the October 2023 semester, I chose to experience a different side of IT, exploring
the eCommerce side of IT, covering useful technologies such as Salesforce, PHP, & MySQL.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
October 2023
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>
<!--==================== QUALIFICATION 4 ====================-->
<div class="qualification__data">
<div></div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
<div>
<h3 class="qualification__title">Overflow Bootcamp: "Data Structures & Algorithms in Python"</h3>
<span class="qualification__subtitle">
As a holiday event, Overflow organised a 3-day bootcamp to teach students DSA,
giving me the opportunity to share knowledge on topics like Big O Notation,
Stacks, Queues, & Trees, etc.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
September 2023
</div>
</div>
</div>
<!--==================== QUALIFICATION 5 ====================-->
<div class="qualification__data">
<div>
<h3 class="qualification__title">Certification: "Learning ASP.NET Core MVC"</h3>
<span class="qualification__subtitle">
To get a better understanding of ASP.NET Core MVC, I enrolled in a LinkedIn Learning course
that taught me more about the web development framework, including MVC patterns, Razor Pages,
Web APIs, request handling with controllers, routing, etc.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
June 2023
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>
<!--==================== QUALIFICATION 6 ====================-->
<div class="qualification__data">
<div></div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
<div>
<h3 class="qualification__title">Overflow Workshop: "Building A Discord Bot"</h3>
<span class="qualification__subtitle">
As one of Overflow's first workshops of the year, I acted as technical support for students
as we taught them how to build a discord bot, introducing concepts like event & command handling,
interacting with APIs, etc.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
May 2023
</div>
</div>
</div>
<!--==================== QUALIFICATION 7 ====================-->
<div class="qualification__data">
<div>
<h3 class="qualification__title">Certification: "Learning C++"</h3>
<span class="qualification__subtitle">
In my data structures & algorithms elective module, students were required to code in C++.
Hence, I decided to self-learn C++ on top of what was taught in lessons as I wanted to have
a higher proficiency in it.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
May 2023
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>
<!--==================== QUALIFICATION 8 ====================-->
<div class="qualification__data">
<div></div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
<div>
<h3 class="qualification__title">Electives: "Data Structures & Algorithms" & "Designing User Experiences"</h3>
<span class="qualification__subtitle">
In the April 2023 semester, I wanted to grow my skills in a few areas of intererst, mainly
DSA & UI/UX design, and discovered more about user-centric design & how to optimise programs
using algorithms & data structures that suit the functional requirements.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
April 2023
</div>
</div>
</div>
<!--==================== QUALIFICATION 9 ====================-->
<div class="qualification__data">
<div>
<h3 class="qualification__title">Competition: "Poly-ITE Informatics Olympiad"</h3>
<span class="qualification__subtitle">
PIOI is an annual informatics olympiad that follows the same rules & scoring system as the
International Olympiad for Informatics. Over the course of the 4 day event, I participated
in DSA workshops & a competition where I received the 8th highest score out of around 50
students.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
December 2022
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>
<!--==================== QUALIFICATION 10 ====================-->
<div class="qualification__data">
<div></div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
<div>
<h3 class="qualification__title">Overflow Workshop: "Vue.js"</h3>
<span class="qualification__subtitle">
As part of the Overflow workgroup, I was given the opportunity to share about a tech
topic of my interest. From there, I prepared materials & taught 2 workshops on
Vue & DaisyUI to ICT students. This was my first experience as part of the organising
committee of a workshop & taught me how to provide proper support for the students.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
April 2023
</div>
</div>
</div>
<!--==================== QUALIFICATION 11 ====================-->
<div class="qualification__data">
<div>
<h3 class="qualification__title">Certification: "Fundamentals of Dynamic Programming"</h3>
<span class="qualification__subtitle">
After graduating from SST, I decided to improve my knowledge on dynamic programming,
which was briefly touched on in Computing+. In this course I learnt more about
common dynamic programming problems and discovered the difference between recursive & dynamic programming.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
September 2021
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>
<!--==================== QUALIFICATION 12 ====================-->
<div class="qualification__data">
<div></div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
<div>
<h3 class="qualification__title">Certification: "Advanced Python" & "Python: Recursion"</h3>
<span class="qualification__subtitle">
To further my Python knowledge, I decided to enrol in two Python courses that taught me
more about OOP & advanced Python functions.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
July 2021
</div>
</div>
</div>
<!--==================== QUALIFICATION 13 ====================-->
<div class="qualification__data">
<div>
<h3 class="qualification__title">Competition: "Design Thinking With Robotics & Computational Thinking International Competition (DrCT) 2021 "</h3>
<span class="qualification__subtitle">
In 2021, I participated in DrCT and received a Bronze Award after 2 rounds of competition,
solving questions related to algorithms, dynamic & recursive programming, and data structures like trees.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
April 2021
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>
<!--==================== QUALIFICATION 14 ====================-->
<div class="qualification__data">
<div></div>
<div>
<span class="qualification__rounder"></span>
</div>
<div>
<h3 class="qualification__title">Certification: "JavaScript"</h3>
<span class="qualification__subtitle">
During Circuit Breaker, I decided to enrol in an online CodeCademy course to learn a new
programming language in addition to Python.
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
April 2023
</div>
</div>
</div>
</div>
<!--==================== QUALIFICATION CONTENT 2 ====================-->
<div class="qualification__content" data-content id="projects">
<!--==================== QUALIFICATION 1 ====================-->
<div class="qualification__data">
<div>
<h3 class="qualification__title">Panel Party</h3>
<span class="qualification__subtitle">
Panel Party is a fun & interactive game my team & I developed for NP ICT Open House 2023.
The main objective of the game is to capture as many tiles as possible by moving over them,
without letting them be re-captured by your opponent before the timer runs out.
<br><br>
Python, Pygame
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
2023
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>
<!--==================== QUALIFICATION 2 ====================-->
<div class="qualification__data">
<div></div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
<div>
<h3 class="qualification__title">Food Ordering System</h3>
<span class="qualification__subtitle">
Using C++, I implemented data structures & algorithms with OOP to develop a text-based
food ordering system for my final assignment in DSA.
<br><br>
C++, Data Structures & Algorithms, OOP
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
2023
</div>
</div>
</div>
<!--==================== QUALIFICATION 3 ====================-->
<div class="qualification__data">
<div>
<h3 class="qualification__title">Online Courier Management System</h3>
<span class="qualification__subtitle">
To showcase my understanding of web app development, I built an online courier management
system similar to NinjaVan & SingPost using ASP.NET Core MVC. Users are able to log in
as a customer or staff member & view the respective features for their use.
<br><br>
ASP.NET Core, C#, HTML & CSS, JavaScript, SQL
</span>
<div class="qualification__calendar">
<i class="uil uil-calendar-alt"></i>
2023
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>