-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
2272 lines (2268 loc) · 95.9 KB
/
sitemap.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->
<url>
<loc>https://zorchp.github.io/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://zorchp.github.io/archive/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/categories/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/about/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/latex/%E6%95%B0%E5%AD%A6%E7%AC%A6%E5%8F%B7%E4%B8%AD%E4%B8%8D%E5%90%8C%E7%9A%84%E7%9C%81%E7%95%A5%E5%8F%B7/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/archive/?tag=LaTeX</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/it/%E4%B8%80%E4%BA%9B%E4%BA%92%E8%81%94%E7%BD%91%E5%B8%B8%E8%A7%81%E7%9A%84%E8%8B%B1%E6%96%87%E7%BC%A9%E7%95%A5%E8%AF%8D%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/archive/?tag=IT</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/%E9%80%9A%E8%BF%87%E6%8A%80%E5%B7%A7%E7%AE%80%E5%8C%96%E6%95%B0%E6%8D%AE%E5%A4%84%E7%90%86%E9%9A%BE%E5%BA%A6%E7%9A%84%E5%8A%9B%E6%89%A3%E9%A2%98%E5%9E%8B/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/archive/?tag=DSA</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/%E5%8A%9B%E6%89%A3%E5%88%B7%E9%A2%98%E5%B8%B8%E7%94%A8%E4%BB%A3%E7%A0%81%E6%AE%B5/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/frontend/Jekyll%E5%8D%9A%E5%AE%A2%E4%B8%AD%E6%B7%BB%E5%8A%A0%E5%88%86%E7%B1%BB%E4%B8%8E%E5%A4%9A%E7%9B%AE%E5%BD%95%E5%AD%98%E6%94%BE%E5%8D%9A%E5%AE%A2%E7%9A%84%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/archive/?tag=Frontend</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/archive/?tag=HTML</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/archive/?tag=Python</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/sql/SQL%E4%B8%AD%E7%9A%84%E4%B8%83%E7%A7%8D%E5%85%B3%E8%81%94%E4%BB%A3%E6%95%B0%E4%B8%8E%E9%A2%9D%E5%A4%96%E5%85%B3%E8%81%94%E4%BB%A3%E6%95%B0%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/archive/?tag=SQL</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/sql/CMU15445-645Assignment1%E6%95%B0%E6%8D%AE%E5%BA%93%E6%9F%A5%E8%AF%A2%E9%A2%98%E5%88%86%E6%9E%90%E4%B8%8E%E8%A7%A3%E7%AD%94/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/forjobs/%E9%9D%A2%E8%AF%95%E7%9A%84%E4%B8%80%E4%BA%9B%E9%9D%9E%E4%B8%93%E4%B8%9A%E9%97%AE%E9%A2%98%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/archive/?tag=Interview</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/page2/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/page3/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/page4/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/page39/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%B9%B6%E6%9F%A5%E9%9B%86%E7%9A%84%E4%B8%BB%E8%A6%81%E6%80%9D%E8%B7%AF%E4%BB%A5%E5%8F%8APython,C++%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/latex/LaTeX%E5%B8%B8%E8%A7%81%E9%94%99%E8%AF%AF%E4%B8%8E%E5%B8%B8%E7%94%A8Debug%E6%96%B9%E6%B3%95%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/latex/Windows%E4%B8%8A%E4%BD%BF%E7%94%A8winedt%E6%8F%90%E7%A4%BA%E7%B3%BB%E7%BB%9F%E6%89%BE%E4%B8%8D%E5%88%B0%E6%96%87%E4%BB%B6%E7%9A%84%E6%83%85%E5%86%B5%E5%88%86%E6%9E%90+texlive%E5%AE%89%E8%A3%85%E4%B8%8E%E9%85%8D%E7%BD%AE/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/sql/MySQL%E6%9F%A5%E8%AF%A2%E5%8A%9B%E6%89%A3%E9%A2%98%E7%9B%AE%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E7%BA%BF%E6%AE%B5%E6%A0%91,%E6%A0%91%E7%8A%B6%E6%95%B0%E7%BB%84%E5%8A%9B%E6%89%A3%E9%A2%98%E7%9B%AE%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8F%8C%E5%90%91%E9%93%BE%E8%A1%A8%E4%B8%8A%E7%9A%84%E5%BF%AB%E9%80%9F%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95C++%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%9B%9E%E6%BA%AF,%E6%B7%B1%E5%BA%A6%E4%BC%98%E5%85%88%E6%90%9C%E7%B4%A2,%E8%AE%B0%E5%BF%86%E5%8C%96%E6%90%9C%E7%B4%A2%E5%8A%9B%E6%89%A3%E9%A2%98%E5%9E%8B%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%B9%B6%E5%8F%91%E7%BC%96%E7%A8%8B%E5%AE%9E%E6%88%98%E7%AC%94%E8%AE%B0(%E4%BA%8C)%E4%BA%92%E6%96%A5%E9%87%8F%E4%B8%8E%E5%90%8C%E6%AD%A5%E6%9C%BA%E5%88%B6(%E6%9D%A1%E4%BB%B6%E5%8F%98%E9%87%8F,%E6%9C%9F%E5%80%BC)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E9%93%BE%E8%A1%A8%E5%8A%9B%E6%89%A3%E9%A2%98%E5%9E%8B%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E4%B8%AD%E7%9A%84%E9%9D%99%E6%80%81%E7%BB%91%E5%AE%9A%E6%9C%BA%E5%88%B6/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E5%AE%9A%E6%97%B6%E5%99%A8%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E4%B8%8E%E7%A4%BA%E4%BE%8B/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E9%80%92%E5%BD%92%E4%BB%A3%E7%A0%81%E8%BD%AC%E6%8D%A2%E8%BF%AD%E4%BB%A3%E6%B3%95%E7%9A%84%E4%B8%80%E4%BA%9B%E6%80%9D%E8%B7%AF(C++%E4%B8%BA%E4%BE%8B)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/CMake%E5%AD%A6%E4%B9%A0(%E4%B8%80)%E5%9F%BA%E6%9C%AC%E5%91%BD%E4%BB%A4/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E4%BA%8C%E5%88%86%E6%9F%A5%E6%89%BE%E5%8A%9B%E6%89%A3%E9%A2%98%E7%9B%AE%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%92%E5%8A%9B%E6%89%A3%E9%A2%98%E5%9E%8B%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E6%8B%93%E6%89%91%E6%8E%92%E5%BA%8F%E7%9A%84C++%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/B%E6%A0%91,B+%E6%A0%91%E5%9F%BA%E6%9C%AC%E5%8E%9F%E7%90%86%E4%B8%8E%E5%A2%9E%E5%88%A0%E6%94%B9%E6%9F%A5%E7%9A%84C++%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E4%BA%8C%E5%8F%89%E6%A0%91%E5%8A%9B%E6%89%A3%E7%BB%8F%E5%85%B8%E9%A2%98%E5%9E%8B%E4%B8%8E%E7%89%B9%E6%AE%8A%E8%A7%A3%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%B7%AE%E5%88%86%E6%95%B0%E7%BB%84C++%E5%AE%9E%E7%8E%B0%E4%B8%8E%E5%8A%9B%E6%89%A3%E9%A2%98%E7%9B%AE%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%9B%BE%E8%AE%BA%E5%8A%9B%E6%89%A3%E9%A2%98%E5%9E%8B%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8F%8C%E6%8C%87%E9%92%88,%E6%BB%91%E5%8A%A8%E7%AA%97%E5%8F%A3%E5%8A%9B%E6%89%A3%E9%A2%98%E7%9B%AE%E6%B1%87%E6%80%BB/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E6%95%B0%E5%AD%97%E5%8D%81%E8%BF%9B%E5%88%B6%E4%BD%8D,%E5%9B%9B%E5%88%99%E8%BF%90%E7%AE%97%E7%BC%96%E7%A8%8B%E6%8A%80%E5%B7%A7%E5%8F%8A%E5%8A%9B%E6%89%A3%E9%A2%98%E7%9B%AE%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E4%BD%8D%E8%BF%90%E7%AE%97%E5%B8%B8%E7%94%A8%E6%8A%80%E5%B7%A7%E4%B8%8E%E5%8A%9B%E6%89%A3%E9%A2%98%E5%9E%8B%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8A%9B%E6%89%A3%E4%B8%AD%E7%9A%84%E7%BB%8F%E5%85%B8%E6%A8%A1%E6%8B%9F%E9%A2%98/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/MacOS%E4%B8%8B%E4%B8%8D%E5%90%8CC%E7%BC%96%E8%AF%91%E5%99%A8%E7%9A%84%E8%B7%AF%E5%BE%84%E4%B8%8E%E6%BA%90%E7%A0%81%E4%BD%8D%E7%BD%AE/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%93%88%E5%B8%8C%E8%A1%A8%E5%8A%9B%E6%89%A3%E9%A2%98%E5%9E%8B%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%B9%B6%E5%8F%91%E7%BC%96%E7%A8%8B%E5%AE%9E%E6%88%98%E7%AC%94%E8%AE%B0(%E4%B8%80)%E7%BA%BF%E7%A8%8B%E6%A6%82%E5%BF%B5%E4%B8%8E%E5%9F%BA%E6%9C%AC%E6%8E%A7%E5%88%B6/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E8%B4%AA%E5%BF%83%E5%8A%9B%E6%89%A3%E9%A2%98%E7%9B%AE%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E9%AB%98%E7%BA%A7%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E8%AE%BE%E8%AE%A1%E5%8A%9B%E6%89%A3%E9%A2%98%E7%9B%AE%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%86%85%E5%AD%98%E6%A8%A1%E5%9E%8B%E4%B8%8E%E7%A8%8B%E5%BA%8F%E8%BF%90%E8%A1%8C%E5%88%86%E5%8C%BA/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%AD%97%E7%AC%A6%E4%B8%B2+%E5%92%8Cpush_back%E5%88%9B%E5%BB%BA%E5%AD%97%E7%AC%A6%E4%B8%B2%E7%9A%84%E6%80%A7%E8%83%BD%E6%AF%94%E8%BE%83/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E9%9D%A2%E8%AF%95%E4%B9%8B%E6%89%8B%E5%86%99String%E7%B1%BB/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E8%BF%91%E6%9D%A5%E5%AD%A6%E4%B9%A0%E5%92%8C%E7%94%9F%E6%B4%BB%E7%9A%84%E4%B8%80%E4%BA%9B%E6%80%9D%E8%80%83/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E7%B1%BB%E5%86%85%E9%9D%99%E6%80%81%E6%88%90%E5%91%98%E7%B1%BB%E5%A4%96%E5%88%9D%E5%A7%8B%E5%8C%96%E6%83%85%E5%86%B5%E5%88%86%E6%9E%90%E4%B8%8E%E7%A4%BA%E4%BE%8B/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/forjobs/C++%E5%90%8E%E7%AB%AF%E9%9D%A2%E8%AF%95%E7%9F%A5%E8%AF%86%E7%82%B9%E6%80%BB%E7%BB%93(%E4%B8%89)Linux,%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F%E4%B8%8E%E7%BD%91%E7%BB%9C/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%AD%97%E7%AC%A6%E4%B8%B2%E4%B8%8E%E5%9B%9E%E6%96%87%E7%B3%BB%E5%88%97%E9%A2%98%E7%9B%AE%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%AD%97%E5%85%B8%E6%A0%91%E5%8A%9B%E6%89%A3%E9%A2%98%E7%9B%AE%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E6%A0%88%E4%B8%8E%E9%98%9F%E5%88%97%E5%8A%9B%E6%89%A3%E9%A2%98%E7%9B%AE%E6%B1%87%E6%80%BB/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E4%BA%8C%E5%8F%89%E5%A0%86(%E4%BC%98%E5%85%88%E9%98%9F%E5%88%97)%E4%B8%8E%E5%A0%86%E6%8E%92%E5%BA%8F%E7%9A%84%E5%AE%8C%E6%95%B4%E5%AE%9E%E7%8E%B0(C++)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8A%9B%E6%89%A3%E5%88%B7%E9%A2%98%E4%B8%AD%E5%B8%B8%E7%94%A8%E7%9A%84%E5%B0%8F%E6%8A%80%E5%B7%A7/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E4%B8%8BIO%E5%A4%9A%E8%B7%AF%E5%A4%8D%E7%94%A8API%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E5%AE%9E%E4%BE%8B%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E5%9F%BA%E6%9C%AC%E7%B3%BB%E7%BB%9F%E4%BF%A1%E6%81%AF%E6%9F%A5%E7%9C%8B%E5%91%BD%E4%BB%A4%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/forjobs/C++%E5%90%8E%E7%AB%AF%E9%9D%A2%E8%AF%95%E7%9F%A5%E8%AF%86%E7%82%B9%E6%80%BB%E7%BB%93(%E4%B8%80)C++%E4%B8%8E%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/forjobs/C++%E5%90%8E%E7%AB%AF%E9%9D%A2%E8%AF%95%E7%9F%A5%E8%AF%86%E7%82%B9%E6%80%BB%E7%BB%93(%E4%BA%8C)%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%B8%8E%E7%AE%97%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/forjobs/C++%E5%90%8E%E7%AB%AF%E9%9D%A2%E8%AF%95%E7%9F%A5%E8%AF%86%E7%82%B9%E6%80%BB%E7%BB%93(%E4%BA%94)%E5%BC%80%E5%8F%91%E5%B7%A5%E5%85%B7%E7%9A%84%E4%BD%BF%E7%94%A8/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E4%B8%ADi=i+1,i+=1,i++,++i%E7%9A%84%E5%8C%BA%E5%88%AB(%E4%BB%8E%E6%B1%87%E7%BC%96%E5%B1%82%E9%9D%A2%E5%88%86%E6%9E%90)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/forjobs/C++%E5%90%8E%E7%AB%AF%E9%9D%A2%E8%AF%95%E7%9F%A5%E8%AF%86%E7%82%B9%E6%80%BB%E7%BB%93(%E5%9B%9B)Webserver%E9%A1%B9%E7%9B%AE%E4%B8%8E%E9%AB%98%E7%BA%A7%E4%B8%BB%E9%A2%98/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/forjobs/%E9%9D%A2%E8%AF%95%E7%BB%8F%E9%AA%8C(1)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E4%B8%8Bsocket%E7%BC%96%E7%A8%8B%E4%B9%8BUnix-domain%E7%9A%84C-S%E7%A4%BA%E4%BE%8B/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E5%86%85%E5%AD%98%E6%98%A0%E5%B0%84,%E5%85%B1%E4%BA%AB%E5%86%85%E5%AD%98%E4%B8%8E%E8%99%9A%E6%8B%9F%E5%86%85%E5%AD%98%E9%83%A8%E5%88%86%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E7%A4%BA%E4%BE%8B%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/%E7%89%9B%E5%AE%A2%E7%BD%91ACM%E6%A8%A1%E5%BC%8F%E8%BE%93%E5%85%A5%E8%BE%93%E5%87%BA11%E9%81%93%E9%A2%98%E7%9B%AE%E7%9A%84C++%E8%A7%A3%E7%AD%94(C%E6%A0%87%E5%87%86IO%E7%89%88)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8F%8C%E5%90%91%E7%8E%AF%E5%BD%A2%E9%93%BE%E8%A1%A8%E7%9A%84%E5%A2%9E%E5%88%A0%E6%94%B9%E6%9F%A5C++%E5%AE%8C%E6%95%B4%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8D%95%E5%90%91%E7%8E%AF%E5%BD%A2%E9%93%BE%E8%A1%A8%E7%9A%84%E5%A2%9E%E5%88%A0%E6%94%B9%E6%9F%A5C++%E5%AE%8C%E6%95%B4%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8F%8C%E5%90%91%E9%93%BE%E8%A1%A8%E5%A2%9E%E5%88%A0%E6%94%B9%E6%9F%A5%E7%9A%84C++%E5%AE%8C%E6%95%B4%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E4%B8%8BSocket%E7%9B%B8%E5%85%B3%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E4%B8%8E%E7%A4%BA%E4%BE%8B%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E7%AE%A1%E9%81%93%E4%B8%8EFIFO%E7%B1%BB%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E5%AE%9E%E4%BE%8B%E4%B8%8E%E8%BF%9B%E7%A8%8B%E9%97%B4%E9%80%9A%E4%BF%A1(IPC)%E7%AE%80%E5%8D%95%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/sql/MySQL8%E7%9A%84%E7%94%A8%E6%88%B7%E5%88%9B%E5%BB%BA%E6%9B%B4%E6%96%B0%E5%88%A0%E9%99%A4%E6%8F%90%E6%9D%83%E6%93%8D%E4%BD%9C%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/maths/Andrews%E5%AE%9A%E7%90%86%E7%9A%84%E8%AF%81%E6%98%8E/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/GitHub%E6%8F%90%E4%BA%A4%E6%97%B6%E5%87%BA%E7%8E%B0Host-key-verification-failed%E6%97%A0%E6%B3%95%E8%AF%BB%E5%8F%96%E8%BF%9C%E7%A8%8B%E4%BB%93%E5%BA%93%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/maths/%E5%AF%B9%E6%95%B0%E5%87%B8%E6%80%A7-%E7%BB%8F%E6%B5%8E%E5%AD%A6%E4%B9%8B%E5%BA%94%E7%94%A8/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E5%9C%A8M1%E8%8A%AF%E7%89%87MacBook%E4%B8%8A%E9%83%A8%E7%BD%B2%E5%BE%AE%E8%BD%AF%E6%9C%80%E6%96%B0Visual-GPT%E7%9A%84%E5%AE%8C%E6%95%B4%E6%96%B9%E6%A1%88%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/maths/%E7%89%9B%E9%A1%BF%E4%B8%8D%E7%AD%89%E5%BC%8F%E7%9A%84%E8%AF%81%E6%98%8E/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8A%9B%E6%89%A3%E8%9E%BA%E6%97%8B%E7%9F%A9%E9%98%B5%E7%B3%BB%E5%88%97%E6%80%BB%E7%BB%93(C++)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E7%B1%BB%E5%86%85%E5%88%9D%E5%A7%8B%E5%8C%96vector%E7%9A%84%E4%B8%80%E4%B8%AA%E5%B0%8F%E5%9D%91%E4%B8%8E%E5%88%86%E6%9E%90%E8%A7%A3%E5%86%B3/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/%E7%89%9B%E5%AE%A2C++ACM%E6%A8%A1%E5%BC%8F%E8%BE%93%E5%85%A5%E8%BE%93%E5%87%BA11%E9%81%93%E9%A2%98%E5%88%86%E6%9E%90%E4%B8%8E%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Ubuntu22.04%E4%B8%8B%E7%BC%96%E8%AF%91%E5%AE%89%E8%A3%85LAMMPS+VORONOI%E7%9A%84%E5%AE%8C%E6%95%B4%E6%96%B9%E6%A1%88/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E5%88%A9%E7%94%A8Windows+Cygwin%E5%AE%89%E8%A3%85LAMMPS+voro%E7%9A%84%E5%AE%8C%E6%95%B4%E5%AE%89%E8%A3%85%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E7%BA%BF%E7%A8%8B%E7%9A%84%E5%88%9B%E5%BB%BA%E7%BB%93%E6%9D%9F%E7%B1%BB%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E8%BF%9B%E7%A8%8B%E7%9A%84%E5%88%9B%E5%BB%BA%E7%BB%93%E6%9D%9F%E7%B1%BB%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E4%B9%8BIO%E5%A4%9A%E8%B7%AF%E5%A4%8D%E7%94%A8%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E7%94%A8%E6%B3%95%E6%80%BB%E7%BB%93%E4%B8%8E%E5%AF%B9%E6%AF%94/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/sql/%E9%80%9A%E8%BF%87C++%E6%93%8D%E4%BD%9CMySQL%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%A4%9A%E7%BB%A7%E6%89%BF,%E8%99%9A%E7%BB%A7%E6%89%BF%E9%83%A8%E5%88%86%E6%80%BB%E7%BB%93%E4%B8%8E%E7%A4%BA%E4%BE%8B/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E6%8B%B7%E8%B4%9D%E6%9E%84%E9%80%A0%E4%B8%8E%E6%8B%B7%E8%B4%9D%E8%B5%8B%E5%80%BC%E7%9A%84%E6%B7%B1%E5%85%A5%E6%8E%A2%E8%AE%A8/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E7%B1%BB%E7%9A%84%E9%9D%99%E6%80%81%E6%88%90%E5%91%98%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/python/MacOS%E4%B8%8B%E8%BD%BD%E9%92%89%E9%92%89%E7%9B%B4%E6%92%AD%E5%9B%9E%E6%94%BE%E8%A7%86%E9%A2%91%E7%9A%84Python%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E4%BF%A1%E5%8F%B7%E7%9A%84%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E4%B8%8E%E7%A4%BA%E4%BE%8B/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86%E9%83%A8%E5%88%86%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E4%B8%8E%E7%A4%BA%E4%BE%8B%E5%88%86%E6%9E%90/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/ssh%E5%9C%A8%E6%9C%AC%E5%9C%B0%E5%92%8C%E8%BF%9C%E7%A8%8B%E6%9C%8D%E5%8A%A1%E5%99%A8%E4%B9%8B%E9%97%B4%E4%BC%A0%E9%80%81%E6%96%87%E4%BB%B6%E7%9A%84%E5%91%BD%E4%BB%A4%E6%80%BB%E7%BB%93(scp,rsync)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E8%BF%9B%E7%A8%8B%E9%97%B4%E9%80%9A%E4%BF%A1%E7%B1%BB%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E6%80%BB%E7%BB%93%E4%B8%8E%E7%A4%BA%E4%BE%8B/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E5%85%B1%E4%BA%AB%E5%BA%93,%E9%9D%99%E6%80%81%E5%BA%93%E4%B8%8E%E7%9B%B8%E5%85%B3%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8,%E5%B7%A5%E5%85%B7%E7%9A%84%E4%BD%BF%E7%94%A8%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E7%B3%BB%E7%BB%9F%E4%BF%A1%E6%81%AF%E7%B1%BB%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E6%80%BB%E7%BB%93%E4%B8%8E%E7%A4%BA%E4%BE%8B/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Ubuntu%E6%9E%84%E5%BB%BALinux_Unix%E7%B3%BB%E7%BB%9F%E7%BC%96%E7%A8%8B%E6%89%8B%E5%86%8C%E4%BB%A3%E7%A0%81%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/Homebrew%E6%9B%B4%E6%96%B0%E5%90%8E%E5%87%BA%E7%8E%B0curl-(35)-LibreSSL-SSL_connect-SSL_ERROR_SYSCALL%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/Windows10%E6%96%87%E4%BB%B6%E5%A4%B9%E6%89%93%E4%B8%8D%E5%BC%80%E6%8F%90%E7%A4%BA%E4%BD%8D%E7%BD%AE%E4%B8%8D%E5%8F%AF%E7%94%A8%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/Acrobat%E5%87%BA%E7%8E%B0%E6%98%AF%E5%90%A6%E5%85%81%E8%AE%B8adobe.aps%E8%AE%BF%E9%97%AE%E9%92%A5%E5%8C%99%E4%B8%B2%E4%B8%AD%E7%9A%84%E6%9C%BA%E5%AF%86%E4%BF%A1%E6%81%AF%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux-Shell%E8%BF%9B%E7%A8%8B%E7%AE%A1%E7%90%86%E7%9B%B8%E5%85%B3%E5%91%BD%E4%BB%A4%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux-bash%E6%95%B0%E5%80%BC%E8%AE%A1%E7%AE%97%E5%B0%8F%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Shell%E5%AD%97%E7%AC%A6%E4%B8%B2%E6%93%8D%E4%BD%9C%E4%B8%8Esed%E5%92%8Cawk%E5%AE%9E%E6%88%98%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/Mac%E7%9A%84iBooks%E5%9B%BE%E4%B9%A6app%E5%8E%BB%E6%8E%89%E5%A4%8D%E5%88%B6%E6%97%B6%E5%80%99%E7%9A%84%E5%BC%95%E7%94%A8%E6%96%87%E5%AD%97(with-Alfred)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux-Shell%E5%88%86%E6%94%AF%E6%8E%A7%E5%88%B6%E6%B5%81%E8%AF%AD%E5%8F%A5%E4%B8%8E%E5%87%BD%E6%95%B0%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Linux%E6%96%87%E4%BB%B6,%E7%9B%AE%E5%BD%95IO%E7%B1%BB%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E6%80%BB%E7%BB%93%E4%B8%8E%E7%A4%BA%E4%BE%8B/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Ubuntu%E7%BD%91%E7%BB%9C%E9%85%8D%E7%BD%AE%E7%9B%B8%E5%85%B3%E5%91%BD%E4%BB%A4%E4%B8%8E%E6%96%87%E4%BB%B6%E8%AF%A6%E8%A7%A3/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/MIT6.S081%E8%AF%BE%E7%A8%8Blab1-util%E8%A7%A3%E7%AD%94/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E8%B0%88%E8%B0%88%E7%94%9F%E6%B4%BB%E4%B9%8B%E5%85%B3%E4%BA%8E%E5%81%A5%E8%BA%AB/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%8F%B3%E5%80%BC%E5%BC%95%E7%94%A8,%E7%A7%BB%E5%8A%A8%E8%AF%AD%E4%B9%89%E4%B8%8E%E5%AE%8C%E7%BE%8E%E8%BD%AC%E5%8F%91%E8%AF%A6%E8%A7%A3/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8A%A8%E6%80%81%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E6%80%BB%E7%BB%93%E4%B8%8E%E6%AF%94%E8%BE%83/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E7%BA%A2%E9%BB%91%E6%A0%91%E7%9A%84%E5%9F%BA%E6%9C%AC%E6%A6%82%E5%BF%B5%E4%B8%8E%E5%A2%9E%E5%88%A0%E6%94%B9%E6%9F%A5%E5%AE%8C%E6%95%B4%E5%AE%9E%E7%8E%B0(C++)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E4%BB%8Esublime%E5%88%B0vim%E7%9A%84%E4%B8%80%E4%BA%9B%E4%BD%93%E9%AA%8C/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/NeoVim%E5%AE%9A%E5%88%B6%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/asm/%E6%B1%87%E7%BC%96%E8%AF%AD%E8%A8%80(%E7%8E%8B%E7%88%BD)%E7%A8%8B%E5%BA%8F%E7%BC%96%E8%AF%91,%E9%93%BE%E6%8E%A5,%E5%9F%BA%E6%9C%AC%E5%BE%AA%E7%8E%AF%E9%83%A8%E5%88%86(chap4,5,6)%E5%B0%8F%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E4%BA%8C%E5%8F%89%E6%90%9C%E7%B4%A2%E6%A0%91%E5%A2%9E%E5%88%A0%E6%94%B9%E6%9F%A5%E5%AE%8C%E6%95%B4%E5%AE%9E%E7%8E%B0(C++)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E7%BA%A2%E9%BB%91%E6%A0%91%E6%9D%80%E4%BA%BA%E4%BA%8B%E4%BB%B6(%E8%BD%AC%E8%BD%BD)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E4%BD%BF%E7%94%A8C%E7%B3%BB%E7%BB%9F%E8%B0%83%E7%94%A8%E7%BC%96%E5%86%99%E7%9A%84%E7%AE%80%E5%8D%95TCPserver/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/frontend/Typora%E4%B8%BB%E9%A2%98%E5%AE%9A%E5%88%B6%E4%B9%8B%E6%95%B0%E5%AD%A6%E5%85%AC%E5%BC%8F%E5%92%8C%E5%AD%97%E4%BD%93%E7%AF%87/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/frontend/%E5%AE%9A%E5%88%B6Jekyll-GitHub-Pages%E7%9A%84%E5%AD%97%E4%BD%93%E6%98%BE%E7%A4%BA/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/maths/%E5%B8%B8%E8%A7%81%E5%87%BD%E6%95%B0%E7%9A%84%E7%BA%A7%E6%95%B0%E5%B1%95%E5%BC%80%E5%BC%8F%E6%8E%A8%E5%AF%BC/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%86%85%E5%AD%98%E5%88%86%E9%85%8D%E6%96%B9%E6%B3%95new%E4%B8%8Eplacement-new%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E8%AF%A6%E8%A7%A3/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E9%AA%8C%E8%AF%81%E4%BA%8C%E5%8F%89%E6%90%9C%E7%B4%A2%E6%A0%91%E7%9A%84C++%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/Python%E4%B8%8EC++%E8%AF%AD%E6%B3%95%E6%AF%94%E8%BE%83-%E5%AD%97%E7%AC%A6%E4%B8%B2%E7%AF%87/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E8%AE%A1%E7%AE%97%E4%BD%8D1%E7%9A%84%E4%B8%AA%E6%95%B0%E6%96%B9%E6%B3%95%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8F%8D%E8%BD%AC%E9%93%BE%E8%A1%A8%E4%B8%8E%E9%93%BE%E8%A1%A8%E7%9A%84%E6%9E%90%E6%9E%84%E6%93%8D%E4%BD%9C(C++)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/%E9%98%BF%E9%87%8C%E4%BA%91%E6%9C%8D%E5%8A%A1%E5%99%A8%E5%AE%89%E8%A3%85wireshark%E5%9B%BE%E5%BD%A2%E7%95%8C%E9%9D%A2%E4%B8%8E%E8%BF%9C%E7%A8%8B%E8%BF%9E%E6%8E%A5%E9%85%8D%E7%BD%AE(%E4%BD%BF%E7%94%A8tigervnc)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/MacOS%E4%B8%AD%E6%B5%8F%E8%A7%88%E5%99%A8%E6%89%A9%E5%B1%95%E7%9A%84%E7%9B%AE%E5%BD%95%E4%BD%8D%E7%BD%AE%E4%B8%8E%E6%89%A9%E5%B1%95%E6%89%93%E5%8C%85%E8%A7%A3%E5%8C%85%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++11%E7%BB%A7%E6%89%BF%E6%9E%84%E9%80%A0%E5%87%BD%E6%95%B0%E4%B8%8E%E5%A7%94%E6%89%98%E6%9E%84%E9%80%A0%E5%87%BD%E6%95%B0%E8%AF%A6%E8%A7%A3/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E9%80%8F%E8%A7%86HTTP%E5%8D%8F%E8%AE%AE%E8%AF%BE%E7%A8%8B%E5%AE%9E%E9%AA%8C%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE(%E5%9F%BA%E4%BA%8E%E9%98%BF%E9%87%8C%E4%BA%91%E6%9C%8D%E5%8A%A1%E5%99%A8Ubuntu)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%AE%9E%E6%88%98%E7%AC%94%E8%AE%B0%E9%A2%98%E7%9B%AE/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E4%BA%8C%E5%8F%89%E6%A0%91%E7%9A%84Morris%E9%81%8D%E5%8E%86%E4%BB%A3%E7%A0%81(C++)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8A%9B%E6%89%A31%E5%88%B0n%E6%B1%82%E5%92%8C%E4%B8%8D%E4%BD%BF%E7%94%A8%E4%B9%98%E9%99%A4%E6%B3%95%E5%BE%AA%E7%8E%AF%E8%AF%AD%E5%8F%A5%E6%96%B9%E6%B3%95%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/frontend/Firework/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/frontend/test-jekyll-TeXt-theme-1/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%B8%8C%E5%B0%94%E6%8E%92%E5%BA%8F%E7%9A%84%E6%80%9D%E8%B7%AF%E4%B8%8EC++%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%BD%92%E5%B9%B6%E6%8E%92%E5%BA%8F%E7%9A%84%E9%80%92%E5%BD%92%E8%BF%AD%E4%BB%A3%E5%86%99%E6%B3%95(C++)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E7%BA%BF%E6%80%A7%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95%E8%AE%A1%E6%95%B0,%E5%9F%BA%E6%95%B0,%E6%A1%B6%E6%8E%92%E5%BA%8FC++/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%86%99%E5%87%BA%E5%83%8FPython%E9%82%A3%E6%A0%B7%E4%BC%98%E9%9B%85%E7%9A%84%E4%B8%80%E8%A1%8C%E4%BA%A4%E6%8D%A2%E5%87%BD%E6%95%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8A%9B%E6%89%A3%E5%8F%AA%E5%87%BA%E7%8E%B0%E4%B8%80%E6%AC%A1%E7%9A%84%E6%95%B0%E5%AD%97%E7%B3%BB%E5%88%97%E6%80%BB%E7%BB%93(C++)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/python/%E8%B0%88%E8%B0%88MacOS%E4%B8%8B%E7%9A%84Python%E7%89%88%E6%9C%AC%E7%AE%A1%E7%90%86%E9%97%AE%E9%A2%98/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%86%92%E6%B3%A1%E6%8E%92%E5%BA%8F,%E6%8F%92%E5%85%A5%E6%8E%92%E5%BA%8F,%E9%80%89%E6%8B%A9%E6%8E%92%E5%BA%8F%E7%9A%84C++%E5%AE%9E%E7%8E%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%BF%AB%E9%80%9F%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95%E7%9A%84%E9%80%92%E5%BD%92,%E8%BF%AD%E4%BB%A3%E6%B3%95%E5%AE%9E%E7%8E%B0(C++)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%AE%9E%E6%88%98%E7%AC%94%E8%AE%B0(%E4%B8%89)%E5%BC%82%E5%B8%B8%E5%A4%84%E7%90%86/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/sql/MySQL45%E8%AE%B2%E9%A2%98%E7%9B%AE/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/C++%E4%BC%98%E5%85%88%E9%98%9F%E5%88%97%E8%AF%A6%E8%A7%A3%E4%BB%A5%E5%8F%8A%E7%9B%B8%E5%BA%94%E8%BE%93%E5%87%BA%E6%93%8D%E4%BD%9C%E7%AC%A6%E9%87%8D%E8%BD%BD%E5%86%99%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/gitignore%E6%96%87%E4%BB%B6%E8%AF%A6%E8%A7%A3/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%AE%9E%E6%88%98%E7%AC%94%E8%AE%B0(%E4%B8%80)C++%E7%9A%84%E9%A2%84%E5%A4%84%E7%90%86%E4%B8%8E%E7%BC%96%E8%AF%91/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E5%AE%9E%E6%88%98%E7%AC%94%E8%AE%B0(%E4%BA%8C)%E6%99%BA%E8%83%BD%E6%8C%87%E9%92%88%E4%B8%8E%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/24%E7%82%B9%E6%B8%B8%E6%88%8F%E5%9B%9E%E6%BA%AF%E7%AE%97%E6%B3%95%E4%B8%8E8%E4%B8%AA8%E7%BB%84%E6%88%901000%E9%97%AE%E9%A2%98C++,java%E4%BB%A3%E7%A0%81/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/frontend/Jekyll-TeXt%E4%B8%BB%E9%A2%98%E7%9A%84%E9%A1%B5%E9%9D%A2%E5%AE%9A%E5%88%B6%E4%B9%8B%E6%B7%BB%E5%8A%A0%E9%A1%B5%E9%9D%A2%E8%AE%BF%E9%97%AE%E8%AE%A1%E6%95%B0/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E5%9C%A8M1Mac%E4%B8%8A%E5%AE%89%E8%A3%85x86_64%E6%9E%B6%E6%9E%84Archlinux%E8%99%9A%E6%8B%9F%E6%9C%BA%E7%9A%84%E4%BD%BF%E7%94%A8%E4%BD%93%E9%AA%8C/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/python/Pandas%E6%93%8D%E4%BD%9C%E4%B8%A4%E4%B8%AAExcel%E5%AE%9E%E7%8E%B0%E6%95%B0%E6%8D%AE%E5%AF%B9%E5%BA%94%E8%A1%8C%E7%9A%84%E5%90%88%E5%B9%B6/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E9%95%BF%E9%99%A4%E6%B3%95%E8%AE%A1%E7%AE%97%E5%B9%B3%E6%96%B9%E6%A0%B9%E7%9A%84C++%E7%89%88%E6%9C%AC(%E4%BD%BF%E7%94%A8GMP%E9%AB%98%E7%B2%BE%E5%BA%A6%E8%AE%A1%E7%AE%97%E5%BA%93)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80%E4%B8%AD%E7%89%B9%E6%AE%8A%E7%AC%A6%E5%8F%B7%E7%9A%84%E8%8B%B1%E6%96%87%E8%A1%A8%E7%A4%BA/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/frontend/%E5%9C%A8markdown%E4%BB%A3%E7%A0%81%E7%8E%AF%E5%A2%83%E4%B8%AD%E8%BE%93%E5%85%A5%E5%8F%8D%E5%BC%95%E5%8F%B7%E7%9A%84%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Makefile-CheatSheet%E4%B8%80%E4%BA%9B%E5%B8%B8%E7%94%A8%E7%9A%84%E4%BB%A3%E7%A0%81%E6%AE%B5/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/%E5%9C%A8Makefile%E4%B8%AD%E4%BD%BF%E7%94%A8%E7%A9%BA%E6%A0%BC%E7%BC%A9%E8%BF%9B%E7%9A%84%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E8%B0%88%E8%B0%88%E6%88%91%E5%AF%B9%E4%B8%8A%E6%89%8BMacOS%E7%9A%84%E4%BD%93%E9%AA%8C%E4%B8%8E%E6%84%9F%E5%8F%97/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E9%95%BF%E9%99%A4%E6%B3%95%E8%AE%A1%E7%AE%97%E5%B9%B3%E6%96%B9%E6%A0%B9%E7%9A%84%E6%96%B9%E6%B3%95%E6%80%BB%E7%BB%93%E4%B8%8E%E4%BB%A3%E7%A0%81%E5%AE%9E%E7%8E%B0(C++,Python)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/gui/FLTK%E7%9A%84UI%E8%AE%BE%E8%AE%A1%E5%B7%A5%E5%85%B7FLUID%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E8%AE%A1%E7%AE%97%E5%B9%B3%E6%96%B9%E6%A0%B9%E7%9A%84%E4%B8%80%E4%BA%9B%E6%96%B9%E6%B3%95%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++%E4%B9%8B%E4%BB%80%E4%B9%88%E6%97%B6%E5%80%99%E5%BA%94%E8%AF%A5%E4%BD%BF%E7%94%A8typename%E6%88%96class/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/%E9%80%9A%E8%BF%87%E5%85%AC%E7%BD%91IP%E8%AE%BF%E9%97%AE%E4%BA%91%E6%9C%8D%E5%8A%A1%E5%99%A8MySQL%E7%9A%84%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/MacOS%E4%B8%8Basciiquarium%E5%87%BA%E7%8E%B0.CursesBoot.c-loadable-library-and-perl-binaries-are-mismatched-(got-handshake-key-0xfc00080,-needed-0xc700080)%E7%9A%84%E9%97%AE%E9%A2%98%E8%A7%A3%E5%86%B3/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C++unordered_map%E6%8F%92%E5%85%A5%E5%85%83%E7%B4%A0%E7%9A%84%E5%B0%8F%E5%9D%91%E4%B8%8Emap%E6%B7%BB%E5%8A%A0%E6%9B%B4%E6%96%B0%E5%85%83%E7%B4%A0%E7%9A%84%E6%80%A7%E8%83%BD%E6%AF%94%E8%BE%83/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%AF%BB%E6%89%BE%E7%BC%BA%E5%A4%B1%E6%95%B0%E5%AD%97,%E5%87%BA%E7%8E%B0%E6%AC%A1%E6%95%B0%E4%B8%8D%E5%90%8C%E6%95%B0%E5%AD%97%E7%9A%84%E9%A2%98%E7%9B%AE%E6%80%BB%E7%BB%93/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/latex/Windows%E4%B8%8BLaTeX%E6%8A%A5%E9%94%99error-font-simsun-not-found%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/nvim%E5%9C%A8Ubuntu%E4%B8%8B%E6%8A%A5%E9%94%99Executable-'ctags'-can't-be-found.-Gute-ntags-will-be-disabled.-You-can-re-enable-it-by-setting-g-gutentags_enabled-back-to-1.%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/%E9%85%8D%E7%BD%AEnextcloud%E7%9A%84%E9%82%AE%E4%BB%B6%E9%80%9A%E7%9F%A5(%E4%BB%A5QQ%E9%82%AE%E7%AE%B1%E4%B8%BA%E4%BE%8B)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E8%B0%88%E8%B0%88%E5%A6%82%E4%BD%95%E9%AB%98%E6%95%88%E4%BD%BF%E7%94%A8%E6%90%9C%E7%B4%A2%E5%BC%95%E6%93%8E%E6%89%BE%E5%88%B0%E8%87%AA%E5%B7%B1%E6%83%B3%E8%A6%81%E7%9A%84%E5%86%85%E5%AE%B9/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E4%B8%8A%E4%B8%8B%E5%8F%96%E6%95%B4%E5%87%BD%E6%95%B0%E7%9A%84%E5%85%B3%E7%B3%BB%E4%B8%8E%E4%B8%80%E4%BA%9B%E9%87%8D%E8%A6%81%E6%80%A7%E8%B4%A8(%E9%99%84%E8%AF%81%E6%98%8E)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E5%8A%9B%E6%89%A3%E5%AF%BB%E6%89%BE%E6%95%B0%E7%BB%84%E4%B8%AD%E5%87%BA%E7%8E%B0%E6%AC%A1%E6%95%B0%E8%B6%85%E8%BF%87%E6%95%B0%E7%BB%84%E9%95%BF%E5%BA%A6%E4%B8%80%E5%8D%8A%E7%9A%84%E6%95%B0%E5%A4%9A%E7%A7%8D%E6%80%9D%E8%B7%AF/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/Mac%E7%89%88Word%E8%AE%BE%E7%BD%AE%E4%BB%8E%E7%AC%ACK%E9%A1%B5%E5%BC%80%E5%A7%8B%E6%98%BE%E7%A4%BA%E9%A1%B5%E7%A0%81/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/Ubuntu%E4%BA%91%E6%9C%8D%E5%8A%A1%E5%99%A8%E4%B8%8A%E9%85%8D%E7%BD%AEGitHub%E8%AE%BF%E9%97%AE%E5%8A%A0%E9%80%9F/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/%E5%9C%A8M1Mac%E4%B8%8A%E4%B8%BAGIMP%E5%AE%89%E8%A3%85G'MIC%E6%8F%92%E4%BB%B6/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/%E5%9C%A8Ubuntu%E4%B8%8A%E5%AE%89%E8%A3%85%E6%9C%80%E6%96%B0%E7%9A%84neovim(with-LinuxBrew)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/%E5%9C%A8%E4%BA%91%E6%9C%8D%E5%8A%A1%E5%99%A8%E4%B8%8A%E9%83%A8%E7%BD%B2jupyter%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%8E%AF%E5%A2%83(with-conda-forge)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/Win,M1Mac%E4%B8%8A%E5%AE%89%E8%A3%85jupyter%E7%9A%84MATLAB%E6%94%AF%E6%8C%81%E6%8F%92%E4%BB%B6%E7%9A%84%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/c_c++/C%E8%AF%AD%E8%A8%80%E5%8E%9F%E7%94%9F%E6%95%B0%E7%BB%84%E7%B4%A2%E5%BC%95%E7%9A%84%E5%A5%87%E6%80%AA%E5%86%99%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E4%B8%80%E7%A7%8D%E8%AE%A1%E7%AE%97%E6%95%B4%E6%95%B0%E4%BD%8D1%E4%B8%AA%E6%95%B0%E7%9A%84%E6%96%B0%E6%96%B9%E6%B3%95/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/zlibrary%E6%97%A0%E6%B3%95%E8%AE%BF%E9%97%AE%E7%9A%84%E5%87%A0%E7%A7%8D%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/dsa/%E7%94%A8ASCII%E5%AD%97%E7%AC%A6%E6%89%93%E5%8D%B0%E4%B8%80%E6%A3%B5%E4%BA%8C%E5%8F%89%E6%A0%91(Python,-C++)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/MacOS%E5%88%9B%E5%BB%BA%E5%AE%88%E6%8A%A4%E8%BF%9B%E7%A8%8B%E4%B8%8E%E5%AE%9A%E6%97%B6%E4%BB%BB%E5%8A%A1(launchctl)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/%E9%98%BF%E9%87%8C%E4%BA%91%E6%9C%8D%E5%8A%A1%E5%99%A8(Ubuntu)%E9%85%8D%E7%BD%AEnextcloud%E4%B8%AA%E4%BA%BA%E7%BD%91%E7%9B%98/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/%E9%85%8D%E7%BD%AE%E4%BA%91%E6%9C%8D%E5%8A%A1%E5%99%A8(Ubuntu)%E7%9A%84vnc%E5%AE%88%E6%8A%A4%E8%BF%9B%E7%A8%8B(%E6%9C%8D%E5%8A%A1)/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/%E9%98%BF%E9%87%8C%E4%BA%91%E6%9C%8D%E5%8A%A1%E5%99%A8(Ubuntu)%E9%85%8D%E7%BD%AEcalibre-web%E5%9B%BE%E4%B9%A6%E7%AE%A1%E7%90%86%E6%9C%8D%E5%8A%A1/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/linux-shell/%E9%80%9A%E8%BF%87%E9%98%BF%E9%87%8C%E4%BA%91server%E9%85%8D%E7%BD%AE%E5%B1%9E%E4%BA%8E%E8%87%AA%E5%B7%B1%E7%9A%84%E4%BA%91%E7%AC%94%E8%AE%B0leanote/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://zorchp.github.io/tips/win%E6%88%96%E5%AE%89%E5%8D%93%E9%80%9A%E8%BF%87%E5%86%85%E7%BD%91%E7%A9%BF%E9%80%8F(frp)%E8%BF%9C%E6%8E%A7Mac%E7%9A%84%E9%85%8D%E7%BD%AE%E6%8C%87%E5%8D%97/</loc>
<lastmod>2023-05-10T01:50:53+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>