-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
1333 lines (1333 loc) · 49.5 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">
<url>
<loc>https://wangxu.me</loc>
<lastmod>2024-09-29T23:33:15.572086299+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/learning/2024/09/29/linguam-latinam-disco/index.html</loc>
<lastmod>2024-09-29T23:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/conference/2024/09/08/post-inclusion-conf-bund/index.html</loc>
<lastmod>2024-09-08T23:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/skills/2024/07/28/how-to-host-a-panel/index.html</loc>
<lastmod>2024-07-28T16:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/readings/2022/12/28/reading-list/index.html</loc>
<lastmod>2022-12-28T13:29:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/readings/2022/12/27/reading-road-to-serfdom/index.html</loc>
<lastmod>2022-12-27T21:52:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/workout/2022/11/30/zwift-tutorial/index.html</loc>
<lastmod>2022-11-30T23:38:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/readings/2022/10/26/reading-ukraine/index.html</loc>
<lastmod>2022-10-26T13:42:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/memories/2022/08/03/have-a-drink/index.html</loc>
<lastmod>2022-08-03T23:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/reading/2022/07/16/strategy/index.html</loc>
<lastmod>2022-07-16T21:59:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/reading/2022/06/30/empire-deep/index.html</loc>
<lastmod>2022-06-30T18:46:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2021/12/31/summary/index.html</loc>
<lastmod>2021-12-31T20:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/memories/2021/02/09/to-dad/index.html</loc>
<lastmod>2021-02-09T12:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2020/12/31/happy-new-year/index.html</loc>
<lastmod>2020-12-31T20:20:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2020/06/01/new-car-for-fun/index.html</loc>
<lastmod>2020-06-01T08:53:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2019/12/28/new-decade/index.html</loc>
<lastmod>2019-12-28T11:28:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/database/2019/10/04/on-ob-tpcc/index.html</loc>
<lastmod>2019-10-04T23:18:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2019/02/04/chinese-new-year-notes/index.html</loc>
<lastmod>2019-02-04T12:18:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2019/01/25/annual-review-en/index.html</loc>
<lastmod>2019-01-25T23:18:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2018/12/31/annual-review/index.html</loc>
<lastmod>2018-12-31T23:18:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/kata containers/2018/10/24/kata-meetup-summary/index.html</loc>
<lastmod>2018-10-24T22:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2018/07/24/workout-29999/index.html</loc>
<lastmod>2018-07-24T01:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2018/07/15/sunflower/index.html</loc>
<lastmod>2018-07-15T10:38:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/memories/2018/02/08/2-years/index.html</loc>
<lastmod>2018-02-08T00:18:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/kata/2018/02/07/openinfra/index.html</loc>
<lastmod>2018-02-07T18:58:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/hyper/2017/12/28/annual-review/index.html</loc>
<lastmod>2017-12-28T11:08:08+09:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/feeling/2017/11/16/legend-feeling/index.html</loc>
<lastmod>2017-11-16T16:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2017/07/21/run-100/index.html</loc>
<lastmod>2017-07-21T00:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2017/05/28/oh-it-closed/index.html</loc>
<lastmod>2017-05-28T15:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2017/04/23/lose-weight/index.html</loc>
<lastmod>2017-04-23T11:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/family/2017/02/09/nothing/index.html</loc>
<lastmod>2017-02-09T11:00:00+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/family/2017/02/09/a-year-without-you/index.html</loc>
<lastmod>2017-02-09T00:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/hyper/2016/12/19/container-cloud-pattern/index.html</loc>
<lastmod>2016-12-19T01:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/docker/2016/11/04/docker-logger/index.html</loc>
<lastmod>2016-11-04T18:38:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/opensource/2016/10/27/rethinkdb/index.html</loc>
<lastmod>2016-10-27T09:18:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2016/10/26/alicloud/index.html</loc>
<lastmod>2016-10-26T22:58:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/hyper/2016/10/17/hyper-arm64/index.html</loc>
<lastmod>2016-10-17T23:58:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/meta/2016/09/24/blog-to-hyper-2/index.html</loc>
<lastmod>2016-09-28T09:35:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/meta/2016/09/24/blog-to-hyper/index.html</loc>
<lastmod>2016-09-24T17:12:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/hyper/2016/08/13/hyper-ga/index.html</loc>
<lastmod>2016-09-24T10:35:00+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2016/07/24/standardization/index.html</loc>
<lastmod>2016-07-24T02:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/family/2016/07/08/anniversary-9/index.html</loc>
<lastmod>2016-07-08T12:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2016/07/07/exam-98/index.html</loc>
<lastmod>2016-07-07T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/hyper/2016/06/28/frakti/index.html</loc>
<lastmod>2016-06-28T10:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/hyper/2016/06/17/runv-docker-integration/index.html</loc>
<lastmod>2016-06-17T15:06:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/family/2016/06/08/for-dad/index.html</loc>
<lastmod>2016-06-08T05:12:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/hyper/2016/05/25/hyper-birthday/index.html</loc>
<lastmod>2016-05-25T20:06:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2016/05/20/how-about-hyper/index.html</loc>
<lastmod>2016-05-20T10:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2016/05/12/doppler/index.html</loc>
<lastmod>2016-05-12T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2016/04/16/just-for-fun/index.html</loc>
<lastmod>2016-04-16T18:18:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/family/2016/02/29/forget-or-not/index.html</loc>
<lastmod>2016-02-29T01:10:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/family/2016/02/09/bye-to-dad/index.html</loc>
<lastmod>2016-02-09T23:58:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/container/2016/02/06/hyper-0-5/index.html</loc>
<lastmod>2016-02-06T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/family/2016/01/29/dont-give-up/index.html</loc>
<lastmod>2016-01-29T00:44:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/container/2016/01/23/unikernel-critics/index.html</loc>
<lastmod>2016-01-23T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2015/12/27/diy-pm25-monitor/index.html</loc>
<lastmod>2015-12-27T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2015/11/03/kubernetes-service-account/index.html</loc>
<lastmod>2015-11-03T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2015/11/02/summit/index.html</loc>
<lastmod>2015-11-02T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2015/05/21/children-time/index.html</loc>
<lastmod>2015-05-21T10:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/meta/2015/02/24/blog-update/index.html</loc>
<lastmod>2015-02-24T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2015/01/20/iridium/index.html</loc>
<lastmod>2015-01-20T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2014/10/18/travel-in-aug/index.html</loc>
<lastmod>2014-10-18T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2014/10/18/car-recorder/index.html</loc>
<lastmod>2014-10-18T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2014/07/29/搬家/index.html</loc>
<lastmod>2014-07-29T01:25:56+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2014/06/22/推荐两款值得买的-android-应用/index.html</loc>
<lastmod>2014-06-22T23:56:51+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/coding/2014/06/04/spray-中协议处理-pipelines-的实现/index.html</loc>
<lastmod>2014-06-04T01:01:24+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2014/06/01/为什么说航空博物馆不适合给孩子做科普/index.html</loc>
<lastmod>2014-06-01T00:09:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2014/04/11/wifi/index.html</loc>
<lastmod>2014-04-11T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2014/03/18/cmcc/index.html</loc>
<lastmod>2015-03-24T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2014/02/17/近期云计算技术的发展与热点技术/index.html</loc>
<lastmod>2014-02-17T23:04:02+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2013/12/22/2013回望/index.html</loc>
<lastmod>2013-12-22T20:13:11+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2013/11/29/cc-mm-cn/index.html</loc>
<lastmod>2013-11-29T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2013/11/16/debian/index.html</loc>
<lastmod>2013-11-16T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2013/08/29/smart-antenna/index.html</loc>
<lastmod>2013-08-29T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2013/08/28/cell/index.html</loc>
<lastmod>2013-08-28T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/zhihu/2013/08/21/metro-safety/index.html</loc>
<lastmod>2014-07-02T08:08:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2013/06/02/【译文】lsfmm:-缓存-—-dm-cache-与-bcache/index.html</loc>
<lastmod>2013-06-02T23:03:33+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2013/06/01/兰卡威环岛自驾游/index.html</loc>
<lastmod>2013-06-01T23:38:56+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2013/06/01/在新-thinkpad-s3-上使用-bcache-作为-linux-的根分区/index.html</loc>
<lastmod>2013-06-01T15:57:55+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2013/04/28/两年之后,再次告别/index.html</loc>
<lastmod>2013-04-28T23:23:21+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/读后感/2013/04/12/给互联网圈子的朋友们介绍下运营商网络/index.html</loc>
<lastmod>2013-04-12T09:39:51+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2013/03/07/tornado-memcache/index.html</loc>
<lastmod>2013-03-07T09:09:07+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2013/02/23/tornado-stack-context/index.html</loc>
<lastmod>2013-02-23T00:39:27+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2012/12/06/expect/index.html</loc>
<lastmod>2012-12-06T22:51:23+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2012/10/10/mac-下用自定义脚本配置-tunnelblick-的自定义路由/index.html</loc>
<lastmod>2012-10-10T00:27:54+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2012/09/15/十年/index.html</loc>
<lastmod>2012-09-15T01:27:59+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2012/07/26/bash-process-sub/index.html</loc>
<lastmod>2012-07-26T00:18:26+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2012/07/05/云计算中的持久化与安全性/index.html</loc>
<lastmod>2012-07-05T15:37:45+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2012/07/05/改变互联网的iaas服务/index.html</loc>
<lastmod>2012-07-05T15:33:15+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/works/2012/06/25/zeromq-intro/index.html</loc>
<lastmod>2012-06-25T13:44:06+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/读后感/2012/06/19/《孙子兵法》阅读指南/index.html</loc>
<lastmod>2012-06-19T18:37:38+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2012/05/21/整了个-hostapd-搭的-ap/index.html</loc>
<lastmod>2012-05-21T23:14:48+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2012/05/20/一个-rom-和几个-app[多图杀猫]/index.html</loc>
<lastmod>2012-05-20T22:06:26+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2012/05/16/那些天一起刷过的galaxy-note-ics-rom/index.html</loc>
<lastmod>2012-05-16T11:36:33+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2012/05/14/创建-debian-ubuntu-风格的内核模块包/index.html</loc>
<lastmod>2012-05-14T18:26:52+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2012/04/21/使用-iproute2-进行-multihoming-设置/index.html</loc>
<lastmod>2012-04-21T17:52:45+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2012/04/19/清明假期北海游/index.html</loc>
<lastmod>2012-04-19T00:59:45+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2012/03/26/版聚的另一话题——你是如何退出emacs的/index.html</loc>
<lastmod>2012-03-26T23:31:02+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2012/03/26/mmap--和read--哪个快——linuxfb版聚上谈论的开发中的常见误解与陷阱/index.html</loc>
<lastmod>2012-03-26T11:28:30+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2012/03/20/生日快乐,斯屹/index.html</loc>
<lastmod>2012-03-20T15:07:09+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2012/03/09/列出某一cpu上跑的所有进程-线程/index.html</loc>
<lastmod>2012-03-09T18:51:16+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2012/02/17/galaxy-note入手体验/index.html</loc>
<lastmod>2012-02-17T00:22:28+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2012/02/09/flushing-out-pdflush/index.html</loc>
<lastmod>2012-02-09T23:20:21+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2012/02/04/ext4/index.html</loc>
<lastmod>2012-02-04T00:04:24+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2012/01/03/回忆2011/index.html</loc>
<lastmod>2012-01-03T01:30:14+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2011/12/12/2011年最后一次版聚小记/index.html</loc>
<lastmod>2011-12-12T13:29:39+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/读后感/2011/11/19/阅读笔记/index.html</loc>
<lastmod>2011-11-19T23:56:55+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2011/11/18/看展台的烦心事/index.html</loc>
<lastmod>2011-11-18T21:25:56+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2011/11/18/scsi-targets/index.html</loc>
<lastmod>2011-11-18T00:04:05+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2011/09/16/不客观地对比一下移动edge和联通wcdma的业务/index.html</loc>
<lastmod>2011-09-16T10:22:52+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2011/09/15/有道理的有时是行不通的/index.html</loc>
<lastmod>2011-09-15T00:15:55+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2011/08/22/武夷山游记/index.html</loc>
<lastmod>2011-08-22T14:16:04+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2011/08/01/暂时放弃译书工作了/index.html</loc>
<lastmod>2011-08-01T16:49:56+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2011/06/06/zookeeper-watches/index.html</loc>
<lastmod>2011-06-06T10:30:12+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2011/05/10/一个艰难的决定/index.html</loc>
<lastmod>2011-05-10T16:31:31+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2011/05/06/斯屹的家庭作业/index.html</loc>
<lastmod>2011-05-06T01:18:01+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2011/05/05/研究了一宿,找到了个合适的ffmpeg参数/index.html</loc>
<lastmod>2011-05-05T04:04:07+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/works/2011/04/25/cassandra-definitive-guide/index.html</loc>
<lastmod>2011-04-25T10:40:32+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2011/04/07/fsdataset结构图/index.html</loc>
<lastmod>2011-04-07T16:08:38+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2011/04/01/欢迎访问王斯屹小朋友的主页/index.html</loc>
<lastmod>2011-04-01T00:09:27+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2011/03/30/地铁与地铁列车(北京)/index.html</loc>
<lastmod>2011-03-30T10:16:38+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2011/03/28/一个自动搭建ipip隧道的脚本/index.html</loc>
<lastmod>2011-03-28T14:08:37+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2011/01/19/用svm同步svn仓库及解决锁问题/index.html</loc>
<lastmod>2011-01-19T11:47:32+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2010/12/27/斯屹生活视频两则/index.html</loc>
<lastmod>2010-12-27T13:36:45+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2010/12/21/2010年最后一次linux版聚/index.html</loc>
<lastmod>2010-12-21T13:13:55+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2010/12/13/centos-rhel-5.4-bcm5709网卡问题/index.html</loc>
<lastmod>2010-12-13T11:47:22+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/12/08/datanode-hdfs-1362/index.html</loc>
<lastmod>2010-12-08T21:22:20+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2010/12/06/back-to-bupt/index.html</loc>
<lastmod>2010-12-06T00:19:42+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2010/12/05/第一次米国之行(2):轨道交通/index.html</loc>
<lastmod>2010-12-05T23:57:41+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/12/05/第一次米国之行(1):到达san-jose/index.html</loc>
<lastmod>2010-12-05T23:45:59+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2010/12/05/第一次米国之行(0):前传/index.html</loc>
<lastmod>2010-12-05T23:40:59+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/10/08/十一周记/index.html</loc>
<lastmod>2010-10-08T00:57:55+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2010/09/10/信用卡评测之二——补卡相关/index.html</loc>
<lastmod>2010-09-10T17:12:10+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2010/09/06/csdn-tup-之-hadoop-沙龙流水账/index.html</loc>
<lastmod>2010-09-06T23:14:09+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2010/09/05/cmri-hadoop/index.html</loc>
<lastmod>2010-09-05T22:44:24+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2010/09/04/hadoop-in-china-2010大会归来/index.html</loc>
<lastmod>2010-09-04T17:55:22+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2010/08/30/周末,钱包丢了暨四家银行的挂失服务比较【update20100831】/index.html</loc>
<lastmod>2010-08-30T18:30:43+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2010/08/29/linuxfb-gnome北京用户组联合聚会记录/index.html</loc>
<lastmod>2010-08-29T23:04:00+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2010/08/28/8月云计算相关开源新闻/index.html</loc>
<lastmod>2010-08-28T15:54:54+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2010/08/17/卓越购书单生成命令行/index.html</loc>
<lastmod>2010-08-17T09:56:40+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2010/08/13/中国移动大云非官方广告桌面/index.html</loc>
<lastmod>2010-08-13T10:53:45+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2010/08/12/上海故事/index.html</loc>
<lastmod>2010-08-12T01:19:30+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2010/08/09/不太爽的海边之行/index.html</loc>
<lastmod>2010-08-09T16:05:53+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/08/09/张晓东教授来访研究院,交流ssd应用/index.html</loc>
<lastmod>2010-08-09T14:49:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/08/02/准备出我的diamond/index.html</loc>
<lastmod>2010-08-02T14:21:17+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2010/07/03/爱你到永久/index.html</loc>
<lastmod>2010-07-03T14:17:51+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/cloud/2010/06/27/6月云计算相关开源新闻/index.html</loc>
<lastmod>2010-06-27T02:33:55+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/life/2010/06/23/欠斯屹一篇日志/index.html</loc>
<lastmod>2010-06-23T21:56:01+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2010/05/27/cassandra-examples/index.html</loc>
<lastmod>2010-05-27T08:06:08+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/05/14/一周:加班、小孩生病以及出差/index.html</loc>
<lastmod>2010-05-14T23:14:58+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2010/05/13/[译文]理解cassandra源代码/index.html</loc>
<lastmod>2010-05-13T01:22:05+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/linux/2010/04/28/linuxfb版聚总结/index.html</loc>
<lastmod>2010-04-28T23:58:59+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/04/08/codereview统计脚本/index.html</loc>
<lastmod>2010-04-08T11:37:06+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2010/03/25/hbase-vs-cassandra:-我们迁移系统的原因/index.html</loc>
<lastmod>2010-03-25T00:10:43+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/03/22/斯屹两岁照片集(多图杀猫)/index.html</loc>
<lastmod>2010-03-22T11:05:25+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/03/20/生日快乐,斯屹!/index.html</loc>
<lastmod>2010-03-20T23:33:00+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/02/04/ophone体验第三周/index.html</loc>
<lastmod>2010-02-04T14:01:12+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/02/02/ophone上好玩的闹钟alarms/index.html</loc>
<lastmod>2010-02-02T22:52:12+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/01/27/ophone第二周体验/index.html</loc>
<lastmod>2010-01-27T23:38:25+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2010/01/20/一行的日志统计计算脚本/index.html</loc>
<lastmod>2010-01-20T13:04:35+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/01/17/ophone使用一周体验/index.html</loc>
<lastmod>2010-01-17T23:24:25+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/01/17/上路吓人啦/index.html</loc>
<lastmod>2010-01-17T22:23:37+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/01/07/写点关于移动网络和gsm安全的科普/index.html</loc>
<lastmod>2010-01-07T14:12:34+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2010/01/01/重名啊……fml/index.html</loc>
<lastmod>2010-01-01T16:29:07+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/12/31/再见,2009/index.html</loc>
<lastmod>2009-12-31T22:46:45+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/12/28/科目二考试通过啦/index.html</loc>
<lastmod>2009-12-28T17:31:28+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/12/26/北邮图书馆惊现《debian标准教程》/index.html</loc>
<lastmod>2009-12-26T23:31:51+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/12/26/oh!-spaces/index.html</loc>
<lastmod>2009-12-26T21:34:05+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2009/12/22/zookeeper-observers/index.html</loc>
<lastmod>2009-12-22T02:39:25+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/12/21/胡宇昕小朋友出生啦/index.html</loc>
<lastmod>2009-12-21T16:05:55+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/works/2009/12/21/发放《debian标准教程》示例源代码/index.html</loc>
<lastmod>2009-12-21T12:07:45+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/12/20/似乎还是labs博客访问量高啊/index.html</loc>
<lastmod>2009-12-20T01:05:47+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2009/12/20/[译文]-nosql们背后的共有原则/index.html</loc>
<lastmod>2009-12-20T00:16:29+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/12/14/从geekcook订一个自己的杯具/index.html</loc>
<lastmod>2009-12-14T01:03:31+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/11/12/移动应该更好地利用新媒体/index.html</loc>
<lastmod>2009-11-12T22:12:14+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/11/12/eeepc换屏记/index.html</loc>
<lastmod>2009-11-12T21:30:23+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/11/05/也说google-book/index.html</loc>
<lastmod>2009-11-05T01:54:45+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2009/11/03/avro-format/index.html</loc>
<lastmod>2009-11-03T12:04:46+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/10/25/beijinglsf笔记/index.html</loc>
<lastmod>2009-10-25T22:27:05+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/10/19/gtd与七个习惯读后感/index.html</loc>
<lastmod>2009-10-19T15:02:31+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/10/17/告别banff,告别ogf27/index.html</loc>
<lastmod>2009-10-17T12:27:43+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/10/16/博客行动日,我也来一篇吧/index.html</loc>
<lastmod>2009-10-16T10:19:49+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/10/15/收到一个读者回应/index.html</loc>
<lastmod>2009-10-15T04:05:55+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/10/12/抵达班芙/index.html</loc>
<lastmod>2009-10-12T14:08:57+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/10/12/着陆温哥华/index.html</loc>
<lastmod>2009-10-12T04:38:02+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/10/08/斯屹捉迷藏/index.html</loc>
<lastmod>2009-10-08T23:33:32+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2009/09/28/[译文]-xi2-食谱(1)/index.html</loc>
<lastmod>2009-09-28T20:42:25+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/scripts/2009/09/27/同时操作多台主机的命令行/index.html</loc>
<lastmod>2009-09-27T14:48:58+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/09/27/你为什么写blog?/index.html</loc>
<lastmod>2009-09-27T00:24:13+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/09/20/斯屹一岁半了/index.html</loc>
<lastmod>2009-09-20T23:43:58+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/09/17/我的书的那些事/index.html</loc>
<lastmod>2009-09-17T09:48:44+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/09/15/上架啦!/index.html</loc>
<lastmod>2009-09-15T13:24:53+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2009/09/14/null-pointers-2/index.html</loc>
<lastmod>2009-09-14T22:46:51+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/09/07/a-terrible-day/index.html</loc>
<lastmod>2009-09-07T23:58:16+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2009/09/04/null-pointers-1/index.html</loc>
<lastmod>2009-09-04T00:31:39+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/translation/2009/08/30/[译文]-linux-内核设计模式--1-/index.html</loc>
<lastmod>2009-08-30T21:39:02+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/07/20/“中文linux发行版”有出路么/index.html</loc>
<lastmod>2009-07-20T22:55:23+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/07/09/chrome-os,-another-linux-distro?/index.html</loc>
<lastmod>2009-07-09T11:31:51+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/07/09/结婚这两年/index.html</loc>
<lastmod>2009-07-09T10:13:03+08:00</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>https://wangxu.me/misc/2009/07/09/我找到解决北京交通问题的方法了/index.html</loc>
<lastmod>2009-07-09T09:29:36+08:00</lastmod>