-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1282 lines (1150 loc) · 66.4 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 content="width=device-width, initial-scale=1.0" name="viewport">
<title>Goh Ee Sheng</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/icon.png" rel="icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: Personal - v4.3.0
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<div class='light x1'></div>
<div class='light x2'></div>
<div class='light x3'></div>
<div class='light x4'></div>
<div class='light x5'></div>
<div class='light x6'></div>
<div class='light x7'></div>
<div class='light x8'></div>
<div class='light x9'></div>
<div class='light x10'></div>
<div class='light x11'></div>
<!-- ======= Header ======= -->
<header id="header">
<div class="container">
<h1><a href="index.html">Goh Ee Sheng</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="mr-auto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a> -->
<h2>I'm a passionate <span class="typed" data-typed-items="Programmer, Smart Contract Auditor, Entrepreneur Web Developer, Researcher"></span> from Singapore</h2>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link active" href="#header">Home</a></li>
<li><a class="nav-link" href="#about">About</a></li>
<li><a class="nav-link" href="#services">Certificates & Awards</a></li>
<li><a class="nav-link" href="#projects">Portfolio</a></li>
<li><a class="nav-link" href="https://drive.google.com/file/d/1QEcuS1zkoSpjgj7A3yHTwYFBPFpkmrwC/view?usp=sharing" target="_blank">Curriculum Vitae</a></li>
<li><a class="nav-link" href="mailto:[email protected]">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<div class="social-links">
<a href="https://github.com/goheesheng" target="_blank" class="twitter"><i class="bi bi-github"></i></a>
<a href="https://www.instagram.com/goheesheng" target="_blank" class="instagram"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/goheesheng/" target="_blank" class="linkedin"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</header><!-- End Header -->
<!-- ======= About Section ======= -->
<section id="about" class="about">
<!-- ======= About Me ======= -->
<div class="about-me container">
<div class="section-title">
<h2>About</h2>
<p>Learn more about me</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/me.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Goh Ee Sheng</h3>
<p class="fst-italic">
Cybersecurity Graduate From Nanyang Polytechnic
</p>
<div class="row">
<div class="col-lg-12">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Education:</strong> <span>Diploma in Cybersecurity and Digital Forensics</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Email:</strong> <span>[email protected]</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>City:</strong> <span>Singapore</span></li>
</ul>
</div>
</div>
<p>
Fresh graduate with a strong interest in cybersecurity.
With my strong interest in Cybersecurity, I wish to be part of the team in this crucial role for protecting the cyberspace.
<br>There is an endless learning journey for this field, and I am gears for upgrading my knowledge and skills at any given time frame.
</div>
</div>
</div><!-- End About Me -->
<!-- ======= Skills ======= -->
<div class="skills container">
<div class="section-title">
<h2>Skills</h2>
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill">HTML & CSS<i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Web 3 Development <i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">JavaScript <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Penetration Testing<i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">Python <i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Smart Contract Audit<i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Operating Systems Configuration <i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Network Configuration <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div><!-- End Skills -->
<!-- ======= Interests ======= -->
<div class="interests container">
<div class="section-title">
<h2>Interests</h2>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 mt-4 mt-md-0 mb-4">
<div class="icon-box">
<i class="ri-book-2-fill" style="color: #ffbb2c;"></i>
<h3>Studying</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0 mb-4">
<div class="icon-box">
<i class="ri-code-line" style="color: #133de2;"></i>
<h3>Coding</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0 mb-4">
<div class="icon-box">
<i class="ri-flag-fill" style="color: #d82c0e;"></i>
<h3>Capture-The-Flag</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0 mb-4">
<div class="icon-box">
<i class="ri-tools-fill" style="color: #c46dec;"></i>
<h3>Pentesting</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0 mb-4">
<div class="icon-box">
<i class="ri-run-line" style="color: #e361ff;"></i>
<h3>Running</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0 mb-4">
<div class="icon-box">
<i class="ri-flask-fill" style="color: #47aeff;"></i>
<h3>Experimenting</h3>
</div>
</div>
</div>
</div><!-- End Interests -->
<!-- ======= Testimonials ======= -->
<div class="testimonials container">
<div class="section-title">
<h2>Testimonials</h2>
</div>
<div class="testimonials-slider swiper-container" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I had the
privilege of seeing Goh's tremendous academic growth and development as a former
student.
<br>
<br>
He has consistently exhibited a strong work ethic and a willingness to go above and beyond
what is expected. He is an eager learner who has taken it upon himself to learn about
cutting-edge technologies like Web3 programming and deep learning.
</br>
<br>
He has
demonstrated his technical proficiency, and I've been amazed by his independence in
picking up new skills.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/philip.jpg" class="testimonial-img" alt="">
<h3>Philip Kwa</h3>
<h4>ISACA, Operation Director</h4>
<br>
<h4>Tech Talent AssemBly (TTAB), Deputy General Treasurer</h4>
<br>
<h4><a href="https://www.linkedin.com/in/philip-kwa/">https://www.linkedin.com/in/philip-kwa/</a><h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Ee Sheng is a highly motivated intern, a quick learner, and a nice colleague with a solid foundation in tech. I highly recommend him for jobs in the field and am happy to share more information on request.
<br>
<br>
Ee Sheng proved to be an invaluable asset to our team. His ability to swiftly grasp complex concepts and apply them in practical settings was truly impressive. Moreover, Ee Sheng's amiable nature and excellent interpersonal skills made him a pleasure to collaborate with, fostering a positive and productive work environment.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/marius.jpg" class="testimonial-img" alt="">
<h3>Dr. Marius Erdt</h3>
<h4>Dyson, Machine Learning Director</h4>
<br>
<h4>Ex-Deputy Director at Fraunhofer Singapore</h4>
<br>
<br>
<h4><h4><a href="https://www.linkedin.com/in/marius-erdt/">https://www.linkedin.com/in/marius-erdt/</a></h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Ee Sheng is an extraordinarily motivated and efficient person. It was a pleasure to supervise his internship.
He understood and implemented his tasks quickly and provided valuable contributions to our project.
<br>
<br>
He also showed great curiosity and was, considering his career level, surprisingly experienced in software development. Despite that, he is a great colleague and it is nice to work with him. Ee Sheng will be a valuable member in any team.
</br>
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/romandp.jpg" class="testimonial-img" alt="">
<h3>Roman Martel</h3>
<h4>Software Developer, Machine Learning & Data Analytics at KUKA</h4>
<br>
<h4>Ex-Research Engineer at Fraunhofer Singapore</h4>
<br>
<br>
<h4><a href="https://www.linkedin.com/in/roman-martel-9121b7191/">https://www.linkedin.com/in/roman-martel-9121b7191/</a><h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Ee Sheng is a cheerful student who has the ability to balance his good sense of humour with a positive work ethic.
<br>
<br>
I was in charge of him using deep learning
convolutional neural network models for improving the prediction of malware actors.
<br>
<br>
With his determination, he can overcome any obstacle that he may face in the future. With a positive attitude and great enthusiasm, Ee Sheng will be an asset to any organisation he is committed to in the future.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/brandon_ooi.jpeg" class="testimonial-img" alt="">
<h3>Dr. Brandon Ooi</h3>
<h4>Researcher & Lecturer at Nanyang Polytechnic</h4>
<br>
<h4><a href="https://www.linkedin.com/in/brandon-nick-sern-ooi">https://www.linkedin.com/in/brandon-nick-sern-ooi</a><h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Ee Sheng is the class representative of the mentor group that is under my care. He is a friendly, self-confident, and respectful individual.
<br>
<br>
He represented NYP and Singapore in the APAC Cisco NetAcad NetRiders competition, an annual competition organised by Cisco Systems to assess students' networking skills, and won Silver which was given to only the top 10% of the regional participants.
<br>
<br>
I've witnesses his growth in the past 3 years. I look forward to seeing Ee Sheng continue to make a positive contribution to the place he is with through his knowledge, skills and passion.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/nyp.jpeg" class="testimonial-img" alt="">
<h3>Ms Huang Wan Ling</h3>
<h4>Senior Specialist (Cybersecurity) and Senior Lecturer at Nanyang Polytechnic</h4>
<br>
<h4><a href="https://www.linkedin.com/in/wanling-huang-4a35557b/">https://www.linkedin.com/in/wanling-huang-4a35557b/</a><h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
During his mentorship program, I found Mr Goh to be very engaging with effecitve communication skill with well organized thoughts.
<br>
<br>
I have served as a mentor to Ee Sheng in a prestigious mentorship program led by alumni from Harvard Business School, London Business School, and INSEAD.
<br>
<br>
His sharing of his life journey and advice he gave was highly regarded by the group. It was obvious to mentors and mentees that he has leadership qualities,
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/ramlee.jpeg" class="testimonial-img" alt="">
<h3>Ramlee Buang</h3>
<h4>Chairman of 1FSS Shared Services</h4>
<br>
<h4><a href="https://www.linkedin.com/in/ramlee-buang-42b147110/">https://www.linkedin.com/in/ramlee-buang-42b147110/</a><h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Ee Sheng is a highly motivated and driven individual, who consistently demonstrated a strong work ethic and dedication to his studies. Ee Sheng is also a highly communicative and collaborative team player.
<br>
<br>
I have been a mentor to Ee Sheng since 2021 when he put his hand up to participate in a mentorship program led by alumni with the Harvard Business School, London Business School and INSEAD.
<br>
<br>
Ee Sheng's passion for his field is evident in his involvement in industry events and conferences. He is works actively to expand his knowledge and network with other professionals in his field.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/jaz.jpeg" class="testimonial-img" alt="">
<h3>Ms Jaz Athenia chia</h3>
<h4>
PayPal, Strategy and Operations Director, CEO Office, EMEA + APJ</h4>
<br>
<h4>INSEAD Singapore, Entrepreneur in Residence & Business Coach</h4>
<br>
<h4><a href="https://www.linkedin.com/in/jaz-athenia-chua/">https://www.linkedin.com/in/jaz-athenia-chua/</a><h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
My first experience with Ee Sheng’s determination came shortly after starting his internship. He was
tasked to find a zero-day vulnerability in Universal Serial Bus Type-C (USB-C).
<br>
<br>
At that time, Ee Sheng’s
experience with vulnerability research was limited. Still, he worked extra hours to understand the
research, eventually being able to evaluate and propose countermeasures for vulnerabilities.
<br>
<br>
Ee Sheng has also shown dedication and focus in his pursuits. He has consistently sought constructive
feedback to improve his analytical skills, which is an admirable quality in a student and a person.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/csit.jpeg" class="testimonial-img" alt="">
<h3>Ong Zhi Yuan</h3>
<h4>Cybersecurity Analyst/Team Lead at CSIT</h4>
<br>
<h4><a href="https://www.linkedin.com/company/csitsg">https://www.linkedin.com/company/csitsg</a><h4>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
<div class="owl-carousel testimonials-carousel">
</div>
</div><!-- End Testimonials -->
</section><!-- End About Section -->
<!-- ======= Resume Section ======= -->
<!-- <section id="resume" class="resume">
<div class="container">
<div class="section-title">
<h2>Resume</h2>
<p>Check My Resume</p>
</div>
<div class="row">
<div class="col-lg-6">
<h3 class="resume-title">Sumary</h3>
<div class="resume-item pb-0">
<h4>Alice Barkley</h4>
<p><em>Innovative and deadline-driven Graphic Designer with 3+ years of experience designing and developing user-centered digital/print marketing material from initial concept to final, polished deliverable.</em></p>
<p>
<ul>
<li>Portland par 127,Orlando, FL</li>
<li>(123) 456-7891</li>
<li>[email protected]</li>
</ul>
</p>
</div>
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4>Master of Fine Arts & Graphic Design</h4>
<h5>2015 - 2016</h5>
<p><em>Rochester Institute of Technology, Rochester, NY</em></p>
<p>Qui deserunt veniam. Et sed aliquam labore tempore sed quisquam iusto autem sit. Ea vero voluptatum qui ut dignissimos deleniti nerada porti sand markend</p>
</div>
<div class="resume-item">
<h4>Bachelor of Fine Arts & Graphic Design</h4>
<h5>2010 - 2014</h5>
<p><em>Rochester Institute of Technology, Rochester, NY</em></p>
<p>Quia nobis sequi est occaecati aut. Repudiandae et iusto quae reiciendis et quis Eius vel ratione eius unde vitae rerum voluptates asperiores voluptatem Earum molestiae consequatur neque etlon sader mart dila</p>
</div>
</div>
<div class="col-lg-6">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<h4>Senior graphic design specialist</h4>
<h5>2019 - Present</h5>
<p><em>Experion, New York, NY </em></p>
<p>
<ul>
<li>Lead in the design, development, and implementation of the graphic, layout, and production communication materials</li>
<li>Delegate tasks to the 7 members of the design team and provide counsel on all aspects of the project. </li>
<li>Supervise the assessment of all graphic materials in order to ensure quality and accuracy of the design</li>
<li>Oversee the efficient use of production project budgets ranging from $2,000 - $25,000</li>
</ul>
</p>
</div>
<div class="resume-item">
<h4>Graphic design specialist</h4>
<h5>2017 - 2018</h5>
<p><em>Stepping Stone Advertising, New York, NY</em></p>
<p>
<ul>
<li>Developed numerous marketing programs (logos, brochures,infographics, presentations, and advertisements).</li>
<li>Managed up to 5 projects or tasks at a given time while under pressure</li>
<li>Recommended and consulted with clients on the most appropriate graphic design</li>
<li>Created 4+ design presentations and proposals a month for clients and account managers</li>
</ul>
</p>
</div>
</div>
</div> -->
<!-- </div>
</section>End Resume Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Achievements</h2>
<p>My Certificates & Awards</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bx-slideshow"></i></div>
<h4><a href="https://drive.google.com/file/d/1eOEbs6YwaMGNF9NqKjV2-ij-d1wMviUq/view?usp=sharing" target="_blank">NYP Diploma Certificate</a></h4>
<p>Diploma in Cybersecurity & Digitalforensics (3.80 / 4.0 GPA)</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bx-slideshow"></i></div>
<h4><a href="https://drive.google.com/file/d/1drmEJjSdY_NealiTdLiHgd7F4K3FzH7o/view?usp=sharing" target="_blank">NYP Academic Transcript</a></h4>
<p>The Official Transcript of Academic Record</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bx-slideshow"></i></div>
<h4><a href="https://drive.google.com/file/d/1ARiB2m33VLMUaquFwF0h4goeF3o0pgMV/view?usp=sharing" target="_blank">NYP Co-Curricular Activities </a></h4>
<p>The Official Transcript of Co-Curricular Activites</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bx-slideshow"></i></div>
<h4><a href="https://drive.google.com/file/d/1mxmlvjpaYi84zxWtTq7GJhPczF7CHVDg/view?usp=sharing" target="_blank">Silver APJC Cisco NetAcad NetRiders</a></h4>
<p>An annual competition organised by Cisco Systems to assess students' networking skills, and won Silver which was given to only the top 10% of the regional participants.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bx-slideshow"></i></div>
<h4><a href="https://drive.google.com/file/d/1Xvx2vHd0mVT21WY4IaS8BtGu4LBScuQa/view?usp=sharing" target="_blank">Director’s List AY 2022/2023 Sem 1</a></h4>
<p>Top students who excel academically in the semester in a full-time diploma are placed on the Director’s List. To be eligible, you must be in the top 15% of your cohort for the semester, while carrying a full study load (or at least 80% of a full study load if you have been granted credit transfer) and without failing any modules in that semester.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bx-slideshow"></i></div>
<h4><a href="https://drive.google.com/file/d/1P2z_jhFvYeq-dXcpOj8njb9tEHSiD6ME/view?usp=sharing" target="_blank">CSIT Scholarship AY 2021/2022</a></h4>
<p>The CSIT Undergraduate Scholarship is awarded to individuals who are passionate about exploring technologies to advance Singapore’s national security.
The scholarship will be your gateway to an exciting and rewarding career with CSIT. </p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="https://drive.google.com/file/d/1SDUT-d0-iPcIwleROEFXzeQHzeBdJAgq/view?usp=sharing" target="_blank">Cyber Ethical Hacker (CEH)</a></h4>
<p>The CEH programme teaches the latest commercial-grade hacking tools,
techniques and methodologies used by hackers and information security professionals to lawfully hack an organisation. | Certified by EC-Council</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="https://drive.google.com/file/d/1QVlXLOm28mwhO0Wji2BI2li5saITL5w3/view?usp=sharing" target="_blank">HCIA-Datacom </a></h4>
<p>HCIA-Datacom V1.0 includes the following contents: Routing and switching principles, basic WLAN principles, basic knowledge of network security, basic knowledge of network management and O&M, and basic knowledge of SDN and programming automation.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="https://drive.google.com/drive/folders/1y_8WK8ei00o_pZc_d6h6dgWVtk2hI05a?usp=sharing" target="_blank">Cyber Hacking Forensics Investigator (CHFI)</a></h4>
<p>The CHFI program is designed for IT professionals involved with information system security, computer forensics, and incident response. It will help fortify the application knowledge in digital forensics for forensic analysts, cybercrime investigators, cyber defense forensic analysts,
incident responders, information technology auditors, malware analysts, security consultants, and chief security officers. | Certified by EC-Council</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="https://drive.google.com/file/d/1HDRAtsAc7XSat25Jgm6kiwC7PPoPJOA6/view?usp=sharing" target="_blank">NTU-SCSE Immersion Program 2020</a></h4>
<p>Invitation to Nanyang Technological University School of Computer Science and Computer Engineering. Also, offered a 3 AU's of exemption upon successful admission.
This 3-AU exemption is over and above the normal exemption granted to holders of related polytechnic diplomas.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="https://drive.google.com/file/d/1t3sNrsLXR_ptNgifTpElu484wAYZAq29/view?usp=sharing" target="_blank">Inter-Poly CTF:Lag and Crash 2022</a></h4>
<p>Main Challenge Author for the Inter-Poly Capture the flag. Challenges created will be opened and solved by participants of the competition</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="https://drive.google.com/file/d/1NMmtVg9cZULrsqunoNgtK-Iw7WQq7YfO/view?usp=sharing" target="_blank">Brainhack TIL-AI 2021</a></h4>
<p>Obtained 6th place among 400 participant from Pre-Universities to Universities. It is a Machine Learning Hackathon and held across 2 days which is also opened to all participants. At first, I do not have any Machine Learning knowledge but able to adapt and gain knowledge quickly to get such a high ranking place.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="https://drive.google.com/file/d/19umEU5Ztb3QCkSb2SjlkRx2BbEwpPRnw/view?usp=sharing" target="_blank">Cyber Defence Discovery Camp 2021</a></h4>
<p>Obtained 14th place among 500 participant from Pre-Universities to Universities. It was held for 1 day and open to all participants, Capture the Flag comprises a CTF Guided Labs Training and even an overnight CTF for tertiary and university students.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="https://drive.google.com/file/d/1HbaOmpI-9H6VEhPy8iy4RobbQgFBTUtW/view?usp=sharing" target="_blank">Cyber Youth Singapore Summit 2021</a></h4>
<p>Obtained 3rd place among 500 youths from secondary schools to universities. It was held across 2 days and open to all participants, Capture the Flag comprises a CTF Guided Labs Training and even an overnight CTF for tertiary and university students.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="https://drive.google.com/file/d/177-b5cwKO0Xwh188oeSGVrAO5R9ZvnEN/view?usp=sharing" target="_blank">Seed Venture</a></h4>
<p>Mentored by the Ian Gan, CEO of SEED Venture.S.E.E.D Ventures (SV) is a MAS licensed venture capital fund management company that invests in start-ups seeking their first investments (seed funding). Successful start-ups receive services, cash & mentorship to start, grow or save their companies. </p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bx-world"></i></div>
<h4><a href="https://drive.google.com/file/d/1qj3LZmB9EyFX0ovMdU6QxmsWjQ0gtvAI/view?usp=sharing" target="_blank">Director’s List AY 2020/2021 Sem 1</a></h4>
<p>Top students who excel academically in the semester in a full-time diploma are placed on the Director’s List. To be eligible, you must be in the top 15% of your cohort for the semester, while carrying a full study load (or at least 80% of a full study load if you have been granted credit transfer) and without failing any modules in that semester.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4><a href="https://drive.google.com/file/d/1xmYHP3bNPQXF0RYnqbq5Sh-1m2BHiz7M/view?usp=sharing" target="_blank">iCodeiTell 2021</a></h4>
<p>I explained a potential business solution to panel of judges and was acknowledged, however, due to financial constraint the idea was forfeited.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="bx bx-file"></i></div>
<h4><a href="https://drive.google.com/file/d/1sVjdunLTxbbX2qqYv8-oen8ZCDkLCgcv/view?usp=sharing" target="_blank">Singapore Junior Chemistry Olympiad 2019</a></h4>
<p>Nominated to represent Chung Cheng High Yishun in the Singapore Junior Chemistry Olympiad (SJCHO). It is a competition organised by the Singapore National Institute of Chemistry (SNIC) in partnership with NUS, NTU, SUTD and Nanyang Polytechnic and supported by the Ministry of Education (MOE).
SJCHO provides a platform for all upper secondary (or equivalent levels) students to challenge themselves in their chemical knowledge and skills.</p>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<section id="projects" class="portfolio">
<div class="container">
<div class="section-title">
<h2>Projects</h2>
<p>My Works</p>
</div>
<div class="row portfolio-container justify-content-center">
<div class="container row col-lg-10 portfolio-item">
<div id="hacksg2023" class="carousel slide col-lg-6" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#hacksg2023" data-slide-to="0" class="active"></li>
<li data-target="#hacksg2023" data-slide-to="1"></li>
<li data-target="#hacksg2023" data-slide-to="2"></li>
<li data-target="#hacksg2023" data-slide-to="3"></li>
<li data-target="#hacksg2023" data-slide-to="4"></li>
<li data-target="#hacksg2023" data-slide-to="5"></li>
<li data-target="#hacksg2023" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img width="507" height="234" class="d-block w-100" src="assets\img\portfolio\hacksg2023.png" alt="First slide">
</div>
<div class="carousel-item">
<img width="507" height="234" class="d-block w-100" src="assets\img\portfolio\hacksg1.png" alt="Second slide">
</div>
<div class="carousel-item">
<img width="507" height="234" class="d-block w-100" src="assets\img\portfolio\hacksg2.png" alt="Third slide">
</div>
<div class="carousel-item">
<img width="507" height="234" class="d-block w-100" src="assets\img\portfolio\hacksg3.png" alt="Fourth slide">
</div>
<div class="carousel-item">
<img width="507" height="234" class="d-block w-100" src="assets\img\portfolio\hacksg4.png" alt="Fifth slide">
</div>
<div class="carousel-item">
<img width="507" height="234" class="d-block w-100" src="assets\img\portfolio\hacksg5.png" alt="Sixth slide">
</div>
<div class="carousel-item">
<img width="507" height="284" class="d-block w-100" src="assets\img\portfolio\hacksg6.png" alt="Seventh slide">
</div>
<div class="carousel-item">
<img width="507" height="234" class="d-block w-100" src="assets\img\portfolio\hacksg7.png" alt="Eighth slide">
</div>
</div>
<a class="carousel-control-prev" href="#hacksg2023" 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="#hacksg2023" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="col-lg-6">
<h3>Hack Singapore (2023)</h3>
<p>Property Certificate Verification System is a secure and efficient solution for issuing, verifying, and storing course certificates for properties. It utilizes blockchain technology, verifiable credentials, and QR codes for authentication and easy verification.</p>
<p><a href="hacksg2023.html">Learn More</a></p>
<ul>
<li><i class="icofont-rounded-right"></i>Framework: NextJS </li>
<li><i class="icofont-rounded-right"></i>Blockchain Platform: Ethereum</li>
<li><i class="icofont-rounded-right"></i>API Requests: Axios</li>
<li><i class="icofont-rounded-right"></i>Database: Firebase</li>
<li><i class="icofont-rounded-right"></i>Verifiable Credentials: W3C specification</li>
<li><i class="icofont-rounded-right"></i>Cloud Wallet and Credential Issuance: Affinidi</li>
</ul>
</div>
</div>
---
<div class="container row col-lg-10 portfolio-item">
<div id="polkadot" class="carousel slide col-lg-6" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#polkadot" data-slide-to="0" class="active"></li>
<li data-target="#polkadot" data-slide-to="1"></li>
<li data-target="#polkadot" data-slide-to="2"></li>
<li data-target="#polkadot" data-slide-to="3"></li>
<li data-target="#polkadot" data-slide-to="4"></li>
<li data-target="#polkadot" data-slide-to="5"></li>
<li data-target="#polkadot" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="assets\img\portfolio\polkadot.png" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\polkadot (1).png" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\polkadot (2).png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\polkadot (3).png" alt="Fourth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\polkadot (4).png" alt="Fifth slide">
</div>
</div>
<a class="carousel-control-prev" href="#polkadot" 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="#polkadot" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="col-lg-6">
<h3>Polkadot
Global Series:
Europe Edition</h3>
<p>Use ink!, Rust-based embedded programming language for writing smart contracts for blockchains built with the Substrate framework</p>
<p><a href="polkadot.html">Learn More</a></p>
<ul>
<li><i class="icofont-rounded-right"></i>ink! Programming Language</li>
<li><i class="icofont-rounded-right"></i>Rust</li>
<li><i class="icofont-rounded-right"></i>Openbrush</li>
<li><i class="icofont-rounded-right"></i>Substrate</li>
<li><i class="icofont-rounded-right"></i>Typescript</li>
<li><i class="icofont-rounded-right"></i>Polkadot.js</li>
</ul>
</div>
</div>
<div class="container row col-lg-10 portfolio-item">
<div id="capev2malware" class="carousel slide col-lg-6" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#capev2malware" data-slide-to="0" class="active"></li>
<li data-target="#capev2malware" data-slide-to="1"></li>
<li data-target="#capev2malware" data-slide-to="2"></li>
<li data-target="#capev2malware" data-slide-to="3"></li>
<li data-target="#capev2malware" data-slide-to="4"></li>
<li data-target="#capev2malware" data-slide-to="5"></li>
<li data-target="#capev2malware" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="assets\img\portfolio\cape.png" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\cape (2).png" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\cape (3).png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\cape (4).png" alt="Fourth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\cape (5).png" alt="Fifth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\cape (6).png" alt="Sixth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\cape (7).png" alt="Seventh slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\cape (8).png" alt="Eighth slide">
</div>
</div>
<a class="carousel-control-prev" href="#capev2malware" 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="#capev2malware" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="col-lg-6">
<h3>CAPEv2 Malware Analysis Development</a></h3>
<p>Collaborate with others in the community to develop & enhance open-source malware tools. </p>
<p>(Enhancements has been merged)</p>
<p><a href="capev2malware.html">Learn More</a></p>
<ul>
<li><i class="icofont-rounded-right"></i>Cuckoo</li>
<li><i class="icofont-rounded-right"></i>Yara</li>
<li><i class="icofont-rounded-right"></i>Python</li>
<li><i class="icofont-rounded-right"></i>Django</li>
</ul>
</div>
</div>
<div class="container row col-lg-10 portfolio-item">
<div id="DLMIndicators" class="carousel slide col-lg-6" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#DLMIndicators" data-slide-to="0" class="active"></li>
<li data-target="#DLMIndicators" data-slide-to="1"></li>
<li data-target="#DLMIndicators" data-slide-to="2"></li>
<li data-target="#DLMIndicators" data-slide-to="3"></li>
<li data-target="#DLMIndicators" data-slide-to="4"></li>
<li data-target="#DLMIndicators" data-slide-to="5"></li>
<li data-target="#DLMIndicators" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="assets\img\portfolio\DL_Malware (1).png" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\DL_Malware (2).png" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\DL_Malware (3).png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\DL_Malware (4).png" alt="Fourth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\DL_Malware (5).png" alt="Fifth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\DL_Malware (6).png" alt="Sixth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\DL_Malware (7).png" alt="Seventh slide">
</div>
</div>
<a class="carousel-control-prev" href="#DLMIndicators" 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="#DLMIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="col-lg-6">
<h3>Deep Learning Malware Classification </h3>
<p>GreyScale Malware Classifier: Using Image Analysis Techniques for Effective Malware Detection and Classification</p>
<p><a href="deeplearning_malware.html">Learn More</a></p>
<ul>
<li><i class="icofont-rounded-right"></i>Deep Learning for Computer Vision</li>
<li><i class="icofont-rounded-right"></i>CV2</li>
<li><i class="icofont-rounded-right"></i>Cuda</li>
<li><i class="icofont-rounded-right"></i>Numpy</li>
<li><i class="icofont-rounded-right"></i>Python | Tensorflow</li>
</ul>
</div>
</div>
<div class="container row col-lg-10 portfolio-item">
<div id="aoiIndicators" class="carousel slide col-lg-6" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#aoiIndicators" data-slide-to="0" class="active"></li>
<li data-target="#aoiIndicators" data-slide-to="1"></li>
<li data-target="#aoiIndicators" data-slide-to="2"></li>
<li data-target="#aoiIndicators" data-slide-to="3"></li>
<li data-target="#aoiIndicators" data-slide-to="4"></li>
<li data-target="#aoiIndicators" data-slide-to="5"></li>
<li data-target="#aoiIndicators" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="assets\img\portfolio\aoi_collect.png" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\aoi_annotate.png" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\aoi_extract.png" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\aoi_split.png" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\aoi_classes.png" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\aoi_inference.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets\img\portfolio\aoi_AP.png" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#aoiIndicators" 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="#aoiIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="col-lg-6">
<h3>Automated Optical Inspection</h3>
<p>Work on state-of-the-art Deep Learning neural networks to help to improve the performance of an object detection model based on a Convolutional Neural Network (CNN). The model is used to automatically inspect electronic components on circuit boards.</p>
<p><a href="aoi.html">Learn More</a></p>
<ul>
<li><i class="icofont-rounded-right"></i>Deep Learning for Computer Vision</li>
<li><i class="icofont-rounded-right"></i>CV2</li>
<li><i class="icofont-rounded-right"></i>Cuda</li>
<li><i class="icofont-rounded-right"></i>Docker</li>
<li><i class="icofont-rounded-right"></i>Detectron2</li>
<li><i class="icofont-rounded-right"></i>Iriun</li>
<li><i class="icofont-rounded-right"></i>Python | PyTorch</li>