-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
977 lines (729 loc) · 49.9 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
<!DOCTYPE html>
<html lang="en">
<title>Ch'ng Huck Phin</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
font-family: "Lato", sans-serif
}
.mySlides {
display: none
}
table,
tr {
padding: 10px;
}
td {
padding: 10px;
width: 50%;
}
</style>
<body>
<!-- Page content -->
<div class="w3-content" style="max-width:2000px;margin-top:46px">
<!-- The Band Section -->
<div class="w3-container w3-content w3-center w3-padding-64" style="max-width:800px" id="band">
<h2 class="w3-wide">Ch'ng Huck Phin</h2>
<p class="w3-opacity"><i>3rd year university student</i></p>
<p class="w3-justify">Multi-talented individual pursuing a Bachelor of Computer Science (Hons) in Network
Technology degree.</p>
<p class="w3-justify">Pursues experiences not affliated to academics in spare time. </p>
</div>
<!-- The Tour Section -->
<div class="w3-black" id="tour">
<div class="w3-container w3-content w3-padding-64" style="max-width:800px">
<h2 class="w3-wide w3-center">Experiences </h2>
<p class="w3-opacity w3-center">Past and Present. Successes and Failures. </p>
<br>
<div class="w3-row-padding w3-padding-32" style="margin:0 -16px">
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/CarElectricalWiringRepair.jpg" alt="Car Electrical Wiring Repair"
style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Car Electrical Wiring Repair</b></p>
<p>I have attempted the partial disassembly and reassembly of a 1993 Honda Accord to remove
unessassary wires and patch wires with missing insulations.</p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="document.getElementById('CarElectricalWiringRepair').style.display='block'">
Read More about Car</br>
Electrical Wiring Repair</button>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/KGunaratanaMemorialLibrary.jpg" alt="Community Service"
style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Community Service</b></p>
<p>Regularly volunteered at a library and participated in weekly cleanups. </p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="document.getElementById('CommunityService').style.display='block'">
Read More about</br>
Community Service</button>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/ComputerTechnician.jpg" alt="Computers" style="width:100%"
class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Computer Technician</b></p>
<p>On laptop and desktop computers, troubleshooted hardware, executed software installation
+ configuration with disk imaging and performed quality checks. </p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="document.getElementById('ComputerTechnicianModule').style.display='block'">
Read More about</br>
Computer Technician</button>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/DispossingAssets.jpg" alt="Dispossing Assets & E-Commerce"
style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Dispossing Assets </b></p>
<p><label><i class="fa fa-check"></i></label> Scout locales in Penang to understand their scope - what they can and cannot take, arragement - can the locale pickup or do I drop off at locale and profits - got monetary gains or not. </p>
<p><label><i class="fa fa-check"></i></label> Load vehicle with assets </p>
<p><label><i class="fa fa-check"></i></label> Deliver assets to appriopriate locales </p>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/Driving.png" alt="Driving" style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Driving</b> </p>
<p>Clean record (no violations, no accidents) since obtaining license in Q4 2019. I recognise the importance of vehicle upkeep by, for example, checking tyre pressure. I
can
comfortably drive 4 wheel vehicles:</p>
<p><label><i class="fa fa-check"></i></label> with manual transmission </p>
<p><label><i class="fa fa-check"></i></label> of large exterior dimensions </p>
<p><label><i class="fa fa-check"></i></label> at high speeds </p>
<p><label><i class="fa fa-check"></i></label> with limited rearwards visibility </p>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/DispossingAssets.jpg" alt="Dispossing Assets & E-Commerce"
style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>E-Commerce</b></p>
<p><label><i class="fa fa-check"></i></label> listing items publically </p>
<p><label><i class="fa fa-check"></i></label> responding to customers queries </p>
<p><label><i class="fa fa-check"></i></label> packing item </p>
<p><label><i class="fa fa-check"></i></label> partial generation of shipping labels </p>
<p><label><i class="fa fa-check"></i></label> handling customer return requests </p>
<p><label><i class="fa fa-check"></i></label> physcially meeting customers for cash transactions</p>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container w3-white">
<p><b>Free Thinker</b></p>
<p>At times, seeking postive change by defying normality and questioning convention. Then is not afriad to express such opinions. </p>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/Driving.png" alt="Driving" style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Sustainble Transportation Solutions </b> </p>
<p>I can live without ownership of a motor vehicle. Explore and enjoy using more efficient modes like:</p>
<p><label><i class="fa fa-check"></i></label> car pooling </p>
<p><label><i class="fa fa-check"></i></label> car sharing </p>
<p><label><i class="fa fa-check"></i></label> riding bicycle </p>
<p><label><i class="fa fa-check"></i></label> riding public transportaiton (bus) </p>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/University.jpg" alt="University" style="width:100%"
class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Learning </b></p>
<p>I have studied through the International Baccalaureate Primary Years Programme (PYP), Key
Stage 3 (KS3), International General Certificate of Secondary Education (IGCSE), Diploma
in Computer Studies and Bachelor of Computer Science (Hons) in Computer and Network
Technology. </p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="document.getElementById('Learning').style.display='block'">
Read More </br>
about Learning</button>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/YaLahMediaIcon.png" alt="YouTube" style="width:100%"
class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Media Production</b></p>
<p>Producing (photography, videography, editing) and publishing videos publically onto the
world wide web since May 2014. </p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="document.getElementById('MediaProduction').style.display='block'">
Read More about</br>
Media Production</button>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/University.jpg" alt="University Co-curriculum" style="width:100%"
class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>University Co-curriculum </b></p>
<p>I actively held committee positions in various different clubs & societies during my time
at university.</p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="document.getElementById('UniversityClubSocieties').style.display='block'">
Read More about University </br>
Clubs & Societies</button>
</div>
</div>
<div class="w3-card-4 w3-margin w3-white">
<img src="/experiences/TempatMakanan.png" alt="Web Developement" style="width:100%"
class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Web Developement</b></p>
<p>Worked with different front end and back end technologies </p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="document.getElementById('WebDevelopement').style.display='block'">
Read More about </br>
Web Developement</button>
</div>
</div>
</div>
</div>
</div>
<!-- Modules -->
<div id="CarElectricalWiringRepair" class="w3-modal">
<div class="w3-modal-content w3-animate-top w3-card-4">
<header class="w3-container w3-teal w3-padding-32">
<span onclick="document.getElementById('CarElectricalWiringRepair').style.display='none'"
class="w3-button w3-teal w3-xlarge w3-display-topright">×</span>
<h2 class="w3-wide"></i>Car Electrical Wiring Repair</h2>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p>
The car I worked on previously had an aftermarket alarm system installed which
was spliced into
the car's original wiring harness at various different points. To uninstall the
wiring harness
from the car to facilitate repairs, the following components was entirely
uninstalled from the
car: </p>
<p><label><i class="fa fa-check"></i></label> front 2 seats </p>
<p><label><i class="fa fa-check"></i></label> dashboard </p>
<p><label><i class="fa fa-check"></i></label> driver side skirting </p>
<p><label><i class="fa fa-check"></i></label> front driver side front fender </p>
<p><label><i class="fa fa-check"></i></label> front bumper </p>
<p><label><i class="fa fa-check"></i></label> front driver door card</p>
<p>For wires which was cut, the wires were rejoined with solder and covered with
heat shrink.</p>
<p>For wires which only had portion of the insulation missing, the wires were
depinned from the
connector. This then allowed me to slide a piece of heat shrink over the exposed
portion of the
wire. </p>
<img src="/experiences/Accord1.jpg"
alt="Example of covering wires with portions of missing insulation with heat shrink."
style="width:100%">
<p><i>Example of covering wires with portions of missing insulation with heat
shrink.</i></p>
<img src="/experiences/Accord2.jpg" alt="Example of a depinning in process. "
style="width:100%">
<p><i>Example of a depinning in process. </i></p>
</p>
</td>
</tr>
</table>
</div>
</header>
</div>
</div>
<div id="CommunityService" class="w3-modal">
<div class="w3-modal-content w3-animate-top w3-card-4">
<header class="w3-container w3-teal w3-padding-32">
<span onclick="document.getElementById('CommunityService').style.display='none'"
class="w3-button w3-teal w3-xlarge w3-display-topright">×</span>
<h2 class="w3-wide"></i>Community Service</h2>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p><b>
K Gunaratana Memorial Library
</b></p>
<p>
Throughout 2019, I was an active volunteer. Mainly contributed towards
relaunching the library
which included wrapping the books with plastic film for protection, labelling
books spine for
ease of shelfing and sticking on barcodes for a digitalize check out and check
in process.
</p>
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<b> Trash Hero Penang</b>
<p> Throughout 2019, I was an active volunteer - helping out with picking up and
auditing trash over
different locations in Penang over multiple weekends..</p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.trashhero.org/our-mission/'">
Learn More about Trash Hero</br>
(external link)</button>
<img src="/experiences/TrashHero.png" alt="Trash Hero Penang " style="width:100%">
<p><i>Screenshot of pictures taken during 1 of the cleanups. Uploaded to Facebook by Trash Hero Penang.</i></p>
</td>
</tr>
</table>
</div>
</header>
</div>
</div>
<div id="ComputerTechnicianModule" class="w3-modal">
<div class="w3-modal-content w3-animate-top w3-card-4">
<header class="w3-container w3-teal w3-padding-32">
<span onclick="document.getElementById('ComputerTechnicianModule').style.display='none'"
class="w3-button w3-teal w3-xlarge w3-display-topright">×</span>
<h2 class="w3-wide"></i>Computer Technician</h2>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p>Growing up, I had a passion and intrest in being a computer technician. In
September 2020, during
my internship, my skills and knowledge was put to the test. It was a
"be in the right place at the right moment" and following my internship
conclusion, I have both
volunteered and been contracted to provide computer technician services. </p>
<p>I have worked on: </p>
<p><label><i class="fa fa-check"></i></label> computers built since 2005</p>
<p><label><i class="fa fa-check"></i></label> custom built computers and computers
from different
OEMs including Acer, Asus, Dell, HP and Lenovo</p>
<p><label><i class="fa fa-check"></i></label> AMD and Intel processor equipped
computers</p>
<p><label><i class="fa fa-check"></i></label> Windows and Linux operating systems
</p>
<p><label><i class="fa fa-check"></i></label> Apporximately 500 computers</p>
<p><label><i class="fa fa-check"></i></label> Consumer, pro-consumer, business and
professional
computers</p>
<p>All the steps I took to perform installation and configuration of Windows and
Ubuntu was
documented extensively on a step by step basis and shared with my employeers.
</p>
</td>
</tr>
</table>
</div>
</header>
</div>
</div>
<div id="Learning" class="w3-modal">
<div class="w3-modal-content w3-animate-top w3-card-4">
<header class="w3-container w3-teal w3-padding-32">
<span onclick="document.getElementById('Learning').style.display='none'"
class="w3-button w3-teal w3-xlarge w3-display-topright">×</span>
<h2 class="w3-wide"></i>Learning </h2>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p><b>Primary and Seconday Education</b></p>
<p>Subjects covered: </p>
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p>
<p><b>Tertiary Education</b></p>
<p>Subjects covered: </p>
</p>
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p>
Experimented with different speech dictation services. Over 1 year, I have
gained an insight
into the different limitations and dictation quality of different websites which
offers speech
dictation services. Some more purpose built than others. I also had an
opportunity to learn the
feasibility of splicing up the generated text from speech dictation software to
match the
PowerPoint slides they are associated with. Concluded on if this rather
unconvential approach to
note taking was effective or not.
</p>
</td>
</tr>
</table>
</div>
</header>
</div>
</div>
<div id="MediaProduction" class="w3-modal">
<div class="w3-modal-content w3-animate-top w3-card-4">
<header class="w3-container w3-teal w3-padding-32">
<span onclick="document.getElementById('MediaProduction').style.display='none'"
class="w3-button w3-teal w3-xlarge w3-display-topright">×</span>
<h2 class="w3-wide"></i>Media Production</h2>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p>Since beginning producing media: </p>
<p><label><i class="fa fa-check"></i></label> Used a variety of different cameras
from Android
smartphones, Apple tablets to point and shoot camera where we at times, manually
set some
settings like white balance. </p>
<p><label><i class="fa fa-check"></i></label> Used a variety of different video
editing software
including Windows Movie Maker, VSDC, Shotcut and now DaVinci Resolve and Apple's
iMovie. </p>
<p><label><i class="fa fa-check"></i></label> Published media to various different
platforms
including Facebook, Instagram, Twitter, Wikimedia Commons, Wix and YouTube </p>
<br />
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p><b>Car Photography (Q4 2018 - Q1 2020) </b></p>
<p>An example of 1 of my bigger media production experiences I undertook.</p>
<p>During
this
period of time, I
actively travelled to malls and shoppng centres on a frequent basis seeking out
roadshows. If
roadshows were present, I would have photographed the car(s) available in detail
for both the
exterior and interior if I hadn't photographed that particular model before. No
prior permission
or scheduling was executed so some verbal explainiation had to communicated to
the sales people
attending the roadshow from time to time.
</p>
<p>
After capturing the photographs, the
photo was first
edited to blur the faces of passing members of the public before being compiled
in a video
editing software to make a photo slideshow video. </p>
<p>Towards the end of this stig, I experimented with alternate format of videos
which evolved on
from the photo slideshow concept. One such alternate format envolved the
inclusion of
specifcations or captions relavant to photo's content in text form underneath a
photo in the
video. Second alternate format, envolved taking photos of 2 different cars and
providing visual
comparison by stiching together, for example, 2 pictures of the front of a car,
1 from 1 car and
another 1 from a different car.</p>
<p> The photographs in full quality are also
uploaded to Wikimedia
Commons where they are explicitly marked with a Creative Commons
Attribution-Share Alike 4.0
license allowing for sharing and reuse of my work with attribution. </p>
<img src="/experiences/Wikimedia.png" alt="San Francisco" style="width:100%">
<p><i>Screenshot of some of my images on Wikimedia Commons </i></p>
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p><b>My Published Works</b></p>
<p>My media production is mostly concentrated on video production with videos being
publically
published onto video sharing site, YouTube. As of 2021, I now publish videos
onto different
YouTube channels based on the video's category. </p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.youtube.com/channel/UCOSeJq2f7iT62M8WuaFRPTw/videos'">Bus
Videos</button>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.youtube.com/channel/UCty60YBEdgfOBfa6SFeOvNw/videos '">Computer
Videos</button>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.youtube.com/channel/UCH7rZntNeJY4xAb057H9sKA/videos '">Film
Videos</button>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.youtube.com/channel/UCjPYU9Z7AIK_cPM3WzEyAHQ/videos '">Game
Videos</button>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.youtube.com/channel/UCuzDFL6m77eO9W29fWgnd9g/videos '">Food
& Drinks Videos</button>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.youtube.com/channel/UCYHwHoUEqD6GR267t2UfE2w/videos '">Locations
& Event Videos</button>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.youtube.com/channel/UC8ARIRL7CQgAOSopk2159Ag/videos '">Toy
Videos</button>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.youtube.com/channel/UCwhIDd9t_Rovg2Vz3YmQdiw/videos '">Miscallenous
Videos</button>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.youtube.com/channel/UCaA4KAenkYalEKueLyEo0Yw/videos '">Personal
Videos</button>
<P>I have also had the opportunity to produce videos for Penang Science Cluster</P>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.youtube.com/playlist?list=PLb1DqvTLsJF2P4OC0ZjYsDCjegFqWmUvW '">My
Penang Science Cluster
Videos</button>
<br />
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p><b>Livestreaming @ Twitch</b></p>
<p>I sometimes livestream myself doing computer work like studying. Using software
called OBS Studio
to embed multiple sources including camera, timer and text overlay. Engaging
with viewers via
chat messages. </p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.twitch.tv/yescomp '">
See my Twitch Channel</br>
(external link)</button>
</td>
</tr>
</table>
</div>
</header>
</div>
</div>
<div id="UniversityClubSocieties" class="w3-modal">
<div class="w3-modal-content w3-animate-top w3-card-4">
<header class="w3-container w3-teal w3-padding-32">
<span onclick="document.getElementById('UniversityClubSocieties').style.display='none'"
class="w3-button w3-teal w3-xlarge w3-display-topright">×</span>
<h2 class="w3-wide"></i>University Co-curriculum</h2>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p><label> </label><b> Vice Treasurer of Go Green Club (Q4 2018 – Q3 2020) </b>
</p>
<p>My highlight during my time in Go Green Club would be in mid-2020 where I
successfully initated
an idea contributed by a fellow club member to recognise the efforts of Covid-19
frontliners.
The project grew until it was recognised by universtiy's management who
subsequently
took over
the project and took it to then next level. </p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.facebook.com/KDUPGSSD/videos/2394513484185923/'">
Watch final video</br>
(external link)</button>
<img src="/experiences/GoGreen.jpg" alt="UOW Penang Go Green Club Event"
style="width:100%">
<p><i>A compilation of stills from the Covid-19 appreciation project. </i></p>
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p><label> </label><b> Vice President of Computer Club (Q1 2019 – Q1 2020)</b>
</p>
<p>Despite no prior knowledge or experience of leading a club or society, let alone
reviving an
inactive club, I persevered through and learnt the processes and systems. From
which, I lead a
committee which organised events throughout the year of 2019. Events included a
series of
workshops organised in collobration with a couple of other clubs & societies and
meet and greet
sessions to raise funds for the club and to interact with fellow university
students
through
playing games. Success achieved with teamwork with fellow committee members, communication with club advisor and seeking of assistance from student centre . </p>
<img src="/experiences/ComputerClub1.jpg" alt="UOW Penang Computer Club Event"
style="width:100%">
<p><i>A workshop organised in collobration with a couple of other clubs & societies.
</i></p>
<img src="/experiences/ComputerClub2.jpg" alt="UOW Penang Computer Club Event"
style="width:100%">
<p><i>A meet and greet session. </i></p>
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<p><label> </label><b> Finance Director of Student Representative Council
(Q1 2020- Q4 2021)</b> </p>
<p>I independently ran a virtual programming workshop where I shared with
participants
the process
to develop a graphical user interface rock paper scissors game with the Java
programming
language. This experience was eye opening and allowed me to gain an insight into
the
work that
lecturers do to educate individuals. </p>
<img src="/experiences/SRC1.png" alt="UOW Penang SRC Event" style="width:100%">
<p><i>A still from the Java Programming workshop. </i></p>
<br/> <p>One other project I am proud of is utilizing university's existing digital
resources
to establish
a university's clubs & societies information hub. Prior to establishig a
Microsoft
SharePoint
website, there was no 1 location where students can launch to learn more about
different clubs &
societies, get in contact with the respective clubs & societies president to get
more
information and register for clubs & societies.</p>
<img src="/experiences/clubs.png" alt="UOW Penang Computer Club Event"
style="width:100%">
<p><i>A screenshot showcasing a portion of the website developed. </i></p>
</td>
</tr>
</table>
</div>
</header>
</div>
</div>
<div id="WebDevelopement" class="w3-modal">
<div class="w3-modal-content w3-animate-top w3-card-4">
<header class="w3-container w3-teal w3-padding-32">
<span onclick="document.getElementById('WebDevelopement').style.display='none'"
class="w3-button w3-teal w3-xlarge w3-display-topright">×</span>
<h2 class="w3-wide"></i>Web Developement</h2>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<b>http://ahuckphin.github.io/about-me</b>
<p>It is this website! My own personal website compiling a list of my experiences.
Actively hosted with Github pages. </p>
<img src="/experiences/aboutme.png" alt="ahuckphin.github.io/about-me"
style="width:100%">
<p><i>screenshot of http://ahuckphin.github.io/about-me homepage</i></p>
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<b>Computer Technician Tracker</b>
<p> Basic web application programmed with HTML and PHP. Sucessfully deployed to run
on a
Raspberry
Pi for access within a local area network. Basic functions includes:</p>
<p><label><i class="fa fa-check"></i></label> store computer particulars like serial
number and
Windows product key</p>
<p><label><i class="fa fa-check"></i></label> page with custom checklist where each
item
in the list
can be checked off as computer setup progresses</p>
<p><label><i class="fa fa-check"></i></label> display computer particulars and
service/work done
history on a per ID basis</p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://github.com/ahuckphin/Computer-Technician-Tracker'">
View Computer Technician</br>
Tracker GitHub Repository</br>
(external link)</button>
<img src="/experiences/CTT.png" alt="CTT" style="width:100%">
<p><i>screenshot of Computer Technician Tracker homepage</i></p>
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<b>Kopitiam Management System</b>
<p>Web application who's aim is to make finding food in Malaysia easier with food
centric filters.
Developed for my diploma final year project in a team including me. I primarily
was
involved
with both front end (user interface) and back end (database) programming.
Developed
with the
Visual Basic programming language together with ADO.Net and MySQL.</p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = '/experiences/KMS_Doc.pdf'">
Read More</br>
(PDF document)</button>
<img src="/experiences/KMS.png" alt="Kopitiam Management System" style="width:100%">
<p><i>screenshot of Kopitiam Management System homepage</i></p>
</td>
</tr>
</table>
</div>
<div class="w3-card-4 w3-margin w3-white">
<table>
<tr>
<td>
<b>tempatmakanan.com (Malaysia Food Places)</b>
<p>Follow up to Kopitiam Management System. A website now built with WordPress and
dependent on
various different WordPress plugins. Domain and WordPress hosting sponsored to
me
via the
Digitalise Penang for Youths 2021 program.</p>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.tempatmakanan.com'">
View tempatmakanan.com </br>
Website (external link)</button>
<button class="w3-button w3-black w3-margin-bottom"
onclick="location.href = 'https://www.exabytes.my/digitalisepenang'">
Learn More about Digitalise </br>
Penang for Youths program</br>
(external link)</button>
<img src="/experiences/TempatMakanan.png" alt="Tempat Makanan" style="width:100%">
<br />
<p><i>screenshot of tempatmakanan.com homepage</i></p>
</td>
</tr>
</table>
</div>
</header>
</div>
</div>
<!-- End Page Content -->
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-64 w3-center w3-opacity w3-light-grey w3-xlarge">
<p class="w3-medium">Powered by <a href="https://www.w3schools.com/w3css/default.asp" target="_blank">w3.css</a>
</p>
</footer>
</body>
</html>