-
Notifications
You must be signed in to change notification settings - Fork 1
/
sitemap.xml
3180 lines (2557 loc) · 123 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" standalone="yes" ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://www.opensourceway.community/posts/book-of-open-source/2021-06-rebel-code/</loc>
<lastmod>2021-05-20T14:18:27+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/book-of-open-source/2021-05-the-open-source-way/</loc>
<lastmod>2021-04-30T11:45:02+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/book-of-open-source/2021-04-open-source-for-business/</loc>
<lastmod>2021-03-30T16:48:51+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-03-21/</loc>
<lastmod>2021-03-22T16:16:32+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_culture/why_must_speaking_english_in_open_source_world/</loc>
<lastmod>2021-03-17T10:02:07+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-03-14/</loc>
<lastmod>2021-03-15T15:44:21+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-03-07/</loc>
<lastmod>2021-03-04T10:58:16+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-02-28/</loc>
<lastmod>2021-03-02T11:32:01+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/book-of-open-source/2021-03-linux-under-the-radar/</loc>
<lastmod>2021-02-25T22:45:09+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%89%E5%91%A8%E7%B2%BE%E9%80%892021-02-23/</loc>
<lastmod>2021-02-23T08:35:57+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-01-31/</loc>
<lastmod>2021-02-01T15:39:56+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/book-of-open-source/2021-02-cultivating-communities-of-practice/</loc>
<lastmod>2021-01-21T09:38:54+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-1-17/</loc>
<lastmod>2021-01-18T11:13:10+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/book-of-open-source/want-recommended-3-books-to-xiangbiao/</loc>
<lastmod>2021-01-17T16:28:25+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/open-source-way-community-program/the-book-of-origin-program/</loc>
<lastmod>2021-01-17T15:05:46+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/book-of-open-source/2021-01-code-2-laws-of-cyberspace/</loc>
<lastmod>2021-01-11T16:32:39+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-1-10/</loc>
<lastmod>2021-01-11T12:01:24+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/the_way_of_open_source/status-of-kuosi-2020-11/</loc>
<lastmod>2020-12-01T14:09:33+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-10.31/</loc>
<lastmod>2020-10-31T06:42:49+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-10-25/</loc>
<lastmod>2020-10-22T09:35:42+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-10-18/</loc>
<lastmod>2020-10-18T11:48:25+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/askos/why_we_need_ask/</loc>
<lastmod>2020-09-30T09:20:12+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-10-02/</loc>
<lastmod>2020-09-29T09:52:49+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-09-27/</loc>
<lastmod>2020-09-27T16:51:50+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-09-20/</loc>
<lastmod>2020-09-14T20:36:13+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-09-13/</loc>
<lastmod>2020-09-13T11:32:01+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-09-06/</loc>
<lastmod>2020-09-07T09:17:25+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/the_way_of_open_source/please_calm_down_only_chance_to_sync_world/</loc>
<lastmod>2020-09-01T14:48:37+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-08-30/</loc>
<lastmod>2020-08-27T12:54:50+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-08-23/</loc>
<lastmod>2020-08-23T11:07:14+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-08-09/</loc>
<lastmod>2020-08-09T10:30:26+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-06-30-peer-review-in-open-source/</loc>
<lastmod>2020-08-07T10:34:08+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-05-30-where-is-hacker/</loc>
<lastmod>2020-07-30T16:34:03+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-08-02/</loc>
<lastmod>2020-07-28T11:56:06+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-07-26/</loc>
<lastmod>2020-07-21T16:30:17+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/open-source-book-review/open-source-and-developer-relations/</loc>
<lastmod>2020-07-17T12:12:05+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-07-19/</loc>
<lastmod>2020-07-17T10:33:46+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-07-12/</loc>
<lastmod>2020-07-12T20:01:00+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-07-05/</loc>
<lastmod>2020-07-01T10:55:38+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-06-28/</loc>
<lastmod>2020-06-22T20:43:12+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-06-21/</loc>
<lastmod>2020-06-18T19:00:43+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/osc-analysis-framework/</loc>
<lastmod>2020-06-17T15:11:18+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-06-14/</loc>
<lastmod>2020-06-14T09:46:06+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-06-01/</loc>
<lastmod>2020-06-01T09:58:21+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-04-26-osp-and-chaoss/</loc>
<lastmod>2020-05-28T11:26:00+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/open_source_community_role-analysis/</loc>
<lastmod>2020-05-27T18:00:47+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/chaosscast/introducing_chaosscast/</loc>
<lastmod>2020-05-25T15:13:25+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-05-24/</loc>
<lastmod>2020-05-22T17:25:01+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-05-17/</loc>
<lastmod>2020-05-15T11:52:20+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/review_the_logic_of_collective_action/</loc>
<lastmod>2020-05-13T16:14:35+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-05-10/</loc>
<lastmod>2020-05-05T10:59:58+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/establish-asia-pacific-chaoss-community/</loc>
<lastmod>2020-04-30T11:12:02+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-05-03/</loc>
<lastmod>2020-04-27T18:44:49+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/review_the_foundation_of_open_source_city/</loc>
<lastmod>2020-04-25T09:41:42+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-26/</loc>
<lastmod>2020-04-21T10:43:25+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-03-29-online-reading-engineering/</loc>
<lastmod>2020-04-14T17:32:37+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-done-and-plan-index/</loc>
<lastmod>2020-04-14T13:18:36+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-19/</loc>
<lastmod>2020-04-14T12:58:53+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/the-brief-history-of-cloud-foundry-foundation/</loc>
<lastmod>2020-04-14T12:34:57+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/eclipse-introduce/</loc>
<lastmod>2020-04-07T11:43:45+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/numfocus-introduce/</loc>
<lastmod>2020-04-07T11:43:19+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-12/</loc>
<lastmod>2020-04-06T17:25:09+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-05/</loc>
<lastmod>2020-04-05T10:35:13+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/spi-annual-report-introduce/</loc>
<lastmod>2020-04-02T17:19:40+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-03-29/</loc>
<lastmod>2020-03-26T19:53:45+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-03-22/</loc>
<lastmod>2020-03-22T12:09:29+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/what-is-open-source-community/</loc>
<lastmod>2020-03-20T20:38:02+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/how-debian-growing-without-foundation/</loc>
<lastmod>2020-03-20T20:31:22+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-03-15/</loc>
<lastmod>2020-03-15T11:11:53+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-02-29-gsoc-in-china/</loc>
<lastmod>2020-03-13T09:43:29+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/introduction_of_software_freedom_law_center/</loc>
<lastmod>2020-03-12T16:46:06+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/introduction_of_software_freedom_conservancy/</loc>
<lastmod>2020-03-09T18:58:12+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/planing_and_reflection/2020/planning_and_schedule_of_year/</loc>
<lastmod>2020-03-07T15:33:33+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/what-is-os-ecosystem-review-rainforrest/</loc>
<lastmod>2020-03-05T19:01:18+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/the-rise-and-evolution-of-open-source-foundation/</loc>
<lastmod>2020-03-02T16:57:42+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-03-08/</loc>
<lastmod>2020-03-02T16:51:54+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-03-01/</loc>
<lastmod>2020-02-26T10:44:20+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/gsoc/how-to-ask-for-gsoc-2020/</loc>
<lastmod>2020-02-25T16:16:01+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/redmonk/the-real-serverless-revolution/</loc>
<lastmod>2020-02-22T11:42:24+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/innersource/the-story-of-biosphere2/</loc>
<lastmod>2020-02-21T16:38:02+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-02-23/</loc>
<lastmod>2020-02-18T17:07:11+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/ttoos-style/</loc>
<lastmod>2020-02-15T22:48:54+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/discuss_of_how_to_attract_operators_to_participate_os_community_20200213/</loc>
<lastmod>2020-02-14T12:16:15+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/community/welcome-to-anyone-contribute/</loc>
<lastmod>2020-02-13T22:51:50+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-02-16/</loc>
<lastmod>2020-02-11T10:38:05+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-02-10-what-is-good-communition-tool/</loc>
<lastmod>2020-02-10T11:40:17+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-02-09-what-is-open-source-community/</loc>
<lastmod>2020-02-09T12:31:11+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/redmonk/how-to-compete-with-aws/</loc>
<lastmod>2020-02-08T10:35:34+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-02-07-motivation-beyond-of-money/</loc>
<lastmod>2020-02-07T19:52:00+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/open-source-conference/fosdem-2020-view-record-journal/</loc>
<lastmod>2020-02-07T14:45:05+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/community/communication/</loc>
<lastmod>2020-02-07T14:45:05+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/community/contributing/</loc>
<lastmod>2020-02-07T14:45:05+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-02-06-business-and-open-source/</loc>
<lastmod>2020-02-07T09:42:46+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-02-05-is-apache-way-worked-in-china/</loc>
<lastmod>2020-02-05T21:42:46+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-02-09/</loc>
<lastmod>2020-02-05T20:54:36+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-02-03-business-embrave-osc/</loc>
<lastmod>2020-02-04T11:22:48+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/2020-02-02-open-source-developer/</loc>
<lastmod>2020-02-02T21:05:45+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-02-02/</loc>
<lastmod>2020-01-29T16:38:57+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/why_create_community_leadership_development_group/</loc>
<lastmod>2020-01-21T18:32:04+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-01-26/</loc>
<lastmod>2020-01-21T16:42:34+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/reading-list-of-open-core/</loc>
<lastmod>2020-01-18T10:22:46+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/asf-founders-look-back-on-20-years/</loc>
<lastmod>2020-01-09T12:01:53+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-01-12/</loc>
<lastmod>2020-01-09T11:57:57+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/henrik_ingo_open_life/</loc>
<lastmod>2020-01-08T10:28:50+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-01-05/</loc>
<lastmod>2019-12-29T12:37:17+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-12-29/</loc>
<lastmod>2019-12-29T12:35:41+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-12-15/</loc>
<lastmod>2019-12-09T10:52:11+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-12-08/</loc>
<lastmod>2019-12-06T11:01:05+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/the-art-of-community-building-belonging/</loc>
<lastmod>2019-12-06T11:00:01+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/event_analysis/2019_open_source_program_survey_result/</loc>
<lastmod>2019-12-06T10:56:16+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/book_review_of_mitfoss/</loc>
<lastmod>2019-12-04T16:05:27+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-12-01/</loc>
<lastmod>2019-11-27T10:47:35+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_culture/open-science-means-open-source-or-least-it-should/</loc>
<lastmod>2019-11-26T22:38:20+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_leader/open-source-angel-devon-zuegel/</loc>
<lastmod>2019-11-20T16:48:06+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-11-24/</loc>
<lastmod>2019-11-20T11:28:18+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-11-17/</loc>
<lastmod>2019-11-14T21:05:02+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-11-10/</loc>
<lastmod>2019-11-09T15:40:44+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-11-03/</loc>
<lastmod>2019-10-31T15:35:26+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_culture/what-open-source-not/</loc>
<lastmod>2019-10-31T15:01:02+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-10-27/</loc>
<lastmod>2019-10-26T17:02:12+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/chaoss_metrics_201908_learning/</loc>
<lastmod>2019-10-24T18:06:47+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/book_review_of_voice_from_the_osr/</loc>
<lastmod>2019-10-24T14:01:37+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_leader/what-open-source-community-means-me/</loc>
<lastmod>2019-10-20T17:18:41+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-10-20/</loc>
<lastmod>2019-10-16T16:02:32+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/book_review_of_hosas/</loc>
<lastmod>2019-10-11T17:19:40+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-10-13/</loc>
<lastmod>2019-10-09T22:32:43+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-10-06/</loc>
<lastmod>2019-10-03T10:54:49+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-09-29/</loc>
<lastmod>2019-09-28T18:06:42+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_leader/1998-open-source-summit-trip-report/</loc>
<lastmod>2019-09-22T18:09:12+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-09-22/</loc>
<lastmod>2019-09-16T08:08:45+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-09-14/</loc>
<lastmod>2019-09-13T15:32:09+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/we_and_open_source_software/</loc>
<lastmod>2019-09-13T07:04:10+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/business_model/open-core-vs-open-perimeter/</loc>
<lastmod>2019-09-12T16:27:21+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-09-08/</loc>
<lastmod>2019-09-06T16:38:56+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/the_review_of_producingoss/</loc>
<lastmod>2019-09-01T16:57:14+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-09-01/</loc>
<lastmod>2019-08-30T16:08:08+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-08-25/</loc>
<lastmod>2019-08-21T14:12:06+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_culture/asynchronous-decision-making/</loc>
<lastmod>2019-08-13T17:17:57+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-08-18/</loc>
<lastmod>2019-08-13T11:57:59+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-08-11/</loc>
<lastmod>2019-08-10T00:19:09+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/the_way_of_open_source/the_three_realm_of_open_source_software/</loc>
<lastmod>2019-08-10T00:14:16+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_of_other_industries/the_story_of_don_berwick/</loc>
<lastmod>2019-08-09T22:20:57+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-08-04/</loc>
<lastmod>2019-08-05T18:51:30+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/ocselected-reading-guide/</loc>
<lastmod>2019-07-31T17:00:41+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-07-28/</loc>
<lastmod>2019-07-28T10:25:19+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-07-21/</loc>
<lastmod>2019-07-22T10:12:32+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%A4%E5%91%A8%E7%B2%BE%E9%80%892019-07-14/</loc>
<lastmod>2019-07-14T16:16:49+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/contribute_to_community/how-to-participate-ceph-os-community/</loc>
<lastmod>2019-07-10T13:33:39+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/hackers-book-review/</loc>
<lastmod>2019-07-01T20:13:22+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-06-30/</loc>
<lastmod>2019-06-30T21:05:09+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-06-23/</loc>
<lastmod>2019-06-23T10:52:24+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/open-source-economic/engineers-marketers-can-learn/</loc>
<lastmod>2019-06-22T14:46:04+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-06-16/</loc>
<lastmod>2019-06-15T21:23:30+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-06-09/</loc>
<lastmod>2019-06-09T10:48:00+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/the_way_of_open_source/build_a_positive_meritocracy/</loc>
<lastmod>2019-06-07T16:19:08+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-06-02/</loc>
<lastmod>2019-06-02T11:30:26+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/the-craftsman-book-review/</loc>
<lastmod>2019-05-27T21:21:04+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-05-26/</loc>
<lastmod>2019-05-26T11:38:05+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/oss_governance_models/</loc>
<lastmod>2019-05-23T14:33:01+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/managing-casual-contributors/</loc>
<lastmod>2019-05-20T18:07:49+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-05-19/</loc>
<lastmod>2019-05-19T11:48:36+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-05-12/</loc>
<lastmod>2019-05-12T11:19:06+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/growing-contributor-base-modern-open-source/</loc>
<lastmod>2019-05-11T14:02:23+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/all_about_kuosi/</loc>
<lastmod>2019-05-11T11:01:51+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_talking/we_need_to_talk/</loc>
<lastmod>2019-05-08T21:50:41+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/open-source-economic/why-there-will-never-be-another-redhat-the-economics-of-open-source/</loc>
<lastmod>2019-05-07T14:31:32+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-05-05/</loc>
<lastmod>2019-05-06T07:46:25+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-04-28/</loc>
<lastmod>2019-04-29T10:39:50+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/the_new_kingmaker_review/</loc>
<lastmod>2019-04-23T18:05:37+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-04-21/</loc>
<lastmod>2019-04-21T11:48:05+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/event_analysis/redhat_enterprise_open_source_survey/</loc>
<lastmod>2019-04-19T16:37:15+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-04-14/</loc>
<lastmod>2019-04-14T12:04:18+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_and_university/the_story_of_opensource_in_high_school/</loc>
<lastmod>2019-04-11T15:09:55+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-04-07/</loc>
<lastmod>2019-04-08T15:56:56+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/thinking_of_open_source_innovation_economic/</loc>
<lastmod>2019-04-01T15:48:15+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-03-31/</loc>
<lastmod>2019-03-31T09:08:17+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/community_leadership_development/6_ways_a_community_help_project_succeed/</loc>
<lastmod>2019-03-25T22:04:06+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/the_apache_way_to_sustainable_os/</loc>
<lastmod>2019-03-24T12:58:10+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-03-24/</loc>
<lastmod>2019-03-24T11:03:35+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-03-17/</loc>
<lastmod>2019-03-17T13:35:36+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/2020_book_lists/</loc>
<lastmod>2019-03-15T13:40:02+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-03-10/</loc>
<lastmod>2019-03-10T10:23:25+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/contribute_to_community/how_to_participate_in_the_linux_community/</loc>
<lastmod>2019-03-09T17:43:34+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-03-03/</loc>
<lastmod>2019-03-03T08:44:10+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_technology/open-source-tokenomics/</loc>
<lastmod>2019-03-02T15:31:12+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-02-24/</loc>
<lastmod>2019-02-24T10:24:51+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/subscribed-why-subsctiption-it-your-future/</loc>
<lastmod>2019-02-18T07:03:37+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-02-17/</loc>
<lastmod>2019-02-17T11:43:33+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/review-cncf-2018-annual-report/</loc>
<lastmod>2019-02-13T12:31:27+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/open-source-economic/review-the-emerging-economic-paradigm-of-open-source/</loc>
<lastmod>2019-02-13T12:28:56+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-02-10/</loc>
<lastmod>2019-02-10T14:46:01+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/foundation_introduce/five-year-strategic-plan-for-the-asf-2018/</loc>
<lastmod>2019-02-05T21:52:33+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-02-03/</loc>
<lastmod>2019-02-04T11:53:41+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/paper_or_book_reading/paper_reading_notes_2019_01/</loc>
<lastmod>2019-02-02T22:30:31+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/open-source-economic/estimating-the-total-cost-of-linux-distribution/</loc>
<lastmod>2019-01-31T19:58:16+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-01-27/</loc>
<lastmod>2019-01-27T22:55:55+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_enterprise_guide/setting-an-open-source-strategy/</loc>
<lastmod>2019-01-22T09:22:53+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource_enterprise_guide/building-leadership-in-an-open-source-community/</loc>
<lastmod>2019-01-22T09:13:45+08:00</lastmod>
</url>
<url>
<loc>https://www.opensourceway.community/posts/opensource/daily_reading/2019/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892019-01-20/</loc>
<lastmod>2019-01-19T11:30:00+08:00</lastmod>
</url>
<url>