-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathskill.html
963 lines (806 loc) · 37.5 KB
/
skill.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
<link rel="stylesheet" href="assets\css\w3.css">
<link rel="stylesheet" href="font.css">
<link rel="stylesheet" href="assets\css\3dbutton.css" \>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>技能應用及熟識度</title>
</head>
<body><!DOCTYPE html>
<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="w3.css">
<!--<link rel="stylesheet" href="pictures/skill_page/w3.css">-->
<link rel="stylesheet" href="font.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato_TC", sans-serif;}
body, html {
height: 100%;
color: #777;
line-height: 1.8;
}
.w3-myfont{
font-family: "Lato_TC", normal;
}
/* Create a Parallax Effect */
bgimg-0 ,.bgimg-1, .bgimg-2, .bgimg-3,.bgimg-4,.bgimg-5,.bgimg-6,.bgimg-7,.bgimg-8 {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* Skill Sector Main Pic */
.bgimg-0 {
background-image: url("minecraft_server_gate.png");
min-height: 100%;
}
/* Game Engine */
.bgimg-1 {
background-image: url("pictures/skill_page/engine.png");
min-height: 100%;
}
/*Doc Writing*/
.bgimg-2 {
background-image: url("pictures/skill_page/docwriting.png");
min-height: 100%;
}
/*
.bgimg-3 {
background-image: url("pictures/c.png");
min-height: 400px;
}
*/
/* Multimedia Production */
.bgimg-4 {
background-image: url("pictures/skill_page/mulitmedia.png");
min-height: 100%;
}
/* Programming */
.bgimg-5 {
background-image: url("pictures/skill_page/programming.png");
min-height: 100%;
}
/* OS Server DB*/
.bgimg-6 {
background-image: url("pictures/skill_page/osdb.png");
min-height: 100%;
}
/* Office */
.bgimg-7 {
background-image: url("pictures/skill_page/office.png");
min-height: 100%;
}
/* Other */
.bgimg-8 {
background-image: url("pictures/c.png");
min-height: 100%;
}
.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1600px) {
.bgimg-1, .bgimg-2, .bgimg-3,.bgimg-4,.bgimg-5,.bgimg-6 {
background-attachment: scroll;
min-height: 400px;
}
.w3-myfont{
font-family: "Lato_TC", normal;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 15px;
}
</style>
<div class="w3-top">
<div class="w3-bar" id="myNavbar">
<a class="w3-bar-item w3-button w3-hover-black w3-hide-medium w3-hide-large w3-right" href="javascript:void(0);" onClick="toggleFunction()" title="Toggle Navigation Menu">
<i class="fa fa-bars"></i> </a>
<a href="index.html#" class="w3-bar-item w3-button">HOME</a>
<a href="index.html#about" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-user"></i>ABOUT</a>
<a href="index.html#contact" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-envelope"></i> CONTACT</a>
<a href="index.html#duty" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-th"></i> DUTY</a>
<a href="index.html#portfolio" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-th"></i> PORTFOLIO</a>
<a href="skill.html" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-user"></i> SKILL</a>
<a href="media_archive.html" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-th"></i> Media Archive</a>
<a href="other_archive.html" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-th"></i> Other Archive</a>
</div>
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium">
<a href="main.html#about" class="w3-bar-item w3-button" onClick="toggleFunction()">ABOUT</a>
<a href="#skill" class="w3-bar-item w3-button" onClick="toggleFunction()">Skill</a>
<a href="index.html" class="w3-bar-item w3-button" onClick="toggleFunction()">PORTFOLIO</a>
<a href="media_archive.html" class="w3-bar-item w3-button" onClick="toggleFunction()">Media Archive</a>
<a href="other_archive.html" class="w3-bar-item w3-button" onClick="toggleFunction()">Other Archive</a>
<a href="main.html#contact" class="w3-bar-item w3-button" onClick="toggleFunction()">CONTACT</a>
</div>
</div><!-- Navbar on small screens -->
<div class="bgimg-0 w3-display-container w3-opacity-min" id="home">
<div class="w3-display-middle" style="white-space:nowrap;">
<span class="w3-center w3-padding-large w3-black w3-xlarge w3-wide w3-animate-opacity">APPLICATIONS & SKILL <span class="w3-hide-small">SECTOR</span> </span>
</div>
</div><!-- Logo Text -->
<br>
<div class="w3-center w3-content w3-container " id="skill_home">
<p class="w3-center w3-large ">【技能層級說明】</p>
<p class="w3-center w3-large "> Skills Proficiency denomination</p>
<hr>
<p class="w3-center w3-large "> 技能精通度分為五個層級,分別為<b>「初學」、「有認識/概念」、「有能力使用」、「熟悉」、「精通」</b>;
<br>並特別註明每個<b>「經常使用」(「非經常使用」)</b> 的技能。</p>
<p class="w3-center w3-large "> Proficiency: Five distinguish levels for proficiency;<br> denoted as <b> “Initial”, “Known”, “Familiar”, “Experienced” / ”Solid”, “Proficient”.</b><br> A mark of <b>"Mainly" (or "Secondarily")</b> is to indicate a skill that usually (or offen) command in, if acceptable.</p>
<hr>
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:100%"> [精通 / 經常使用 ; Proficient; Mainly]
</div>
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:100%"> [ 熟悉 / 經常使用 ; Experienced / Solid ; Mainly]
</div>
<div class="w3-container w3-padding-small w3-blue w3-center" align="center"
style="width:100%"> [有能力使用 ; Familiar]
</div>
<div class="w3-container w3-padding-small w3-green w3-center" align="center"
style="width:100%"> [有認識/概念 ; Known]
</div>
<div class="w3-container w3-padding-small w3-gray w3-center" align="center"
style="width:100%"> [ 初學 / 自學中 ; Initial]
</div>
</div><br>
<!----------------------------------------------------------------->
<!----------------------------------------------------------------->
<!----------------------------------------------------------------->
<!------GAME DEVELOPMENT----3D MODELLING / ANIMATION---->
<div class="bgimg-1 w3-display-container " id="GameDev">
<div class="w3-display-middle" style="white-space:nowrap;">
<!--
<span class="w3-center w3-padding-large w3-black w3-xlarge w3-animate-opacity">Game Development & <span class="w3-hide-small">3D Modelling / Animation</span> </span>
-->
</div>
</div><!-- Logo Text -->
<div class="w3-content w3-container w3-padding-8" id="GameDev_skill ">
<p class="w3-center w3-large "> 遊戲開發引擎、三維建模、動畫製作工具。</p>
<p class="w3-center w3-large "> Game Engine, development tools, modelling and creative animation tools...</p>
<table style="width:100% ">
<col width="50%">
<tr>
<th ><i class=" fa fa-cogs"></i> Unity Engine </p>遊戲開發引擎使用 Usage of Game Engines * </th>
<th><i class=" fa fa-cogs"></i> RPG Maker </p>遊戲開發引擎使用 Usage of Game Engines * </th>
</tr>
<tr>
<td>
<div class=" w3-light-grey" style="left:30%">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:70%"> 75 <br>[主要使用/Mainly]
</div>
</div>
<div class = "w3-center">
<br>
<a href="#home" class="w3-button w3-light-grey"><i class="fa fa-arrow-right w3-margin-right"></i>To Archive Page <br>往 作品集</a>
</div>
</div>
<br>
</td>
<br>
<td>
<div class="w3-light-grey " style="right:30%">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:75%"> 75<br>[非經常使用/ Secondarily]
</div>
</div>
<div class = "w3-center">
<br>
<a href="#home" class="w3-button w3-light-grey"><i class="fa fa-arrow-right w3-margin-right"></i>To Archive Page <br>往 作品集</a>
</div>
<br>
</td>
</tr>
<tr>
<th><i class="fa fa-cube"></i> Autodesk 3DS Max </p> 3D建模軟件使用 Usage of 3D Tools *</th>
<th><i class="fa fa-cube"></i> SketchUp </p> 3D建模軟件使用 Usage of 3D Tools * </th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:75%"> 75 <br>[主要使用/Mainly]
</div>
</div>
<div class = "w3-center">
<br>
<a href="other_archive.html#gallery_other" class="w3-button w3-light-grey"><i class="fa fa-cube w3-margin-right"></i>To Archive Page <br>往 作品集</a>
</div>
</div>
</td>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:75%"> 75 <br>[主要使用/Mainly]
</div>
</div>
<div class = "w3-center">
<br>
<a href="other_archive.html#gallery_other" class="w3-button w3-light-grey"><i class="fa fa-cube w3-margin-right"></i>To Archive Page <br>往 作品集</a>
</div>
</div></td>
</tr>
<hr>
</table>
<hr>
<p class="w3-large w3-center w3-myfont "> 按上面有關按鈕可以閱覽更多有關遊戲作品及3D模組之作品集。</p>
<p class="w3-large w3-center w3-myfont"> Click above related button for demo-games and modelling related portfolio(s).</p>
* 遊戲開發引擎使用 : 實際著手使用引擎環境去開發不同規模遊戲。 <br>
* 3D建模軟件使用 : 實質著手用工具去製作不同(主要為)埸景物品的3D模形。 <br>
* Usage of Game Engines: Actual use of Engines to development different scale of demo/product. <br>
* Usage of 3D Tools : Actual use of 3d tools to make 3d model for the environment, scene items.
</div>
</div>
<br>
<!----------------------------------------------------------------->
<!------System, technical and Game Documtation Writing---->
<div class="bgimg-2 w3-display-container " id="GameDev">
<div class="w3-display-middle" style="white-space:nowrap;">
<!-- <span class="w3-center w3-padding-large w3-black w3-xlarge w3-animate-opacity">System, technical and <span class="w3-hide-small">Game Documtation Writing</span> </span>
-->
</div>
</div><!-- Logo Text -->
<div class="w3-content w3-container w3-padding-8 w3-large" id="GameDev_skill">
<p class="w3-center "> 系統、技術、遊戲開發文件編寫。</p>
<p class="w3-center "> System, technical and Game Documtation writing related.</p>
<p class="w3-large w3-center "> 按下面按鈕可以閱覽更多 文檔編寫 / 文字表達 作品集。</p>
<p class="w3-large w3-center "> Click below button for documatation related portfolio(s).</p>
<p class="w3-large w3-center "> 注意:暫只提供繁體中文。<br>Notice : Temporary only available in Traditional Chinese.</p>
<table style="width:100% ">
<col width="50%">
<tr>
<th ><i class=" fa fa-cogs"></i> System, Technical Writing </p> 開發技術文檔編寫</th>
</tr>
<tr>
<td>
<div class=" w3-light-grey" style="left:30%">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:85%"> 85 <br>[主要使用/Mainly]
</div>
</div>
<br>
</td>
<br>
</tr>
<hr>
<tr>
<th><i class=" fa fa-cogs"></i> Game Design Documtation Writing </p> 遊戲 設計 文檔編寫</th>
<th ><i class=" fa fa-cogs"></i> Game Development Documtation Writing </p> 遊戲 開發 文檔編寫</th>
</tr>
<tr>
<td>
<div class=" w3-light-grey" style="left:30%">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:95%"> 95 <br>[主要使用/Mainly]
</div>
</div>
<br>
</td>
<td>
<div class="w3-light-grey " style="right:30%">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:95%"> 95
</div>
</div>
<br>
</td>
</tr>
</table>
<hr>
</div>
<p class="w3-large w3-center "> Minecraft Server 詳細設定集,極短版設定簡介。</p>
<div class="w3-center">
<p class="w3-large w3-center "> Minecraft game server hosting corerule and setting books and shortern version of setting books.</p>
<a href="https://drive.google.com/open?id=1P-GW7HQrH1Ev0S50ruTNhkT1B8m5NbIY" class="w3-button w3-light-grey"><i class="fa fa-file-word-o"></i>全冊<br>Whole Book</a>
<a href="https://drive.google.com/open?id=1l46EWZFqkQELdcFHXrXazK7NCG9bgAAG" class="w3-button w3-light-grey"><i class="fa fa-file-word-o"></i>第一冊<br>Book I</a>
<a href="https://drive.google.com/open?id=1DfD40DibjEoC0GQPr6K3wTxAZl7CDyTi" class="w3-button w3-light-grey"><i class="fa fa-file-word-o"></i>第二冊<br>Book II</a>
<a href="https://drive.google.com/open?id=1eFtjyhpmtqxvWF8UGzBYcC4DdAhiCl6z" class="w3-button w3-light-grey"><i class="fa fa-file-word-o"></i>第三冊<br>Book III</a>
<a href="https://drive.google.com/open?id=1HVb33wGxZZGxTg99x3mkNCutieq7iR1e" class="w3-button w3-light-grey"><i class="fa fa-file-word-o"></i>第四冊<br>Book IV</a>
<a href="#home" class="w3-button w3-light-grey"><i class="fa fa-file-word-o"></i>極短示例版<br>Shortern Ver.</a>
</div>
<hr>
<div class="w3-center">
<p class="w3-large w3-center "> 其他專案的 文檔編寫 / 文字表達 作品集。</p>
<a href="https://drive.google.com/open?id=1c5TsixE3RZoOg2udsJ7eQG1tVFroJg7O" class="w3-button w3-light-grey"><i class="fa fa-file-word-o w3-margin-right"></i>專案二 -- 畢業作品 影子的內心<br>FYP</a>
<a href="https://drive.google.com/open?id=1lvwKKWxp-SK12smONjDEvKI21k0ukUoZ" class="w3-button w3-light-grey"><i class="fa fa-file-word-o"></i>專案三 -- 致敬作品<br>Homage / Archetype Game</a>
<a href="https://drive.google.com/open?id=1zQGDbE2k6pX-e7WHb27t5S-Md46UzjpK" class="w3-button w3-light-grey"><i class="fa fa-file-word-o"></i>專案四/六 -- 3D模組<br>Cities Skyline 3D Modelling</a>
</div>
<div class="w3-center">
<p class="w3-large w3-center "> 個人成長 / 對事物的獨立思考 </p>
<p class="w3-large w3-center "> </p>
<a href="https://drive.google.com/open?id=1sW3n9DVntFS9tqZweuVc-XccvciQGwWC" class="w3-button w3-light-grey">
<i class="fa fa-file-word-o w3-margin-right"></i>自序 <br>/ 以往的企劃文件(目錄)</a>
<a href="https://drive.google.com/open?id=1OhNlrZgN2DyfR67ggThRE39J_y3mG4Vr" class="w3-button w3-light-grey"><i class="fa fa-file-word-o"></i>自述<br>(筆者18歲至22歲之間的遍歷)</a>
</div>
<br>
* 文檔編寫 : 實際著手由零開始去編寫提案/企劃/技術/設定/參考文案。 <br>
* Documtation : Actual to write planning, development, technical, setting and referencing documentation from ground up, from nothing<br>
</div>
<br>
<!----------------------------------------------------------------->
<!------------Multimedia--& Production---------------------------->
<div class="bgimg-4 w3-display-container" id="Multimedia">
<div class="w3-display-middle" style="white-space:nowrap;">
<!--<span class="w3-center w3-padding-large w3-black w3-xlarge w3-animate-opacity">Multimedia Production<span class="w3-hide-small"> & Streaming Application Services </span> </span>
-->
</div>
</div><!-- Logo Text -->
<div class="w3-content w3-container w3-padding-16" id="Multimedia_skill">
<table style="width:100%">
<col width="50%">
<tr>
<p class=" w3-center"> 主要為Adobe Creative 軟件。</p>
<p class=" w3-center">Mainly focus on Adobe Creative Set.</p>
<th><i class="fa fa-object-group"></i> Adobe Photoshop (as Common-used and Graphic Design) </p> 日常使用 / 平面設計</th>
<th><i class="fa fa-paint-brush"></i> Adobe Photoshop (as Digital Painting) </p> 電繪</th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="left:30%">
<div class="w3-container w3-padding-small w3-center w3-purple" align="center"
style="width:75%"> 75 <br>[主要使用/Mainly]
</div>
</div>
<div class = "w3-center">
<br>
<a href="media_archive.html#galleries" class="w3-button w3-light-grey"><i class="fa fa-object-group w3-margin-right"></i>To Archive Page<br>往 作品集</a>
</div>
</td>
<br>
<td>
<!--<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-dark-grey w3-center" align="center"
style="width:75%"> 75
</div>
</div> -->
<p class=" w3-center">Stills picking up this sector...</p>
<br>
</td>
</tr>
<tr>
<th><i class="fa fa-object-group"></i> Adobe Illustrator </p>使用 Usage</th>
<th><i class="fa fa-film"></i> Adobe Premiere Pro </p>使用 Usage</th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:75%"> 75 <br>[主要使用/Mainly]
</div>
</div>
<div class = "w3-center">
<br>
<a href="media_archive.html#galleries" class="w3-button w3-light-grey"><i class="fa fa-object-group w3-margin-right"></i>To Archive Page<br>往 作品集</a>
</div>
<br>
</td>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:85%"> 85 <br>[主要使用/Mainly]
</div>
</div>
<div class = "w3-center">
<br>
<a href="media_archive.html#youtube" class="w3-button w3-light-grey"><i class="fa fa-object-group w3-margin-right"></i>To Archive Page<br>往 作品集</a>
</div>
</td>
</tr>
<tr>
<th><i class="fa fa-file-code-o"></i> Adobe Dreamweaver </p>使用 Usage</th>
<th><i class="fa fa-file-sound-o"></i> Adobe Audition </p>使用 Usage</th>
</tr>
<tr>
<td>
<!--<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-dark-grey w3-center" align="center"
style="width:75%"> 75
</div>
</div> -->
<p class=" w3-center">Stills picking up this sector...</p>
<br>
</td>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-blue w3-center" align="center"
style="width:50%"> 50<br>[非經常使用/ Secondarily]
</div>
</div> <br>
</td>
</tr>
<tr>
</table>
<hr>
* 使用 : 實際著手以Adobe Creative 工具來製作不同多媒體內容。不論日常使用;或是專案發展。 <br>
* Usage : Actual to use Adobe Creative software to create multimedia content, no matter on daily use, nor projects development.<br>
<hr>
<p class=" w3-center"> 另包括一些直播用軟件</p>
<p class=" w3-center"> Also some broadcasting tools.</p>
<table style="width:100%">
<col width="50%">
<th><i class="fa fa-video-camera"></i> X-Split </p>使用 Usage</th>
<th><i class="fa fa-video-camera"></i> Open Broadcaster Software (OBS) </p>使用 Usage</th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="right:50%">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:90%"> 90 <br>[主要使用/Mainly]
</div>
</div> <br>
</td>
<td>
<div class="w3-light-grey " >
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:85%"> 85<br>[非經常使用/ Secondarily]
</div>
</div> <br>
</td>
</tr>
</table>
</div>
<!----------------------------------------------------------------->
<!---------PROGRAMMING & MARK-UP LANGUAGE-------->
<div class="bgimg-5 w3-display-container " id="Programming">
<div class="w3-display-middle" style="white-space:nowrap;">
<!-- <span class="w3-center w3-padding-large w3-black w3-xlarge w3-animate-opacity">PROGRAMMING & MARK-UP LANGUAGE </span>
-->
</div>
</div><!-- Logo Text -->
<div class="w3-content w3-container w3-padding-64" id="Programming_skill">
<table style="width:100%">
<col width="50%">
<tr>
<p class=" w3-center">主要、常用及非常用編程語言。</p>
<p class=" w3-center">Programming lanugage, that I current mainly, and secondarily command* in.</p>
<hr>
<th><i class="fa fa-code"></i> Unity-based C# </p></th>
<th><i class="fa fa-code"></i> Unity-based JavaScript </p></th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="left:30%">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:75%"> 75 <br>[主要使用/Mainly]
</div>
</div>
<br>
</td>
<br>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:75%"> 75 <br>[主要使用/Mainly]
</div>
</div>
<br>
</td>
</tr>
<tr>
<th><i class="fa fa-code"></i> Java </p></th>
<th><i class="fa fa-code"></i> C, C++, ShellScript </p></th>
</tr>
<tr>
<td>
<div class=w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:75%"> 75 <br>[主要使用/Mainly]
</div>
</div> <br>
</td>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-blue w3-center" align="center"
style="width:55%"> 55<br>[非經常使用/ Secondarily]
</div>
</div> <br>
</td>
</tr>
</table>
<table style="width:100%">
<col width="50%">
<tr>
<p class=" w3-center">主要、常用及非常用標記式語言。</p>
<p class=" w3-center">Mark-up lanugage, that I current mainly, and secondarily command* in.</p>
<hr>
<th><i class="fa fa-code"></i>HTML5 and CSS </p></th>
<th><i class="fa fa-code"></i> XML & YML </p></th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="left:30%">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:70%"> 70 <br><br>[主要使用/Mainly]<br> stills picking up this sector...
</div>
</div>
<br>
</td>
<br>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:80%"> 80 <br><br> <br>[主要使用/Mainly]
</div>
</div>
<br>
</td>
</tr>
<tr>
<th><i class="fa fa-code"></i> JSON-like structures lanugage </p></th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-blue w3-center" align="center"
style="width:65%"> 65 <br><br><br>[非經常使用/ Secondarily]
</div>
</div> <br>
</td>
</tr>
</table>
<hr>
* 使用 : 能看懂 / 能用...編寫程式 <br>
* Command : Read / Code in
</div>
<!----------------------------------------------------------------->
<!----OPERATION SYSTEM & DATABASE RELATED------------->
<div class="bgimg-6 w3-display-container " id="OSDB">
<!--<div class="w3-display-middle" style="white-space:nowrap;">
<span class="w3-center w3-padding-large w3-black w3-xlarge w3-animate-opacity">OS Usage, Server, DB Related & Networking<span class="w3-hide-small"></span> </span>
-->
</div>
</div><!-- Logo Text -->
<div class="w3-content w3-container w3-padding-64" id="OSDB_skill">
<table style="width:100%">
<col width="50%">
<tr>
<p class=" w3-center">主要是操作系統、伺服器、網絡伺服器日常應用及管理;及有關數據庫設計。</p>
<p class=" w3-center">Focus on OS Usage (daily to adminstrations), Server adminstration, Database (design) related discipline, and Network DNS, NAS, Cloud Serer hosting, routing.</p>
<hr>
<th><i class="fa fa-desktop"></i> Linux-based System (Mac OS, Unix, Commandline) </p>使用 Usage</th>
<th><i class="fa fa-desktop"></i> Windows XP,7,8,8.1,10 </p>使用 Usage</th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="left:30%">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:85%"> 85 <br>[主要使用/Mainly], stills picking up this sector...
</div>
</div>
<br>
</td>
<br>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:100%"> 100 <br>[主要使用/Mainly]
</div>
</div>
<br>
</td>
</tr>
<tr>
<th><i class="fa fa-code-fork"></i> Database Design / Architect* related </p>數據庫設計/建構 </th>
<th><i class="fa fa-database"></i> Database Usage related </p>數據庫應用</th>
</tr>
<tr>
<td>
<div align="center">DB Modelling (ER, UML 2.0)</div>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:90%"> 90 <br>[主要使用/Mainly]
</div>
</div>
<div class = "w3-center">
<br>
<a href="media_archive.html#galleries" class="w3-button w3-light-grey"><i class="fa fa-arrow-up w3-margin-right"></i>To Archive Page</a>
</div></td>
<td>
<div align="center">SQLite and SQL Lanugage</div>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-blue w3-center" align="center"
style="width:60%"> 60
</div>
</div> <br>
</td>
</tr>
</table>
<hr>
* 數據庫設計/建構 : 將數據(實體)分拆部件,再按照部件建構一個可存放該類紀錄的數據庫。 <br>
* 數據庫應用 : 實質著手以SQL,其他管理工具應用等分析。 <br>
* Database Design / Architect : Decomposition of a entities, set of data; for database stroage and further computing. <br>
* Database Usage : Actual use of database.
</div>
<!----------------------------------------------------------------->
<!----OFFICE TOOLS & RELATED ARCHITECTURE TOOLS------------->
<div class="bgimg-7 w3-display-container" id="office">
<div class="w3-display-middle" style="white-space:nowrap;">
<!--<span class="w3-center w3-padding-large w3-black w3-xlarge w3-animate-opacity">OFFICE TOOLS & <span class="w3-hide-small">RELATED ARCHITECTURE TOOLS</span> </span> -->
</div>
</div><!-- Logo Text -->
<div class="w3-content w3-container w3-padding-64" id="GameDev_skill">
<table style="width:100%">
<col width="50%">
<tr>
<p class=" w3-center">基礎文書軟件,及,到進階系統結構、專案開發文檔寫作及應用。</p>
<p class=" w3-center">From fundamental skills in office enviroment and higher order skill set in system architecture documentation tools.</p>
<hr>
<th><i class="fa fa-file-word-o"></i> Word Processors</p>Microsoft Word, Google Docs <br>使用 Usage</th>
<th><i class="fa fa-file-excel-o"></i> Spreadsheets (Usage) </p>Microsoft Excel, Google Sheets <br>使用 Usage</th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="left:30%">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:100%"> 100 <br>[主要使用/Mainly] ...
</div>
</div>
<br>
</td>
<br>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:100%"> 100 <br>[主要使用/Mainly]
</div>
</div>
<br>
</td>
</tr>
<tr>
<th><i class="fa fa-file-powerpoint-o"></i> Presentation Software </p>Microsoft Powerpoint, Google Slide <br> 使用 Usage</th>
<th><i class=" fa fa-database"></i> GUI-Relational DB (Usage and Management) </p> Microsoft Access <br> Advance level in Google Sheets <br>使用 Usage</th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:100%"> 100 <br>[主要使用/Mainly]
</div>
</div> <br>
</td>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:80%"> 80
</div>
</div> <br>
</td>
</tr>
<tr>
<th><i class="fa fa-file-powerpoint-o"></i> Software-based Architecture Tools </p>Microsoft Visio <br> 使用 Usage</th>
<th><i class=" fa fa-database"></i> Web-based Architecture Tools </p> Draw.io <br> 使用 Usage</th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:95%"> 95
</div>
</div> <br>
</td>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-amber w3-center" align="center"
style="width:100%"> 100 <br>[主要使用/Mainly]
</div>
</div> <br>
</td>
</tr>
</table>
</div>
* 系統結構繪圖 : 使用流程 / UML 2.0 等等...等值的圖表,用以以文字外方式表達內容。<br>
* Architecture Tools: Utilizing UML 2.0, flow diagrams or equivalence, to represent content on non-text based methods.
<br><br>
<!----------------------------------------------------------------->
<!------------------------OTHER----------------------->
<div class="bgimg-8 w3-display-container w3-opacity-min" id="other">
<div class="w3-display-middle" style="white-space:nowrap;">
<span class="w3-center w3-padding-large w3-black w3-xlarge w3-animate-opacity">OTHER & <span class="w3-hide-small">RELATED SKILLS</span> </span>
</div>
</div><!-- Logo Text -->
<div class="w3-content w3-container w3-padding-64" id="other_skill">
<table style="width:100%">
<col width="50%">
<tr>
<p class=" w3-center">其他與職業有關的軟、硬技能</p>
<p class=" w3-center">Other skill set related to job needs or further use.</p>
<hr>
<th><i class="fa fa-language"></i> Translation</p>English to Chinese</th>
<th><i class="fa fa-language"></i> Translation</p>Chinese to English</th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="left:30%">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:80%"> 80 <br>[主要使用/Mainly]
</div>
</div>
</td>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:70%"> 70 <br>[主要使用/Mainly]
</div>
</div>
</td>
</tr>
</table>
<table style="width:100%">
<col width="50%">
<div class="w3-center"><br> 2014 - 2019 年期間, 於 Steam Translation Server 以 義務遊戲翻譯員 身份; <br>秉持內容語境語意清晰、用字準確、合適原則作遊戲內容翻譯。</div> <br>
<div class="w3-center"> Experienced to translate decently and keep accurately. <br> Former engaging in Steam Translation Server, International Translation Lonuge, since 2014-2019.</div> <br>
<tr>
<th><i class="fa fa-commenting"></i> Lanugage & Soft skill (Communication) </p> Chinese, English</th>
<th><i class="fa fa-book"></i> Soft skill </p> Knowledge Management</th>
</tr>
<tr>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:75%"><br> Fluent write/read/speak Chinese, also able in English.
</div>
</div>
</td>
<td>
<div class="w3-light-grey " style="right:350px">
<div class="w3-container w3-padding-small w3-purple w3-center" align="center"
style="width:80%"> Utilizing board-range knowledge management skills to keep solutions appropriate, efficient, and creative.
</div>
</div>
</td>
</tr>
<tr>
<th><i class="fa fa-code-fork"></i> Soft skill </p> Project Management <br></th>
<th><i class="fa fa-clock-o"></i> Soft skill </p> Time Management <br></th>
</tr>
<tr>
<th><i class="fa fa-code-fork"></i> Soft skill </p> Analytical Reasoning</th>
<th><i class="fa fa-flash"></i> Soft skill </p> Creative and Design Related</th>
</tr>
</table>
</div>
<!----------------------------------------------------------------->
<!----------------------------------------------------------------->
</div>
<footer class="w3-center w3-black w3-padding-64 w3-opacity w3-hover-opacity-off"> <a href="#home" class="w3-button w3-light-grey"><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a>
<div class="w3-xlarge w3-section"> <a href="https://drive.google.com/open?id=1x5gO8Dmfox_wXYIrENMOVmvkefmgbh1B"><i class="fa fa-google w3-hover-opacity" style="font-size:36px";></i></a> <a href="https://www.youtube.com/user/bbbgbg"><i class="fa fa-youtube-play w3-hover-opacity" style="font-size:36px";></i></a> <a href="https://github.com/NelsonLAN"><i class="fa fa-github w3-hover-opacity" style="font-size:36px";></i></a> <a href="https://www.linkedin.com/in/nelsonlan574211143"><i class="fa fa-linkedin w3-hover-opacity" style="font-size:36px";></i></a> </div>
You are visitor<div align="center"><iframe src="https://profile-counter.glitch.me/nelsonlan01/count.svg" height="100" style="border:none;" style="text-align:center;"></iframe></div>
<p> </p>
<p> © 版權屬 Nelson LAN 所有 (2012 - 2023)</p>
<p> © Copyright belong to NelsonLAN (2012 - 2023) </p>
</footer><!-- Footer -->
<script>
// Modal Image Gallery
function onClick(element) {
document.getElementById("img01").src = element.src;
document.getElementById("modal01").style.display = "block";
var captionText = document.getElementById("caption");
captionText.innerHTML = element.alt;
}
// Change style of navbar on scroll
window.onscroll = function() {myFunction()};
function myFunction() {
var navbar = document.getElementById("myNavbar");
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
navbar.className = "w3-bar" + " w3-card" + " w3-animate-top" + " w3-white";
} else {
navbar.className = navbar.className.replace(" w3-card w3-animate-top w3-white", "");
}
}
// Used to toggle the menu on small screens when clicking on the menu button
function toggleFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>