-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1269 lines (1035 loc) · 65.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta name="generator" content="Hugo 0.127.0">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script type="application/javascript" src='https://yuweizzz.github.io/js/theme-mode.js'></script>
<link rel="stylesheet" href='https://yuweizzz.github.io/css/frameworks.min.css' />
<link rel="stylesheet" href='https://yuweizzz.github.io/css/github.min.css' />
<link rel="stylesheet" href='https://yuweizzz.github.io/css/github-style.css' />
<link rel="stylesheet" href='https://yuweizzz.github.io/css/light.css' />
<link rel="stylesheet" href='https://yuweizzz.github.io/css/dark.css' />
<link rel="stylesheet" href='https://yuweizzz.github.io/css/syntax.css' />
<title>Wei's blog</title>
<link rel="icon" type="image/x-icon" href='/images/favicon.svg'>
<meta name="theme-color" content="#1e2327">
<meta name="description"
content="" />
<meta name="keywords"
content='blog, google analytics' />
<meta name="robots" content="noodp" />
<link rel="canonical" href="https://yuweizzz.github.io/" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Wei's blog" />
<meta name="twitter:description"
content="Freedom should be an opportunity that can make he becomes better." />
<meta name="twitter:site" content="https://yuweizzz.github.io/" />
<meta name="twitter:creator" content="" />
<meta name="twitter:image"
content="https://yuweizzz.github.io/">
<meta property="og:type" content="website" />
<meta property="og:title" content="Wei's blog">
<meta property="og:description"
content="Freedom should be an opportunity that can make he becomes better." />
<meta property="og:url" content="https://yuweizzz.github.io/" />
<meta property="og:site_name" content="Wei's blog" />
<meta property="og:image"
content="https://yuweizzz.github.io/">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
<link href="/index.xml" rel="alternate" type="application/rss+xml" title="Wei's blog" />
<link href="/index.json" rel="alternate" type="application/json" title="Wei's blog" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RFSQDKSFR1"></script>
<script>
var doNotTrack = false;
if ( false ) {
var dnt = (navigator.doNotTrack || window.doNotTrack || navigator.msDoNotTrack);
var doNotTrack = (dnt == "1" || dnt == "yes");
}
if (!doNotTrack) {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RFSQDKSFR1');
}
</script>
</head>
<body>
<div style="position: relative">
<header class="Header js-details-container Details px-3 px-md-4 px-lg-5 flex-wrap flex-md-nowrap open Details--on">
<div class="Header-item mobile-none" style="margin-top: -4px; margin-bottom: -4px;">
<a class="Header-link" href="https://yuweizzz.github.io/">
<img class="octicon" height="32" width="32" src="/images/github-mark-white.png">
</a>
</div>
<div class="Header-item d-md-none">
<button class="Header-link btn-link js-details-target" type="button"
onclick="document.querySelector('#header-search').style.display = document.querySelector('#header-search').style.display == 'none'? 'block': 'none'">
<svg height="24" class="octicon octicon-three-bars" viewBox="0 0 16 16" version="1.1" width="24">
<path fill-rule="evenodd" d="M1 2.75A.75.75 0 011.75 2h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 2.75zm0 5A.75.75 0 011.75 7h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 7.75zM1.75 12a.75.75 0 100 1.5h12.5a.75.75 0 100-1.5H1.75z">
</path>
</svg>
</button>
</div>
<div style="display: none;" id="header-search"
class="Header-item Header-item--full flex-column flex-md-row width-full flex-order-2 flex-md-order-none mr-0 mr-md-3 mt-3 mt-md-0 Details-content--hidden-not-important d-md-flex">
<div
class="Header-search header-search flex-auto js-site-search position-relative flex-self-stretch flex-md-self-auto mb-3 mb-md-0 mr-0 mr-md-3 scoped-search site-scoped-search js-jump-to">
<div class="position-relative">
<form target="_blank" id="search-form" action="" accept-charset="UTF-8" method="get"
autocomplete="off">
<label
class="Header-search-label form-control input-sm header-search-wrapper p-0 js-chromeless-input-container header-search-wrapper-jump-to position-relative d-flex flex-justify-between flex-items-center">
<input type="text"
class="Header-search-input form-control input-sm header-search-input jump-to-field js-jump-to-field js-site-search-focus js-site-search-field is-clearable"
name="q" value="" placeholder="Search" autocomplete="off">
</label>
</form>
</div>
</div>
</div>
<div class="Header-item Header-item--full flex-justify-center d-md-none position-relative">
<a class="Header-link " href="https://yuweizzz.github.io/">
<img class="octicon octicon-mark-github v-align-middle" height="32" width="32" src="/images/github-mark-white.png">
</a>
</div>
<div class="Header-item" style="margin-right: 0;">
<a href="javascript:void(0)" class="Header-link no-select" onclick="switchTheme()">
<svg style="fill: var(--color-profile-color-modes-toggle-moon);" class="no-select" viewBox="0 0 16 16"
version="1.1" width="16" height="16">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M4.52208 7.71754C7.5782 7.71754 10.0557 5.24006 10.0557 2.18394C10.0557 1.93498 10.0392 1.68986 10.0074 1.44961C9.95801 1.07727 10.3495 0.771159 10.6474 0.99992C12.1153 2.12716 13.0615 3.89999 13.0615 5.89383C13.0615 9.29958 10.3006 12.0605 6.89485 12.0605C3.95334 12.0605 1.49286 10.001 0.876728 7.24527C0.794841 6.87902 1.23668 6.65289 1.55321 6.85451C2.41106 7.40095 3.4296 7.71754 4.52208 7.71754Z">
</path>
</svg>
</a>
</div>
</header>
</div>
<div id="search-result" class="container-lg px-3 new-discussion-timeline" style="display: none;">
</div>
<div class="application-main">
<main>
<div class="mt-4 position-sticky top-0 d-none d-md-block bg-white width-full border-bottom color-border-secondary"
style="z-index:3;">
<div class="container-xl px-3 px-md-4 px-lg-5">
<div class="gutter-condensed gutter-lg flex-column flex-md-row d-flex">
<div class="flex-shrink-0 col-12 col-md-3 mb-4 mb-md-0">
</div>
<div class="flex-shrink-0 col-12 col-md-9 mb-4 mb-md-0">
<div class="UnderlineNav width-full box-shadow-none hx_UnderlineNav-with-profile-color-modes-banner">
<nav class="UnderlineNav-body">
<a class="UnderlineNav-item selected " href="https://yuweizzz.github.io/">
<svg class="octicon octicon-book UnderlineNav-octicon hide-sm" height="16" viewBox="0 0 16 16"
version="1.1" width="16">
<path fill-rule="evenodd"
d="M0 1.75A.75.75 0 01.75 1h4.253c1.227 0 2.317.59 3 1.501A3.744 3.744 0 0111.006 1h4.245a.75.75 0 01.75.75v10.5a.75.75 0 01-.75.75h-4.507a2.25 2.25 0 00-1.591.659l-.622.621a.75.75 0 01-1.06 0l-.622-.621A2.25 2.25 0 005.258 13H.75a.75.75 0 01-.75-.75V1.75zm8.755 3a2.25 2.25 0 012.25-2.25H14.5v9h-3.757c-.71 0-1.4.201-1.992.572l.004-7.322zm-1.504 7.324l.004-5.073-.002-2.253A2.25 2.25 0 005.003 2.5H1.5v9h3.757a3.75 3.75 0 011.994.574z">
</path>
</svg>
Overview
</a>
<a class="UnderlineNav-item " href="https://yuweizzz.github.io/post">
<svg class="octicon octicon-repo UnderlineNav-octicon hide-sm" height="16" viewBox="0 0 16 16"
version="1.1" width="16">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg>
Posts
<span class="Counter">54</span>
</a>
</nav>
<div class="profile-color-modes js-promo-color-modes-banner-profile isInitialToggle">
<svg width="106" height="60" viewBox="0 0 106 60" fill="none" stroke-width="3" stroke-linecap="round"
stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
<g class="profile-color-modes-illu-group profile-color-modes-illu-red">
<path d="M37.5 58.5V57.5C37.5 49.768 43.768 43.5 51.5 43.5V43.5C59.232 43.5 65.5 49.768 65.5 57.5V58.5">
</path>
</g>
<g class="profile-color-modes-illu-group profile-color-modes-illu-orange">
<path
d="M104.07 58.5C103.401 55.092 97.7635 54.3869 95.5375 57.489C97.4039 54.6411 99.7685 48.8845 94.6889 46.6592C89.4817 44.378 86.1428 50.1604 85.3786 54.1158C85.9519 50.4768 83.7226 43.294 78.219 44.6737C72.7154 46.0534 72.7793 51.3754 74.4992 55.489C74.169 54.7601 72.4917 53.3567 70.5 52.8196">
</path>
</g>
<g class="profile-color-modes-illu-group profile-color-modes-illu-purple">
<path
d="M5.51109 58.5V52.5C5.51109 41.4543 14.4654 32.5 25.5111 32.5C31.4845 32.5 36.8464 35.1188 40.5111 39.2709C40.7212 39.5089 40.9258 39.7521 41.1245 40">
</path>
<path d="M27.511 49.5C29.6777 49.5 28.911 49.5 32.511 49.5"></path>
<path d="M27.511 56.5C29.6776 56.5 26.911 56.5 30.511 56.5"></path>
</g>
<g class="profile-color-modes-illu-group profile-color-modes-illu-green">
<circle cx="5.5" cy="12.5" r="4"></circle>
<circle cx="18.5" cy="5.5" r="4"></circle>
<path d="M18.5 9.5L18.5 27.5"></path>
<path d="M18.5 23.5C6 23.5 5.5 23.6064 5.5 16.5"></path>
</g>
<g class="profile-color-modes-illu-group profile-color-modes-illu-blue">
<g class="profile-color-modes-illu-frame">
<path
d="M40.6983 31.5C40.5387 29.6246 40.6456 28.0199 41.1762 27.2317C42.9939 24.5312 49.7417 26.6027 52.5428 30.2409C54.2551 29.8552 56.0796 29.6619 57.9731 29.6619C59.8169 29.6619 61.5953 29.8452 63.2682 30.211C66.0833 26.5913 72.799 24.5386 74.6117 27.2317C75.6839 28.8246 75.0259 33.7525 73.9345 37.5094C74.2013 37.9848 74.4422 38.4817 74.6555 39">
</path>
</g>
<g class="profile-color-modes-illu-frame">
<path
d="M41.508 31.5C41.6336 31.2259 41.7672 30.9582 41.9085 30.6968C40.7845 26.9182 40.086 21.8512 41.1762 20.2317C42.9939 17.5312 49.7417 19.6027 52.5428 23.2409C54.2551 22.8552 56.0796 22.6619 57.9731 22.6619C59.8169 22.6619 61.5953 22.8452 63.2682 23.211C66.0833 19.5913 72.799 17.5386 74.6117 20.2317C75.6839 21.8246 75.0259 26.7525 73.9345 30.5094C75.1352 32.6488 75.811 35.2229 75.811 38.2283C75.811 38.49 75.8058 38.7472 75.7957 39">
</path>
<path d="M49.4996 33V35.6757"></path>
<path d="M67.3375 33V35.6757"></path>
</g>
<g class="profile-color-modes-illu-frame">
<path
d="M41.508 31.5C41.6336 31.2259 41.7672 30.9582 41.9085 30.6968C40.7845 26.9182 40.086 21.8512 41.1762 20.2317C42.9939 17.5312 49.7417 19.6027 52.5428 23.2409C54.2551 22.8552 56.0796 22.6619 57.9731 22.6619C59.8169 22.6619 61.5953 22.8452 63.2682 23.211C66.0833 19.5913 72.799 17.5386 74.6117 20.2317C75.6839 21.8246 75.0259 26.7525 73.9345 30.5094C75.1352 32.6488 75.811 35.2229 75.811 38.2283C75.811 38.49 75.8058 38.7472 75.7957 39">
</path>
</g>
<g class="profile-color-modes-illu-frame">
<path
d="M41.508 31.5C41.6336 31.2259 41.7672 30.9582 41.9085 30.6968C40.7845 26.9182 40.086 21.8512 41.1762 20.2317C42.9939 17.5312 49.7417 19.6027 52.5428 23.2409C54.2551 22.8552 56.0796 22.6619 57.9731 22.6619C59.8169 22.6619 61.5953 22.8452 63.2682 23.211C66.0833 19.5913 72.799 17.5386 74.6117 20.2317C75.6839 21.8246 75.0259 26.7525 73.9345 30.5094C75.1352 32.6488 75.811 35.2229 75.811 38.2283C75.811 38.49 75.8058 38.7472 75.7957 39">
</path>
<path d="M49.4996 33V35.6757"></path>
<path d="M67.3375 33V35.6757"></path>
</g>
<g class="profile-color-modes-illu-frame">
<path
d="M41.508 31.5C41.6336 31.2259 41.7672 30.9582 41.9085 30.6968C40.7845 26.9182 40.086 21.8512 41.1762 20.2317C42.9939 17.5312 49.7417 19.6027 52.5428 23.2409C54.2551 22.8552 56.0796 22.6619 57.9731 22.6619C59.8169 22.6619 61.5953 22.8452 63.2682 23.211C66.0833 19.5913 72.799 17.5386 74.6117 20.2317C75.6839 21.8246 75.0259 26.7525 73.9345 30.5094C75.1352 32.6488 75.811 35.2229 75.811 38.2283C75.811 38.49 75.8058 38.7472 75.7957 39">
</path>
</g>
<g class="profile-color-modes-illu-frame">
<path
d="M41.508 31.5C41.6336 31.2259 41.7672 30.9582 41.9085 30.6968C40.7845 26.9182 40.086 21.8512 41.1762 20.2317C42.9939 17.5312 49.7417 19.6027 52.5428 23.2409C54.2551 22.8552 56.0796 22.6619 57.9731 22.6619C59.8169 22.6619 61.5953 22.8452 63.2682 23.211C66.0833 19.5913 72.799 17.5386 74.6117 20.2317C75.6839 21.8246 75.0259 26.7525 73.9345 30.5094C75.1352 32.6488 75.811 35.2229 75.811 38.2283C75.811 38.49 75.8058 38.7472 75.7957 39">
</path>
<path d="M49.4996 33V35.6757"></path>
<path d="M67.3375 33V35.6757"></path>
</g>
<g class="profile-color-modes-illu-frame">
<path
d="M73.4999 40.2236C74.9709 38.2049 75.8108 35.5791 75.8108 32.2283C75.8108 29.2229 75.1351 26.6488 73.9344 24.5094C75.0258 20.7525 75.6838 15.8246 74.6116 14.2317C72.7989 11.5386 66.0832 13.5913 63.2681 17.211C61.5952 16.8452 59.8167 16.6619 57.973 16.6619C56.0795 16.6619 54.2549 16.8552 52.5427 17.2409C49.7416 13.6027 42.9938 11.5312 41.176 14.2317C40.0859 15.8512 40.7843 20.9182 41.9084 24.6968C41.003 26.3716 40.4146 28.3065 40.2129 30.5">
</path>
<path d="M82.9458 30.5471L76.8413 31.657"></path>
<path d="M76.2867 34.4319L81.8362 37.7616"></path>
<path d="M49.4995 27.8242V30.4999"></path>
<path d="M67.3374 27.8242V30.4998"></path>
</g>
<g class="profile-color-modes-illu-frame">
<path
d="M45.3697 34.2658C41.8877 32.1376 39.7113 28.6222 39.7113 23.2283C39.7113 20.3101 40.3483 17.7986 41.4845 15.6968C40.3605 11.9182 39.662 6.85125 40.7522 5.23168C42.5699 2.53117 49.3177 4.6027 52.1188 8.24095C53.831 7.85521 55.6556 7.66186 57.5491 7.66186C59.3929 7.66186 61.1713 7.84519 62.8442 8.21095C65.6593 4.59134 72.375 2.5386 74.1877 5.23168C75.2599 6.82461 74.6019 11.7525 73.5105 15.5094C74.7112 17.6488 75.3869 20.2229 75.3869 23.2283C75.3869 28.6222 73.2105 32.1376 69.7285 34.2658C70.8603 35.5363 72.6057 38.3556 73.3076 40">
</path>
<path d="M49.0747 19.8242V22.4999"></path>
<path
d="M54.0991 28C54.6651 29.0893 55.7863 30.0812 57.9929 30.0812C59.0642 30.0812 59.8797 29.8461 60.5 29.4788">
</path>
<path d="M66.9126 19.8242V22.4999"></path>
<path d="M33.2533 20.0237L39.0723 22.1767"></path>
<path d="M39.1369 25.0058L33.0935 27.3212"></path>
<path d="M81.8442 19.022L76.0252 21.1751"></path>
<path d="M75.961 24.0041L82.0045 26.3196"></path>
</g>
<g class="profile-color-modes-illu-frame">
<path
d="M73.4999 40.2236C74.9709 38.2049 75.8108 35.5791 75.8108 32.2283C75.8108 29.2229 75.1351 26.6488 73.9344 24.5094C75.0258 20.7525 75.6838 15.8246 74.6116 14.2317C72.7989 11.5386 66.0832 13.5913 63.2681 17.211C61.5952 16.8452 59.8167 16.6619 57.973 16.6619C56.0795 16.6619 54.2549 16.8552 52.5427 17.2409C49.7416 13.6027 42.9938 11.5312 41.176 14.2317C40.0859 15.8512 40.7843 20.9182 41.9084 24.6968C41.003 26.3716 40.4146 28.3065 40.2129 30.5">
</path>
<path d="M82.9458 30.5471L76.8413 31.657"></path>
<path d="M76.2867 34.4319L81.8362 37.7616"></path>
<path d="M49.4995 27.8242V30.4999"></path>
<path d="M67.3374 27.8242V30.4998"></path>
</g>
<g class="profile-color-modes-illu-frame">
<path
d="M40.6983 31.5C40.5387 29.6246 40.6456 28.0199 41.1762 27.2317C42.9939 24.5312 49.7417 26.6027 52.5428 30.2409C54.2551 29.8552 56.0796 29.6619 57.9731 29.6619C59.8169 29.6619 61.5953 29.8452 63.2682 30.211C66.0833 26.5913 72.799 24.5386 74.6117 27.2317C75.6839 28.8246 75.0259 33.7525 73.9345 37.5094C74.2013 37.9848 74.4422 38.4817 74.6555 39">
</path>
</g>
</g>
</svg>
<span class="profile-color-modes-toggle js-promo-color-modes-toggle no-select" tabindex="0"
onclick="switchTheme()">
<div class="profile-color-modes-toggle-track no-select"></div>
<div class="profile-color-modes-toggle-thumb js-promo-color-modes-thumb">
<svg style="fill: var(--color-profile-color-modes-toggle-moon); margin: 7px 0 0 7px;" width="14"
height="13" viewBox="0 0 14 13" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M4.52208 7.71754C7.5782 7.71754 10.0557 5.24006 10.0557 2.18394C10.0557 1.93498 10.0392 1.68986 10.0074 1.44961C9.95801 1.07727 10.3495 0.771159 10.6474 0.99992C12.1153 2.12716 13.0615 3.89999 13.0615 5.89383C13.0615 9.29958 10.3006 12.0605 6.89485 12.0605C3.95334 12.0605 1.49286 10.001 0.876728 7.24527C0.794841 6.87902 1.23668 6.65289 1.55321 6.85451C2.41106 7.40095 3.4296 7.71754 4.52208 7.71754Z">
</path>
</svg>
</div>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-xl px-3 px-md-4 px-lg-5">
<div class="gutter-condensed gutter-lg flex-column flex-md-row d-flex">
<div class="flex-shrink-0 col-12 col-md-3 mb-4 mb-md-0">
<div class="h-card mt-md-n5" style="margin-top:24px">
<div class="user-profile-sticky-bar js-user-profile-sticky-bar d-none d-md-block" id="headerStuck">
<div class="user-profile-mini-vcard d-table">
<span class="user-profile-mini-avatar d-table-cell v-align-middle lh-condensed-ultra pr-2">
<img class="rounded-1 avatar-user" height="32" width="32" src="https://yuweizzz.github.io/images/avatar.png">
</span>
<span class="d-table-cell v-align-middle lh-condensed">
<strong>Wei</strong>
</span>
</div>
</div>
<div class="clearfix d-flex d-md-block flex-items-center mb-4 mb-md-0">
<div class="position-relative d-inline-block col-2 col-md-12 mr-3 mr-md-0 flex-shrink-0" style="z-index:4;">
<a href="https://yuweizzz.github.io/images/avatar.png">
<img style="height:auto;" alt="Avatar" width="260" height="260" id="headerImg"
class="avatar avatar-user width-full border bg-white" src="https://yuweizzz.github.io/images/avatar.png">
</a>
</div>
<div
class="vcard-names-container float-left col-10 col-md-12 pt-1 pt-md-3 pb-1 pb-md-3 js-sticky js-user-profile-sticky-fields"
data-original-top="0px" style="position: sticky;">
<h1 class="vcard-names pl-2 pl-md-0">
<span class="p-name vcard-fullname d-block overflow-hidden">Wei</span>
<span class="p-nickname vcard-username d-block">yuweizzz</span>
</h1>
</div>
</div>
<div class="p-note user-profile-bio mb-3 js-user-profile-bio f4">
<div>Freedom should be an opportunity that can make he becomes better.</div>
</div>
<div class="d-flex flex-column">
<div class="js-profile-editable-area d-flex flex-column d-md-block">
<ul class="vcard-details">
<li class="vcard-detail pt-1 css-truncate css-truncate-target hide-sm hide-md">
<svg class="octicon octicon-location" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M11.536 3.464a5 5 0 010 7.072L8 14.07l-3.536-3.535a5 5 0 117.072-7.072v.001zm1.06 8.132a6.5 6.5 0 10-9.192 0l3.535 3.536a1.5 1.5 0 002.122 0l3.535-3.536zM8 9a2 2 0 100-4 2 2 0 000 4z">
</path>
</svg>
<span class="p-label">China</span>
</li>
<li class="vcard-detail pt-1 css-truncate css-truncate-target ">
<svg class="octicon octicon-mail" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M1.75 2A1.75 1.75 0 000 3.75v.736a.75.75 0 000 .027v7.737C0 13.216.784 14 1.75 14h12.5A1.75 1.75 0 0016 12.25v-8.5A1.75 1.75 0 0014.25 2H1.75zM14.5 4.07v-.32a.25.25 0 00-.25-.25H1.75a.25.25 0 00-.25.25v.32L8 7.88l6.5-3.81zm-13 1.74v6.441c0 .138.112.25.25.25h12.5a.25.25 0 00.25-.25V5.809L8.38 9.397a.75.75 0 01-.76 0L1.5 5.809z">
</path>
</svg>
<a class="u-email link-gray-dark " href="mailto:yuweiy@foxmail.com">yuweiy@foxmail.com</a>
</li>
<li class="vcard-detail pt-1 css-truncate css-truncate-target ">
<svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z">
</path>
</svg>
<a rel="nofollow me" class="link-gray-dark" href="https://yuweizzz.github.io/">https://yuweizzz.github.io/</a>
</li>
</ul>
</div>
</div>
<div class="border-top color-border-secondary pt-3 mt-3 clearfix hide-sm hide-md">
<h2 class="mb-2 h4">Organizations</h2>
<div style="display:flex;justify-content:flex-start;flex-wrap:wrap;margin-bottom:3px;">
<a style="margin: 0 10px 10px 0;" href="https://github.com/yuweizzz">
<svg id="github-icon" viewBox="0 0 16 16" version="1.1" width="32" height="32" fill="#24292e">
<path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z">
</path>
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="flex-shrink-0 col-12 col-md-9 mb-4 mb-md-0">
<div class="UnderlineNav user-profile-nav d-block d-md-none position-sticky top-0 pl-3 ml-n3 mr-n3 pr-3 bg-white"
style="z-index:3;">
<nav class="UnderlineNav-body">
<a class="UnderlineNav-item selected " href="https://yuweizzz.github.io/">
<svg class="octicon octicon-book UnderlineNav-octicon hide-sm" height="16" viewBox="0 0 16 16" version="1.1"
width="16">
<path fill-rule="evenodd"
d="M0 1.75A.75.75 0 01.75 1h4.253c1.227 0 2.317.59 3 1.501A3.744 3.744 0 0111.006 1h4.245a.75.75 0 01.75.75v10.5a.75.75 0 01-.75.75h-4.507a2.25 2.25 0 00-1.591.659l-.622.621a.75.75 0 01-1.06 0l-.622-.621A2.25 2.25 0 005.258 13H.75a.75.75 0 01-.75-.75V1.75zm8.755 3a2.25 2.25 0 012.25-2.25H14.5v9h-3.757c-.71 0-1.4.201-1.992.572l.004-7.322zm-1.504 7.324l.004-5.073-.002-2.253A2.25 2.25 0 005.003 2.5H1.5v9h3.757a3.75 3.75 0 011.994.574z">
</path>
</svg>
Overview
</a>
<a class='UnderlineNav-item '
href="https://yuweizzz.github.io/post">
<svg class="octicon octicon-repo UnderlineNav-octicon hide-sm" height="16" viewBox="0 0 16 16" version="1.1"
width="16">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg>
Posts
<span class="Counter ">54</span>
</a>
</nav>
</div>
<div>
<div class="position-relative">
<div class="Box mt-4">
<div class="Box-body p-4">
<div class="d-flex flex-justify-between">
<div class="text-mono text-small mb-3">
<svg class="octicon octicon-octoface" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M1.326 1.973a1.2 1.2 0 011.49-.832c.387.112.977.307 1.575.602.586.291 1.243.71 1.7 1.296.022.027.042.056.061.084A13.22 13.22 0 018 3c.67 0 1.289.037 1.861.108l.051-.07c.457-.586 1.114-1.004 1.7-1.295a9.654 9.654 0 011.576-.602 1.2 1.2 0 011.49.832c.14.493.356 1.347.479 2.29.079.604.123 1.28.07 1.936.541.977.773 2.11.773 3.301C16 13 14.5 15 8 15s-8-2-8-5.5c0-1.034.238-2.128.795-3.117-.08-.712-.034-1.46.052-2.12.122-.943.34-1.797.479-2.29zM8 13.065c6 0 6.5-2 6-4.27C13.363 5.905 11.25 5 8 5s-5.363.904-6 3.796c-.5 2.27 0 4.27 6 4.27z">
</path>
<path
d="M4 8a1 1 0 012 0v1a1 1 0 01-2 0V8zm2.078 2.492c-.083-.264.146-.492.422-.492h3c.276 0 .505.228.422.492C9.67 11.304 8.834 12 8 12c-.834 0-1.669-.696-1.922-1.508zM10 8a1 1 0 112 0v1a1 1 0 11-2 0V8z">
</path>
</svg>
README<span class="text-gray-light">.md</span>
</div>
</div>
<article class="markdown-body entry-content container-lg f5"><p><code>Hello World!</code></p>
<h2 id="repository">Repository</h2>
<ul>
<li><a href="https://github.com/yuweizzz/custom-live2d">Custom-live2d</a> :一个在 Web 页面上运行 live2D 模型的简易插件</li>
<li><a href="https://github.com/yuweizzz/sidecar">Sidecar</a> :基于 mitm 的 https 代理</li>
<li><a href="https://github.com/yuweizzz/go-hpts">Go-hpts</a> :将 socks proxy 转换成 http proxy 的工具</li>
<li><a href="https://github.com/yuweizzz/go-txtfile-viewer">Go-txtfile-viewer</a> :简单的文本查看工具,通过浏览器查看本地文档</li>
<li><a href="https://github.com/yuweizzz/go-pxe-installer">Go-pxe-installer</a> :通过 PXE 启动,在虚拟机环境下快速安装 Debian 12 的工具</li>
<li><a href="https://github.com/yuweizzz/pam-monitor">Pam-monitor</a> :阻挡弱密码爆破流量并收集对应的弱密码字典,简单的 eBPF 学习项目</li>
</ul>
</article>
</div>
</div>
<div class="mt-4">
<div class="js-pinned-items-reorder-container">
<h2 class="f4 mb-2 text-normal">
Popular posts
</h2>
<ol class="d-flex flex-wrap list-style-none gutter-condensed mb-4 js-pinned-items-reorder-list">
<li class="col-12 col-md-6 col-lg-6 mb-3 d-flex flex-content-stretch">
<div
class="Box pinned-item-list-item d-flex p-3 width-full js-pinned-item-list-item public source reorderable sortable-button-item">
<div class="pinned-item-list-item-content">
<div class="d-flex width-full flex-items-center position-relative">
<svg class="octicon octicon-repo mr-2 text-gray flex-shrink-0" viewBox="0 0 16 16" version="1.1"
width="16" height="16">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg>
<a class="text-bold flex-auto min-width-0" href="https://yuweizzz.github.io/post/export_windows_system_installed_software_inventory/">
<span class="repo" title="通过命令行导出 Windows 系统安装软件清单">通过命令行导出 Windows 系统安装软件清单</span>
</a>
</div>
<div name="summary" class="pinned-item-desc text-gray text-small d-block mt-2 mb-3">
<p>通过 PowerShell 命令导出 Windows 系统安装软件清单。</p>
</div>
<p class="mb-0 f6 text-gray">
<a href="/tags/windows" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
Windows
</a>
<a href="/tags/powershell" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
PowerShell
</a>
</p>
</div>
</div>
</li>
<li class="col-12 col-md-6 col-lg-6 mb-3 d-flex flex-content-stretch">
<div
class="Box pinned-item-list-item d-flex p-3 width-full js-pinned-item-list-item public source reorderable sortable-button-item">
<div class="pinned-item-list-item-content">
<div class="d-flex width-full flex-items-center position-relative">
<svg class="octicon octicon-repo mr-2 text-gray flex-shrink-0" viewBox="0 0 16 16" version="1.1"
width="16" height="16">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg>
<a class="text-bold flex-auto min-width-0" href="https://yuweizzz.github.io/post/replace_virtualbox_pxe_rom/">
<span class="repo" title="替换 VirtualBox 内置网卡 ROM">替换 VirtualBox 内置网卡 ROM</span>
</a>
</div>
<div name="summary" class="pinned-item-desc text-gray text-small d-block mt-2 mb-3">
<p>替换 VirtualBox 内置网卡的 ROM ,解决 iPXE 功能缺失问题。</p>
</div>
<p class="mb-0 f6 text-gray">
<a href="/tags/pxe" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
PXE
</a>
<a href="/tags/virtualbox" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
VirtualBox
</a>
</p>
</div>
</div>
</li>
<li class="col-12 col-md-6 col-lg-6 mb-3 d-flex flex-content-stretch">
<div
class="Box pinned-item-list-item d-flex p-3 width-full js-pinned-item-list-item public source reorderable sortable-button-item">
<div class="pinned-item-list-item-content">
<div class="d-flex width-full flex-items-center position-relative">
<svg class="octicon octicon-repo mr-2 text-gray flex-shrink-0" viewBox="0 0 16 16" version="1.1"
width="16" height="16">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg>
<a class="text-bold flex-auto min-width-0" href="https://yuweizzz.github.io/post/boot_virtual_machines_on_qemu/">
<span class="repo" title="通过 QEMU 运行虚拟实例">通过 QEMU 运行虚拟实例</span>
</a>
</div>
<div name="summary" class="pinned-item-desc text-gray text-small d-block mt-2 mb-3">
<p>在 Linux 系统中通过 QEMU 运行虚拟实例。</p>
</div>
<p class="mb-0 f6 text-gray">
<a href="/tags/linux" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
Linux
</a>
<a href="/tags/qemu" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
QEMU
</a>
</p>
</div>
</div>
</li>
<li class="col-12 col-md-6 col-lg-6 mb-3 d-flex flex-content-stretch">
<div
class="Box pinned-item-list-item d-flex p-3 width-full js-pinned-item-list-item public source reorderable sortable-button-item">
<div class="pinned-item-list-item-content">
<div class="d-flex width-full flex-items-center position-relative">
<svg class="octicon octicon-repo mr-2 text-gray flex-shrink-0" viewBox="0 0 16 16" version="1.1"
width="16" height="16">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg>
<a class="text-bold flex-auto min-width-0" href="https://yuweizzz.github.io/post/basic_required_of_how_dhcp_support_to_pxe_boot/">
<span class="repo" title="DHCP 支持 PXE 启动的基本条件">DHCP 支持 PXE 启动的基本条件</span>
</a>
</div>
<div name="summary" class="pinned-item-desc text-gray text-small d-block mt-2 mb-3">
<p>这篇笔记用来记录在虚拟机环境下,如何实现 DHCP 服务支持 PXE 启动。</p>
</div>
<p class="mb-0 f6 text-gray">
<a href="/tags/linux" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
Linux
</a>
<a href="/tags/pxe" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
PXE
</a>
<a href="/tags/dhcp" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
DHCP
</a>
</p>
</div>
</div>
</li>
<li class="col-12 col-md-6 col-lg-6 mb-3 d-flex flex-content-stretch">
<div
class="Box pinned-item-list-item d-flex p-3 width-full js-pinned-item-list-item public source reorderable sortable-button-item">
<div class="pinned-item-list-item-content">
<div class="d-flex width-full flex-items-center position-relative">
<svg class="octicon octicon-repo mr-2 text-gray flex-shrink-0" viewBox="0 0 16 16" version="1.1"
width="16" height="16">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg>
<a class="text-bold flex-auto min-width-0" href="https://yuweizzz.github.io/post/reference_of_linux_kernel_parameter_configuration/">
<span class="repo" title="常用 Linux 内核参数配置参考">常用 Linux 内核参数配置参考</span>
</a>
</div>
<div name="summary" class="pinned-item-desc text-gray text-small d-block mt-2 mb-3">
<p>这篇笔记用来记录一些常用 Linux 内核参数配置参考。</p>
</div>
<p class="mb-0 f6 text-gray">
<a href="/tags/linux" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
Linux
</a>
<a href="/tags/kernel" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
Kernel
</a>
</p>
</div>
</div>
</li>
<li class="col-12 col-md-6 col-lg-6 mb-3 d-flex flex-content-stretch">
<div
class="Box pinned-item-list-item d-flex p-3 width-full js-pinned-item-list-item public source reorderable sortable-button-item">
<div class="pinned-item-list-item-content">
<div class="d-flex width-full flex-items-center position-relative">
<svg class="octicon octicon-repo mr-2 text-gray flex-shrink-0" viewBox="0 0 16 16" version="1.1"
width="16" height="16">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg>
<a class="text-bold flex-auto min-width-0" href="https://yuweizzz.github.io/post/using_oauth2_for_authorization/">
<span class="repo" title="通过 OAuth2 进行授权">通过 OAuth2 进行授权</span>
</a>
</div>
<div name="summary" class="pinned-item-desc text-gray text-small d-block mt-2 mb-3">
<p>通过 OAuth2 实现单点登陆和应用授权。</p>
</div>
<p class="mb-0 f6 text-gray">
<a href="/tags/kubernetes" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
Kubernetes
</a>
<a href="/tags/oauth2" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
OAuth2
</a>
<a href="/tags/openid-connect" class="pinned-item-meta muted-link ">
<svg class="octicon octicon-tag" viewBox="0 0 16 16" version="1.1" width="16" height="16">
<path fill-rule="evenodd"
d="M2.5 7.775V2.75a.25.25 0 01.25-.25h5.025a.25.25 0 01.177.073l6.25 6.25a.25.25 0 010 .354l-5.025 5.025a.25.25 0 01-.354 0l-6.25-6.25a.25.25 0 01-.073-.177zm-1.5 0V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 010 2.474l-5.026 5.026a1.75 1.75 0 01-2.474 0l-6.25-6.25A1.75 1.75 0 011 7.775zM6 5a1 1 0 100 2 1 1 0 000-2z">
</path>
</svg>
OpenID Connect
</a>
</p>
</div>
</div>
</li>
</ol>
</div>
</div>
<div class="mt-4 position-relative" id="contributions" data='[
{
"title": "%e9%80%9a%e8%bf%87%e5%91%bd%e4%bb%a4%e8%a1%8c%e5%af%bc%e5%87%ba%20Windows%20%e7%b3%bb%e7%bb%9f%e5%ae%89%e8%a3%85%e8%bd%af%e4%bb%b6%e6%b8%85%e5%8d%95",
"link": "https://yuweizzz.github.io/post/export_windows_system_installed_software_inventory/",
"publishDate": "2024-12-18%2010:57:10"
},
{
"title": "%e6%9b%bf%e6%8d%a2%20VirtualBox%20%e5%86%85%e7%bd%ae%e7%bd%91%e5%8d%a1%20ROM",
"link": "https://yuweizzz.github.io/post/replace_virtualbox_pxe_rom/",
"publishDate": "2024-11-28%2010:13:10"
},
{
"title": "%e9%80%9a%e8%bf%87%20QEMU%20%e8%bf%90%e8%a1%8c%e8%99%9a%e6%8b%9f%e5%ae%9e%e4%be%8b",
"link": "https://yuweizzz.github.io/post/boot_virtual_machines_on_qemu/",
"publishDate": "2024-11-11%2015:14:10"
},
{
"title": "DHCP%20%e6%94%af%e6%8c%81%20PXE%20%e5%90%af%e5%8a%a8%e7%9a%84%e5%9f%ba%e6%9c%ac%e6%9d%a1%e4%bb%b6",
"link": "https://yuweizzz.github.io/post/basic_required_of_how_dhcp_support_to_pxe_boot/",
"publishDate": "2024-11-08%2017:14:10"
},
{
"title": "%e5%b8%b8%e7%94%a8%20Linux%20%e5%86%85%e6%a0%b8%e5%8f%82%e6%95%b0%e9%85%8d%e7%bd%ae%e5%8f%82%e8%80%83",
"link": "https://yuweizzz.github.io/post/reference_of_linux_kernel_parameter_configuration/",
"publishDate": "2024-10-14%2015:14:10"
},
{
"title": "%e9%80%9a%e8%bf%87%20OAuth2%20%e8%bf%9b%e8%a1%8c%e6%8e%88%e6%9d%83",
"link": "https://yuweizzz.github.io/post/using_oauth2_for_authorization/",
"publishDate": "2024-07-11%2011:00:00"
},
{
"title": "%e4%bb%8a%e5%a4%9c%e6%88%91%e5%9c%a8%e5%be%b7%e4%bb%a4%e5%93%88",
"link": "https://yuweizzz.github.io/post/tonight_i_am_in_delingha/",
"publishDate": "2024-06-25%2021:44:45"
},
{
"title": "%e4%bd%bf%e7%94%a8%20tekton%20%e5%9c%a8%20kubernetes%20%e9%9b%86%e7%be%a4%e4%b8%ad%e8%bf%90%e8%a1%8c%e6%b5%81%e6%b0%b4%e7%ba%bf",
"link": "https://yuweizzz.github.io/post/use_tekton_to_run_pipelines_in_kubernetes_cluster/",
"publishDate": "2024-05-09%2016:14:45"
},
{
"title": "%e6%90%ad%e5%bb%ba%20k3s%20%e9%9b%86%e7%be%a4",
"link": "https://yuweizzz.github.io/post/install_k3s_cluster/",
"publishDate": "2024-04-18%2015:44:45"
},
{
"title": "openresty%20%e5%ad%a6%e4%b9%a0%e7%ac%94%e8%ae%b0",
"link": "https://yuweizzz.github.io/post/study_notes_about_openresty/",
"publishDate": "2024-04-03%2019:44:45"
},
{
"title": "Prometheus%20exporter%20%e4%bb%a3%e7%a0%81%e5%8f%82%e8%80%83",
"link": "https://yuweizzz.github.io/post/example_of_prometheus_exporter/",
"publishDate": "2024-03-31%2013:26:00"
},
{
"title": "%e9%80%9a%e8%bf%87%20cloudflare%20api%20%e6%9b%b4%e6%96%b0%20DNS%20%e8%ae%b0%e5%bd%95",
"link": "https://yuweizzz.github.io/post/update_dns_record_via_cloudflare_api/",
"publishDate": "2024-02-18%2015:00:00"
},
{
"title": "Hello%202024",
"link": "https://yuweizzz.github.io/post/hello_2024/",
"publishDate": "2024-02-10%2000:00:01"
},
{
"title": "Debian%20%e7%b3%bb%e7%bb%9f%e5%ae%9e%e7%94%a8%e6%8a%80%e5%b7%a7%e7%ac%94%e8%ae%b0",
"link": "https://yuweizzz.github.io/post/practical_tips_in_debian/",
"publishDate": "2023-12-23%2015:00:00"
},
{
"title": "VictoriaMetrics%20API%20%e5%92%8c%e5%b8%b8%e7%94%a8%e7%9a%84%20PromQL",
"link": "https://yuweizzz.github.io/post/useful_victoriametrics_api_and_prmoql/",
"publishDate": "2023-12-16%2010:00:00"
},
{
"title": "%e8%a7%a3%e5%86%b3%e4%bd%bf%e7%94%a8%20VictoriaMetrics%20%e6%97%b6%e7%9a%84%e8%bf%9e%e6%8e%a5%e9%87%8d%e7%bd%ae%e9%97%ae%e9%a2%98",
"link": "https://yuweizzz.github.io/post/fix_connection_reset_error_when_query_from_victoriametrics/",
"publishDate": "2023-12-15%2010:00:00"
},
{
"title": "Linux%20%e7%bd%91%e7%bb%9c%e5%8d%8f%e8%ae%ae%e7%9f%a5%e8%af%86%e7%ac%94%e8%ae%b0",
"link": "https://yuweizzz.github.io/post/knowledge_about_linux_network/",
"publishDate": "2023-11-09%2020:00:00"
},
{
"title": "%e4%bd%bf%e7%94%a8%20Kaniko%20%e5%9c%a8%20Kubernetes%20%e9%9b%86%e7%be%a4%e4%b8%ad%e6%9e%84%e5%bb%ba%e9%95%9c%e5%83%8f",
"link": "https://yuweizzz.github.io/post/use_kaniko_to_build_images_in_kubernetes_cluster/",
"publishDate": "2023-10-17%2011:16:45"
},
{
"title": "%e6%8e%a2%e7%a9%b6%e5%ad%97%e7%ac%a6%e7%bc%96%e7%a0%81%e6%a0%bc%e5%bc%8f",
"link": "https://yuweizzz.github.io/post/study_notes_about_character_encoding_formats/",
"publishDate": "2023-09-26%2015:22:00"
},
{
"title": "Apisix%20%e7%9a%84%e8%b4%9f%e8%bd%bd%e5%9d%87%e8%a1%a1%e5%ae%9e%e7%8e%b0",
"link": "https://yuweizzz.github.io/post/how_apisix_implements_load_balancing/",
"publishDate": "2023-08-03%2021:16:45"
},
{
"title": "filebeat%20%e9%85%8d%e7%bd%ae%e5%8f%82%e8%80%83",
"link": "https://yuweizzz.github.io/post/detail_about_filebeat_config_file/",
"publishDate": "2023-04-24%2013:26:00"
},
{
"title": "ffmpeg%20%e5%91%bd%e4%bb%a4%e7%ac%94%e8%ae%b0",
"link": "https://yuweizzz.github.io/post/useful_command_about_ffmpeg/",
"publishDate": "2023-04-15%2021:46:00"
},
{
"title": "%e7%a1%ac%e4%bb%b6%e6%b5%8b%e8%af%95%e5%b7%a5%e5%85%b7%e4%bd%bf%e7%94%a8%e7%ac%94%e8%ae%b0",
"link": "https://yuweizzz.github.io/post/knowledge_about_hardware_benchmark_tool/",
"publishDate": "2023-01-10%2015:22:45"
},
{
"title": "Kubernetes%20%e5%ae%9e%e8%b7%b5%e7%ac%94%e8%ae%b0",
"link": "https://yuweizzz.github.io/post/practice_notes_about_kubernetes/",
"publishDate": "2022-09-10%2015:22:45"
},
{
"title": "Lua%20%e5%ad%a6%e4%b9%a0%e7%ac%94%e8%ae%b0",
"link": "https://yuweizzz.github.io/post/study_notes_about_lua/",
"publishDate": "2022-09-04%2019:44:45"
},
{
"title": "Logstash%20S3%20%e6%8f%92%e4%bb%b6%e4%bd%bf%e7%94%a8",
"link": "https://yuweizzz.github.io/post/using_s3_plugin_in_logstash/",
"publishDate": "2022-08-15%2015:00:00"
},
{
"title": "%e6%90%ad%e5%bb%ba%e8%bd%bb%e9%87%8f%e7%ba%a7%e6%9c%8d%e5%8a%a1%e5%99%a8",
"link": "https://yuweizzz.github.io/post/build_a_lightweight_server/",
"publishDate": "2022-08-13%2015:00:00"
},
{
"title": "Kubernetes%20%e7%9f%a5%e8%af%86%e7%ac%94%e8%ae%b0",
"link": "https://yuweizzz.github.io/post/knowledge_about_kubernetes/",
"publishDate": "2022-08-11%2015:22:45"
},
{
"title": "Nginx%20%e5%ae%9e%e7%94%a8%e6%8a%80%e5%b7%a7",
"link": "https://yuweizzz.github.io/post/practical_tips_in_nginx/",
"publishDate": "2022-07-16%2015:00:00"
},
{
"title": "%e7%ac%a6%e5%90%88%e5%ae%b9%e5%99%a8%e5%8c%96%e6%a0%87%e5%87%86%e7%9a%84%e5%ae%b9%e5%99%a8%e8%bf%90%e8%a1%8c%e6%97%b6%ef%bc%9aContainerd",
"link": "https://yuweizzz.github.io/post/knowledge_about_containerd/",
"publishDate": "2022-06-07%2019:44:45"
},
{
"title": "%e5%ae%9e%e7%8e%b0%e5%ae%b9%e5%99%a8%e6%8a%80%e6%9c%af%e7%9a%84%e5%9f%ba%e7%a1%80%ef%bc%9aNamespace%20%e4%b8%8e%20Cgroup",
"link": "https://yuweizzz.github.io/post/knowledge_about_namespace_and_cgroup/",
"publishDate": "2022-05-13%2020:44:45"
},
{
"title": "Golang%20%e5%ad%a6%e4%b9%a0%e7%ac%94%e8%ae%b0",
"link": "https://yuweizzz.github.io/post/study_notes_about_go/",
"publishDate": "2022-05-09%2019:44:45"
},
{
"title": "TLS%20%e5%8d%8f%e8%ae%ae%e5%b7%a5%e4%bd%9c%e5%8e%9f%e7%90%86",
"link": "https://yuweizzz.github.io/post/knowledge_about_tls/",
"publishDate": "2022-03-26%2013:22:45"