-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1136 lines (744 loc) · 41.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-tw" dir="ltr">
<head>
<meta name="generator" content="Hugo 0.105.0"><meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'><meta name='description' content='No Pain No Gain'>
<title>Tsaiの南極洲</title>
<link rel='canonical' href='https://npust-dnlab.github.io/TsaiRongFu-Hugo/'>
<link rel="stylesheet" href="/TsaiRongFu-Hugo/scss/style.min.5be32ca3f6e1a997c75795c4359147cc6d4fbd34948c0acd51e31d237033978a.css"><meta property='og:title' content='Tsaiの南極洲'>
<meta property='og:description' content='No Pain No Gain'>
<meta property='og:url' content='https://npust-dnlab.github.io/TsaiRongFu-Hugo/'>
<meta property='og:site_name' content='Tsaiの南極洲'>
<meta property='og:type' content='website'><meta property='og:updated_time' content=' 2022-08-01T00:00:00+00:00 '/>
<meta name="twitter:title" content="Tsaiの南極洲">
<meta name="twitter:description" content="No Pain No Gain"><link rel="alternate" type="application/rss+xml" href="https://npust-dnlab.github.io/TsaiRongFu-Hugo/index.xml">
<link rel="shortcut icon" href="/images/TW-Penguin.png" />
</head>
<body class="">
<script>
(function() {
const colorSchemeKey = 'StackColorScheme';
if(!localStorage.getItem(colorSchemeKey)){
localStorage.setItem(colorSchemeKey, "dark");
}
})();
</script><script>
(function() {
const colorSchemeKey = 'StackColorScheme';
const colorSchemeItem = localStorage.getItem(colorSchemeKey);
const supportDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches === true;
if (colorSchemeItem == 'dark' || colorSchemeItem === 'auto' && supportDarkMode) {
document.documentElement.dataset.scheme = 'dark';
} else {
document.documentElement.dataset.scheme = 'light';
}
})();
</script>
<div class="container main-container flex on-phone--column extended"><aside class="sidebar left-sidebar sticky ">
<button class="hamburger hamburger--spin" type="button" id="toggle-menu" aria-label="切換選單">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
<header>
<figure class="site-avatar">
<a href="/TsaiRongFu-Hugo">
<img src="/TsaiRongFu-Hugo/img/Hacker%20Penguin_huf8b29c73232c22cedd2ba1084305c5e4_78612_300x0_resize_box_1.gif" width="1200"
height="1250" class="site-logo" loading="lazy" alt="Avatar">
</a>
</figure>
<div class="site-meta">
<h1 class="site-name"><a href="/TsaiRongFu-Hugo">Tsaiの南極洲</a></h1>
<h2 class="site-description">No Pain No Gain</h2>
</div>
</header><ol class="social-menu">
<li>
<a
href='https://github.com/TsaiRongFu'
target="_blank"
title="1.GitHub"
rel="me"
>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-github" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5" />
</svg>
</a>
</li>
<li>
<a
href='https://twitter.com/peng_mao'
target="_blank"
title="2.Twitter"
rel="me"
>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-twitter" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c-.002 -.249 1.51 -2.772 1.818 -4.013z" />
</svg>
</a>
</li>
<li>
<a
href='mailto:[email protected]'
target="_blank"
title="3.Mail"
rel="me"
>
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 58.561 58.561" style="enable-background:new 0 0 58.561 58.561;" xml:space="preserve">
<g>
<path d="M57.688,30.369l-2.85-2.85c-1.164-1.164-3.057-1.162-4.221,0L35.226,42.91l-2.121,7.779l-0.519,0.519
c-0.388,0.388-0.389,1.014-0.006,1.405l-0.005,0.02l0.019-0.005c0.194,0.191,0.446,0.288,0.699,0.288
c0.256,0,0.512-0.098,0.707-0.293l0.52-0.52l7.778-2.121l15.39-15.391C58.852,33.427,58.852,31.533,57.688,30.369z M37.535,43.43
l10.243-10.243l4.243,4.243L41.778,47.673L37.535,43.43z M36.633,45.356l3.22,3.22l-4.428,1.207L36.633,45.356z M56.274,33.177
l-2.839,2.839l-4.243-4.242l2.839-2.839c0.385-0.385,1.01-0.384,1.394-0.001l2.85,2.85C56.658,32.167,56.658,32.793,56.274,33.177z
"/>
<path d="M29,44.646H3.879c4.548-3.604,14.801-11.781,20.069-16.403l1.421,1.255c1.001,0.894,2.317,1.341,3.632,1.341
c1.313,0,2.627-0.446,3.625-1.337L56,8.863v15.782c0,0.553,0.448,1,1,1s1-0.447,1-1v-18c0-0.008-0.004-0.014-0.005-0.022
c-0.002-0.111-0.019-0.223-0.06-0.331c-0.003-0.007-0.008-0.012-0.011-0.019c-0.011-0.027-0.029-0.048-0.041-0.073
c-0.041-0.081-0.09-0.156-0.15-0.222c-0.026-0.028-0.053-0.052-0.082-0.077c-0.062-0.055-0.13-0.1-0.204-0.137
c-0.033-0.017-0.063-0.034-0.097-0.047C57.24,5.675,57.124,5.646,57,5.646H1c-0.124,0-0.24,0.029-0.351,0.071
C0.614,5.73,0.584,5.747,0.552,5.764C0.478,5.802,0.41,5.847,0.348,5.901C0.319,5.927,0.292,5.95,0.266,5.978
c-0.06,0.066-0.108,0.14-0.15,0.222C0.104,6.226,0.086,6.247,0.075,6.273C0.072,6.28,0.067,6.285,0.064,6.292
C0.024,6.4,0.007,6.512,0.005,6.623C0.004,6.631,0,6.638,0,6.646v39c0,0.003,0.002,0.005,0.002,0.009
c0.001,0.107,0.017,0.214,0.053,0.319c0.004,0.012,0.013,0.021,0.018,0.033c0.014,0.035,0.035,0.065,0.052,0.098
c0.038,0.073,0.082,0.141,0.136,0.201c0.028,0.031,0.056,0.058,0.087,0.085c0.061,0.053,0.127,0.097,0.199,0.134
c0.034,0.018,0.065,0.037,0.101,0.051C0.759,46.617,0.876,46.646,1,46.646h28c0.552,0,1-0.447,1-1S29.552,44.646,29,44.646z
M2,43.582V8.863l20.437,18.046C16.881,31.763,6.086,40.349,2,43.582z M54.357,7.646l-23.058,20.36
c-1.267,1.132-3.33,1.132-4.602-0.004l-1.979-1.747c-0.006-0.007-0.007-0.015-0.013-0.021c-0.022-0.025-0.053-0.035-0.077-0.057
L3.643,7.646H54.357z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
</a>
</li>
<li>
<a
href='https://stackoverflow.com/users/16074805/penguinegg?tab=profile'
target="_blank"
title="4.Stack Overflow"
rel="me"
>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="304px" height="304px" viewBox="-24 0 304 304" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
<g>
<polygon fill="#BCBBBB" points="216.329708 276.187929 216.329708 194.976776 243.28341 194.976776 243.28341 303.14163 0 303.14163 0 194.976776 26.9537015 194.976776 26.9537015 276.187929"></polygon>
<path d="M56.7077876,187.275718 L189.025959,214.929516 L194.626728,188.325863 L62.3085568,160.672065 L56.7077876,187.275718 L56.7077876,187.275718 Z M74.2101912,124.267065 L196.727016,181.324901 L207.928555,156.821536 L85.4117295,99.4136524 L74.2101912,124.267065 Z M108.164854,64.0587971 L212.129132,150.520671 L229.281487,129.867835 L125.31721,43.4059609 L108.164854,64.0587971 L108.164854,64.0587971 Z M175.374084,0 L153.671104,16.1022113 L234.18216,124.617114 L255.88514,108.514902 L175.374084,0 Z M53.9074031,248.884179 L189.025959,248.884179 L189.025959,221.930478 L53.9074031,221.930478 L53.9074031,248.884179 Z" fill="#F48023"></path>
</g>
</svg>
</a>
</li>
<li>
<a
href='https://line.me/ti/p/yea9T2X2QZ'
target="_blank"
title="5.Line"
rel="me"
>
<svg xmlns="http://www.w3.org/2000/svg"
aria-label="LINE" role="img"
viewBox="0 0 512 512"><rect
width="512" height="512"
rx="15%"
fill="#00B900"/><path d="m443 231c-2 45-21 76-51 103-53 47-137 105-148 96-11-14 21-47-20-52-88-12-155-74-155-147 0-82 85-150 188-150s189 68 186 150z" fill="#fff"/><path d="m371 232h-34m34-36h-36v72h36m-123 0v-72l54 72v-72m-89 72v-72m-66 0v72h37" fill="none" stroke="#00B900" stroke-linecap="round" stroke-linejoin="round" stroke-width="21"/></svg>
</a>
</li>
</ol><ol class="menu" id="main-menu">
<li class='current' >
<a href='/TsaiRongFu-Hugo/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-home" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<polyline points="5 12 3 12 12 3 21 12 19 12" />
<path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7" />
<path d="M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6" />
</svg>
<span>主頁</span>
</a>
</li>
<li >
<a href='/TsaiRongFu-Hugo/%E6%96%87%E7%AB%A0/' >
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-postcard-heart-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2Zm6 2.5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0v-7Zm3.5.878c1.482-1.42 4.795 1.392 0 4.622-4.795-3.23-1.482-6.043 0-4.622ZM2 5.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Zm0 2a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Zm0 2a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Z"></path>
</svg>
<span>文章</span>
</a>
</li>
<li >
<a href='/TsaiRongFu-Hugo/%E9%97%9C%E6%96%BC/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-user" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="7" r="4" />
<path d="M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2" />
</svg>
<span>關於</span>
</a>
</li>
<li >
<a href='/TsaiRongFu-Hugo/%E6%90%9C%E5%B0%8B/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-search" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="10" cy="10" r="7" />
<line x1="21" y1="21" x2="15" y2="15" />
</svg>
<span>搜尋</span>
</a>
</li>
<li >
<a href='/TsaiRongFu-Hugo/%E9%80%A3%E7%B5%90/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" />
<path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" />
</svg>
<span>連結</span>
</a>
</li>
<div class="menu-bottom-section">
<li id="i18n-switch">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-language" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 5h7" />
<path d="M9 3v2c0 4.418 -2.239 8 -5 8" />
<path d="M5 9c-.003 2.144 2.952 3.908 6.7 4" />
<path d="M12 20l4 -9l4 9" />
<path d="M19.1 18h-6.2" />
</svg>
<select name="language" onchange="window.location.href = this.selectedOptions[0].value">
<option value="https://npust-dnlab.github.io/TsaiRongFu-Hugo/" selected>繁體中文</option>
<option value="https://npust-dnlab.github.io/TsaiRongFu-Hugo/en/" >English</option>
</select>
</li>
<li id="dark-mode-toggle">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-toggle-left" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="8" cy="12" r="2" />
<rect x="2" y="6" width="20" height="12" rx="6" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-toggle-right" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="16" cy="12" r="2" />
<rect x="2" y="6" width="20" height="12" rx="6" />
</svg>
<span>夜晚模式</span>
</li>
</div>
</ol>
</aside>
<aside class="sidebar right-sidebar sticky">
<form action="/TsaiRongFu-Hugo/%E6%90%9C%E5%B0%8B/" class="search-form widget" >
<p>
<label>搜尋</label>
<input name="keyword" required placeholder="輸入關鍵字..." />
<button title="搜尋">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-search" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="10" cy="10" r="7" />
<line x1="21" y1="21" x2="15" y2="15" />
</svg>
</button>
</p>
</form>
<section class="widget archives">
<div class="widget-icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-infinity" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M9.828 9.172a4 4 0 1 0 0 5.656 a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828 a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828" />
</svg>
</div>
<h2 class="widget-title section-title">紀錄</h2>
<div class="widget-archive--list">
<div class="archives-year">
<a href="/TsaiRongFu-Hugo/%E6%96%87%E7%AB%A0/#2022">
<span class="year">2022</span>
<span class="count">3</span>
</a>
</div>
<div class="archives-year">
<a href="/TsaiRongFu-Hugo/%E6%96%87%E7%AB%A0/#2021">
<span class="year">2021</span>
<span class="count">16</span>
</a>
</div>
<div class="archives-year">
<a href="/TsaiRongFu-Hugo/%E6%96%87%E7%AB%A0/#2020">
<span class="year">2020</span>
<span class="count">2</span>
</a>
</div>
<div class="archives-year">
<a href="/TsaiRongFu-Hugo/%E6%96%87%E7%AB%A0/#2019">
<span class="year">2019</span>
<span class="count">5</span>
</a>
</div>
</div>
</section>
<section class="widget tagCloud">
<div class="widget-icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-hash" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<line x1="5" y1="9" x2="19" y2="9" />
<line x1="5" y1="15" x2="19" y2="15" />
<line x1="11" y1="4" x2="7" y2="20" />
<line x1="17" y1="4" x2="13" y2="20" />
</svg>
</div>
<h2 class="widget-title section-title">Categories</h2>
<div class="tagCloud-tags">
<a href="/TsaiRongFu-Hugo/categories/linux/" class="font_size_4">
Linux
</a>
<a href="/TsaiRongFu-Hugo/categories/nginx/" class="font_size_3">
NGINX
</a>
<a href="/TsaiRongFu-Hugo/categories/windows/" class="font_size_3">
Windows
</a>
<a href="/TsaiRongFu-Hugo/categories/apple/" class="font_size_2">
Apple
</a>
<a href="/TsaiRongFu-Hugo/categories/ffmpeg/" class="font_size_2">
FFmpeg
</a>
<a href="/TsaiRongFu-Hugo/categories/github/" class="font_size_2">
GitHub
</a>
<a href="/TsaiRongFu-Hugo/categories/nvidia/" class="font_size_2">
NVIDIA
</a>
<a href="/TsaiRongFu-Hugo/categories/postgresql/" class="font_size_2">
PostgreSQL
</a>
<a href="/TsaiRongFu-Hugo/categories/python/" class="font_size_2">
Python
</a>
<a href="/TsaiRongFu-Hugo/categories/selenium/" class="font_size_2">
Selenium
</a>
</div>
</section>
<section class="widget tagCloud">
<div class="widget-icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-tag" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11 3L20 12a1.5 1.5 0 0 1 0 2L14 20a1.5 1.5 0 0 1 -2 0L3 11v-4a4 4 0 0 1 4 -4h4" />
<circle cx="9" cy="9" r="2" />
</svg>
</div>
<h2 class="widget-title section-title">標籤雲</h2>
<div class="tagCloud-tags">
<a href="/TsaiRongFu-Hugo/tags/terminal/" class="font_size_6">
Terminal
</a>
<a href="/TsaiRongFu-Hugo/tags/command/" class="font_size_5">
Command
</a>
<a href="/TsaiRongFu-Hugo/tags/linux/" class="font_size_4">
Linux
</a>
<a href="/TsaiRongFu-Hugo/tags/server/" class="font_size_4">
server
</a>
<a href="/TsaiRongFu-Hugo/tags/nginx/" class="font_size_3">
NGINX
</a>
<a href="/TsaiRongFu-Hugo/tags/windows/" class="font_size_3">
Windows
</a>
<a href="/TsaiRongFu-Hugo/tags/apple/" class="font_size_2">
Apple
</a>
<a href="/TsaiRongFu-Hugo/tags/ffmpeg/" class="font_size_2">
FFmpeg
</a>
<a href="/TsaiRongFu-Hugo/tags/github/" class="font_size_2">
GitHub
</a>
<a href="/TsaiRongFu-Hugo/tags/nvidia/" class="font_size_2">
NVIDIA
</a>
</div>
</section>
</aside>
<main class="main full-width">
<section class="article-list">
<article class="has-image">
<header class="article-header">
<div class="article-image">
<a href="/TsaiRongFu-Hugo/p/%E4%B8%80%E4%BA%9Bffmpeg%E6%8C%87%E4%BB%A4/">
<img src="/TsaiRongFu-Hugo/p/%E4%B8%80%E4%BA%9Bffmpeg%E6%8C%87%E4%BB%A4/picture_hu8dbb0901d2519ea7003879321732bcd5_782996_800x0_resize_q75_box.jpg"
srcset="/TsaiRongFu-Hugo/p/%E4%B8%80%E4%BA%9Bffmpeg%E6%8C%87%E4%BB%A4/picture_hu8dbb0901d2519ea7003879321732bcd5_782996_800x0_resize_q75_box.jpg 800w, /TsaiRongFu-Hugo/p/%E4%B8%80%E4%BA%9Bffmpeg%E6%8C%87%E4%BB%A4/picture_hu8dbb0901d2519ea7003879321732bcd5_782996_1600x0_resize_q75_box.jpg 1600w"
width="800"
height="720"
loading="lazy"
alt="Featured image of post 一些FFmpeg指令" />
</a>
</div>
<div class="article-details">
<header class="article-category">
<a href="/TsaiRongFu-Hugo/categories/ffmpeg/" >
FFmpeg
</a>
</header>
<div class="article-title-wrapper">
<h2 class="article-title">
<a href="/TsaiRongFu-Hugo/p/%E4%B8%80%E4%BA%9Bffmpeg%E6%8C%87%E4%BB%A4/">一些FFmpeg指令</a>
</h2>
</div>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Aug 01, 2022</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
閱讀時間: 1 分鐘
</time>
</div>
</footer>
<footer class="article-translations">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-language" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 5h7" />
<path d="M9 3v2c0 4.418 -2.239 8 -5 8" />
<path d="M5 9c-.003 2.144 2.952 3.908 6.7 4" />
<path d="M12 20l4 -9l4 9" />
<path d="M19.1 18h-6.2" />
</svg>
<div>
<a href="https://npust-dnlab.github.io/TsaiRongFu-Hugo/en/p/a-several-ffmpeg-command/" class="link">English</a>
</div>
</footer>
</div>
</header>
</article>
<article class="has-image">
<header class="article-header">
<div class="article-image">
<a href="/TsaiRongFu-Hugo/p/youtube-dl-or-yt-dlp-%E4%B8%8B%E8%BC%89facebook%E5%BD%B1%E7%89%87/">
<img src="/TsaiRongFu-Hugo/p/youtube-dl-or-yt-dlp-%E4%B8%8B%E8%BC%89facebook%E5%BD%B1%E7%89%87/picture_hu64caf9168c64a7d6119b727ea2029f75_956309_800x0_resize_q75_box.jpg"
srcset="/TsaiRongFu-Hugo/p/youtube-dl-or-yt-dlp-%E4%B8%8B%E8%BC%89facebook%E5%BD%B1%E7%89%87/picture_hu64caf9168c64a7d6119b727ea2029f75_956309_800x0_resize_q75_box.jpg 800w, /TsaiRongFu-Hugo/p/youtube-dl-or-yt-dlp-%E4%B8%8B%E8%BC%89facebook%E5%BD%B1%E7%89%87/picture_hu64caf9168c64a7d6119b727ea2029f75_956309_1600x0_resize_q75_box.jpg 1600w"
width="800"
height="525"
loading="lazy"
alt="Featured image of post Youtube-dl or Yt-dlp 下載Facebook影片" />
</a>
</div>
<div class="article-details">
<header class="article-category">
<a href="/TsaiRongFu-Hugo/categories/facebook/" >
Facebook
</a>
<a href="/TsaiRongFu-Hugo/categories/youtube/" >
Youtube
</a>
</header>
<div class="article-title-wrapper">
<h2 class="article-title">
<a href="/TsaiRongFu-Hugo/p/youtube-dl-or-yt-dlp-%E4%B8%8B%E8%BC%89facebook%E5%BD%B1%E7%89%87/">Youtube-dl or Yt-dlp 下載Facebook影片</a>
</h2>
</div>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Jul 18, 2022</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
閱讀時間: 1 分鐘
</time>
</div>
</footer>
<footer class="article-translations">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-language" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 5h7" />
<path d="M9 3v2c0 4.418 -2.239 8 -5 8" />
<path d="M5 9c-.003 2.144 2.952 3.908 6.7 4" />
<path d="M12 20l4 -9l4 9" />
<path d="M19.1 18h-6.2" />
</svg>
<div>
<a href="https://npust-dnlab.github.io/TsaiRongFu-Hugo/en/p/youtube-dl-or-yt-dlp-download-facebook-video/" class="link">English</a>
</div>
</footer>
</div>
</header>
</article>
<article class="has-image">
<header class="article-header">
<div class="article-image">
<a href="/TsaiRongFu-Hugo/p/postgresql-pgadmin%E9%87%8D%E7%BD%AE%E5%AF%86%E7%A2%BC/">
<img src="/TsaiRongFu-Hugo/p/postgresql-pgadmin%E9%87%8D%E7%BD%AE%E5%AF%86%E7%A2%BC/picture_hu1639710fd0ad78c56cba2ce9516a2080_2070766_800x0_resize_q75_box.jpg"
srcset="/TsaiRongFu-Hugo/p/postgresql-pgadmin%E9%87%8D%E7%BD%AE%E5%AF%86%E7%A2%BC/picture_hu1639710fd0ad78c56cba2ce9516a2080_2070766_800x0_resize_q75_box.jpg 800w, /TsaiRongFu-Hugo/p/postgresql-pgadmin%E9%87%8D%E7%BD%AE%E5%AF%86%E7%A2%BC/picture_hu1639710fd0ad78c56cba2ce9516a2080_2070766_1600x0_resize_q75_box.jpg 1600w"
width="800"
height="645"
loading="lazy"
alt="Featured image of post PostgreSQL pgAdmin重置密碼" />
</a>
</div>
<div class="article-details">
<header class="article-category">
<a href="/TsaiRongFu-Hugo/categories/postgresql/" >
PostgreSQL
</a>
</header>
<div class="article-title-wrapper">
<h2 class="article-title">
<a href="/TsaiRongFu-Hugo/p/postgresql-pgadmin%E9%87%8D%E7%BD%AE%E5%AF%86%E7%A2%BC/">PostgreSQL pgAdmin重置密碼</a>
</h2>
</div>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">May 08, 2022</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
閱讀時間: 1 分鐘
</time>
</div>
</footer>
<footer class="article-translations">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-language" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 5h7" />
<path d="M9 3v2c0 4.418 -2.239 8 -5 8" />
<path d="M5 9c-.003 2.144 2.952 3.908 6.7 4" />
<path d="M12 20l4 -9l4 9" />
<path d="M19.1 18h-6.2" />
</svg>
<div>
<a href="https://npust-dnlab.github.io/TsaiRongFu-Hugo/en/p/postgresql-pgadmin-reset-password/" class="link">English</a>
</div>
</footer>
</div>
</header>
</article>
<article class="has-image">
<header class="article-header">
<div class="article-image">
<a href="/TsaiRongFu-Hugo/p/windows-port%E7%8B%80%E6%85%8B%E6%8C%87%E4%BB%A4/">
<img src="/TsaiRongFu-Hugo/p/windows-port%E7%8B%80%E6%85%8B%E6%8C%87%E4%BB%A4/picture_hu799afabd979f4c47aeec07191c470a93_523318_800x0_resize_q75_box.jpg"
srcset="/TsaiRongFu-Hugo/p/windows-port%E7%8B%80%E6%85%8B%E6%8C%87%E4%BB%A4/picture_hu799afabd979f4c47aeec07191c470a93_523318_800x0_resize_q75_box.jpg 800w, /TsaiRongFu-Hugo/p/windows-port%E7%8B%80%E6%85%8B%E6%8C%87%E4%BB%A4/picture_hu799afabd979f4c47aeec07191c470a93_523318_1600x0_resize_q75_box.jpg 1600w"
width="800"
height="520"
loading="lazy"
alt="Featured image of post Windows port狀態指令" />
</a>
</div>
<div class="article-details">
<header class="article-category">
<a href="/TsaiRongFu-Hugo/categories/windows/" >
Windows
</a>
</header>
<div class="article-title-wrapper">
<h2 class="article-title">
<a href="/TsaiRongFu-Hugo/p/windows-port%E7%8B%80%E6%85%8B%E6%8C%87%E4%BB%A4/">Windows port狀態指令</a>
</h2>
</div>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Nov 26, 2021</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
閱讀時間: 1 分鐘
</time>
</div>
</footer>
<footer class="article-translations">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-language" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 5h7" />
<path d="M9 3v2c0 4.418 -2.239 8 -5 8" />
<path d="M5 9c-.003 2.144 2.952 3.908 6.7 4" />
<path d="M12 20l4 -9l4 9" />
<path d="M19.1 18h-6.2" />
</svg>
<div>
<a href="https://npust-dnlab.github.io/TsaiRongFu-Hugo/en/p/windows-port-state-command/" class="link">English</a>
</div>
</footer>
</div>
</header>
</article>
<article class="has-image">
<header class="article-header">
<div class="article-image">
<a href="/TsaiRongFu-Hugo/p/%E8%BB%9F%E9%AB%94%E8%87%AA%E5%8B%95%E5%8C%96%E5%AE%89%E5%85%A8%E6%AA%A2%E6%B8%AC%E6%8A%80%E8%A1%93/">
<img src="/TsaiRongFu-Hugo/p/%E8%BB%9F%E9%AB%94%E8%87%AA%E5%8B%95%E5%8C%96%E5%AE%89%E5%85%A8%E6%AA%A2%E6%B8%AC%E6%8A%80%E8%A1%93/picture_hu764979af59315c4636aa46cc2b9e727d_773279_800x0_resize_q75_box.jpg"
srcset="/TsaiRongFu-Hugo/p/%E8%BB%9F%E9%AB%94%E8%87%AA%E5%8B%95%E5%8C%96%E5%AE%89%E5%85%A8%E6%AA%A2%E6%B8%AC%E6%8A%80%E8%A1%93/picture_hu764979af59315c4636aa46cc2b9e727d_773279_800x0_resize_q75_box.jpg 800w, /TsaiRongFu-Hugo/p/%E8%BB%9F%E9%AB%94%E8%87%AA%E5%8B%95%E5%8C%96%E5%AE%89%E5%85%A8%E6%AA%A2%E6%B8%AC%E6%8A%80%E8%A1%93/picture_hu764979af59315c4636aa46cc2b9e727d_773279_1600x0_resize_q75_box.jpg 1600w"
width="800"
height="535"
loading="lazy"
alt="Featured image of post 軟體自動化安全檢測技術" />
</a>
</div>
<div class="article-details">
<div class="article-title-wrapper">
<h2 class="article-title">
<a href="/TsaiRongFu-Hugo/p/%E8%BB%9F%E9%AB%94%E8%87%AA%E5%8B%95%E5%8C%96%E5%AE%89%E5%85%A8%E6%AA%A2%E6%B8%AC%E6%8A%80%E8%A1%93/">軟體自動化安全檢測技術</a>
</h2>