forked from dev-blog-directory/dev-blog-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme-zh.opml
1037 lines (1037 loc) · 160 KB
/
readme-zh.opml
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"?>
<opml version="2.0">
<head>
<title>Developer Blog Directory - 中文</title>
<dateCreated>Fri, 29 Nov 2019 00:00:00 GMT</dateCreated>
<dateModified>Fri, 10 Apr 2020 07:20:04 GMT</dateModified>
<ownerName>https://github.com/dailyrandomphoto</ownerName>
</head>
<body>
<outline type="rss" text="A Geek’s Page" title="A Geek’s Page" xmlUrl="http://wangcong.org/atom.xml" htmlUrl="http://wangcong.org/"/>
<outline type="rss" text="阿辉的博客" title="阿辉的博客" xmlUrl="http://www.huilog.com/?feed=rss2" htmlUrl="http://www.huilog.com/"/>
<outline type="rss" text="阿里云产品博客" title="阿里云产品博客" xmlUrl="https://m.aliyun.com/yunqi/articles/feed/" htmlUrl="https://yq.aliyun.com/articles/"/>
<outline type="rss" text="阿毛的蛋疼地" title="阿毛的蛋疼地" xmlUrl="https://xiangwangfeng.com/atom.xml" htmlUrl="http://xiangwangfeng.com/"/>
<outline type="rss" text="阿权的书房" title="阿权的书房" xmlUrl="http://www.aslibra.com/blog/feed.php" htmlUrl="http://www.aslibra.com/blog/index.php"/>
<outline type="rss" text="阿元" title="阿元" xmlUrl="http://blog.sina.com.cn/rss/1283622691.xml" htmlUrl="http://blog.sina.com.cn/xywatersky"/>
<outline type="rss" text="Adam's" title="Adam's" xmlUrl="https://feeds.feedburner.com/adam8157" htmlUrl="http://adam8157.info/"/>
<outline type="rss" text="adexchanger广告技术流" title="adexchanger广告技术流" xmlUrl="http://www.adexchanger.cn/feed" htmlUrl="http://www.adexchanger.cn/"/>
<outline type="rss" text="Afred's Blog" title="Afred's Blog" xmlUrl="http://afredlyj.github.io/feed.xml" htmlUrl="http://afredlyj.github.io/"/>
<outline type="rss" text="Agu's Mill 古作坊" title="Agu's Mill 古作坊" xmlUrl="http://aguegu.net/?feed=rss2" htmlUrl="http://aguegu.net/"/>
<outline type="rss" text="爱上极客" title="爱上极客" xmlUrl="http://www.i3geek.com/?feed=rss2" htmlUrl="http://www.i3geek.com/"/>
<outline type="rss" text="爱推吧" title="爱推吧" xmlUrl="http://ituibar.com/feed/" htmlUrl="http://ituibar.com/"/>
<outline type="rss" text="爱在红旗渠" title="爱在红旗渠" xmlUrl="http://94275.cn/atom.xml" htmlUrl="http://jingle1267.github.io/"/>
<outline type="rss" text="akun's blog" title="akun's blog" xmlUrl="http://zhengkun.info/feed.atom" htmlUrl="http://zhengkun.info/"/>
<outline type="rss" text="AllanBian--阿宅" title="AllanBian--阿宅" xmlUrl="http://allanbian.com/feed" htmlUrl="http://www.allanbian.com/"/>
<outline type="rss" text="Alon's Blog" title="Alon's Blog" xmlUrl="http://jinlong.github.io/atom.xml" htmlUrl="http://jinlong.github.io/"/>
<outline type="rss" text="amlun" title="amlun" xmlUrl="https://blog.amlun.com/feed" htmlUrl="http://blog.amlun.com/"/>
<outline type="rss" text="安静的boy" title="安静的boy" xmlUrl="https://www.cnblogs.com/wutianqi/rss" htmlUrl="https://www.cnblogs.com/wutianqi/"/>
<outline type="rss" text="黯羽轻扬" title="黯羽轻扬" xmlUrl="http://www.ayqy.net/blog/feed/" htmlUrl="http://ayqy.net/blog"/>
<outline type="rss" text="ANBOB" title="ANBOB" xmlUrl="https://www.anbob.com/feed" htmlUrl="http://www.anbob.com/"/>
<outline type="rss" text="Andrej Karpathy blog" title="Andrej Karpathy blog" xmlUrl="http://karpathy.github.io/feed.xml" htmlUrl="http://karpathy.github.io/"/>
<outline type="rss" text="Android Archives | Java Code Geeks - 2017" title="Android Archives | Java Code Geeks - 2017" xmlUrl="https://www.javacodegeeks.com/feed" htmlUrl="https://www.javacodegeeks.com/category/android/"/>
<outline type="rss" text="Android开发技术周报" title="Android开发技术周报" xmlUrl="https://androidweekly.io/rss/" htmlUrl="http://androidweekly.cn/"/>
<outline type="rss" text="andy的linux小屋" title="andy的linux小屋" xmlUrl="https://www.huzhenyu.me/atom.xml" htmlUrl="http://andyhuzhill.github.com/"/>
<outline type="rss" text="aneasystone’s blog" title="aneasystone’s blog" xmlUrl="https://www.aneasystone.com/feed/" htmlUrl="https://www.aneasystone.com/"/>
<outline type="rss" text="傲慢的上校的专栏 - CSDN博客" title="傲慢的上校的专栏 - CSDN博客" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/lilu_leo"/>
<outline type="rss" text="奥卡姆剃刀" title="奥卡姆剃刀" xmlUrl="http://www.razorer.com/Best_Electric_Shavers.cfm?fp=MVLYUtQ37lTiKvQZXSdbGw6HkUkYvwZsbJna4AGHR0fgq5J2oI6gpVDPQsJkgKj2TnKq6tD7m4F9xsHjQgv4oJZQ1Q5uwXWUs%2FpOOTPsgYauu5WHVOnsv2MHi%2FddK2CmPdDLETS9SaCCtVTWL6yLUX76QYz5YuFmnvduEQN0BgKvEZgckB6dMn9Jhcq7TvwTO80fZsJt0rSFF830nT8%2FQA%3D%3D&yep=j4yQc0DwOi8jJ8XngzqokGrVF51%2Futy1yxyWb8IJ4yCbTqw4MgoWrbYz6F0xHJpcm%2BabJRosc%2FmkvbB2xN1xh13P3VGPazsV%2FSGvgC6iix8W%2BdHyTWFzhB3oBjGI0OnK545Mo7Js6VUQ4vttDkS8bb6AHfzhBRBqp8xR788J9Cut81jmGxNjJCj1h4rHEW2%2FZ0Dq6zyikYiYhB%2BXXXimASoZYmNaB4b2QwSChv%2FV7djuX6U%2Bu0B2ciqx1tlLWZFjK1Vki5jaZv6zdpg%2BBCmgO5V2NlnN%2FUQRVdYdfUrX1aVKSVxiFer8hb5NixL94CgjL0DiCPYNBtzIrxFk0gU3DI10%2BtUjx89VmECAHfXvyi1pv2zNJ9HSw95%2B%2FZNvCEiZ6lNjyifR9HaPFm%2FlgK3OqPO7jylw8qm6uLNzl8KhHxZ3OcLZQAJ5P6XlEi6sNN%2B6nkZS5amXkTySspHAETscH6Ifr1qpN6gtWUXA4WWhxYrCndAalll7puA1jxAXc0pjLCbplDqtv6SPI4A6BDFeMBAFw2PYmR8Cx1p7Za%2FFVGLTaDy%2FOucWB%2BKGrr4tepi0mwtpEsibM1pAHqObmaavBA%3D%3D&gtnp=0&gtpp=0&maxads=0&kld=1061&yprpnd=io0m%2BVvSIAn95xmpBe2z6xCb9hpP6mEptMUbdhuujpI%3D&prvtof=SnWKXeT8zHC82zaNtw%2FHzrVh%2Bnek5xbvqlYnM0VpoRA%3D&feed=rss&gtnp=0&gtpp=0&kt=320&&kbc=25265&ki=3466130&ktd=2199023386880&kld=1061&kp=1" htmlUrl="http://www.razorer.com/"/>
<outline type="rss" text="APP开发者" title="APP开发者" xmlUrl="http://aswifter.com/feed/" htmlUrl="http://www.aswifter.com//"/>
<outline type="rss" text="Arccode's blog" title="Arccode's blog" xmlUrl="http://www.arccode.net/atom.xml" htmlUrl="http://arccode.net/"/>
<outline type="rss" text="Artoirus" title="Artoirus" xmlUrl="https://artori.us/feed.xml" htmlUrl="http://artori.us/"/>
<outline type="rss" text="asaka's blog" title="asaka's blog" xmlUrl="http://localhost:2368/rss/" htmlUrl="http://aisk.me/"/>
<outline type="rss" text="ATHER Shu(A.S)的Blog" title="ATHER Shu(A.S)的Blog" xmlUrl="http://www.asarea.cn/rss.php" htmlUrl="http://www.asarea.cn/"/>
<outline type="rss" text="Axiu Blog" title="Axiu Blog" xmlUrl="https://axiu.me/feed" htmlUrl="http://axiu.me/"/>
<outline type="rss" text="八戒的blog" title="八戒的blog" xmlUrl="http://www.rendoumi.com/rss/" htmlUrl="http://www.rendoumi.com/"/>
<outline type="rss" text="Baby is coming......" title="Baby is coming......" xmlUrl="http://www.liukaka.com/feed/" htmlUrl="http://www.liukaka.com/"/>
<outline type="rss" text="百度 FEX" title="百度 FEX" xmlUrl="http://fex.baidu.com/feed.xml" htmlUrl="http://fex.baidu.com/"/>
<outline type="rss" text="百度搜索用户体验中心" title="百度搜索用户体验中心" xmlUrl="http://uxc.baidu.com/feed" htmlUrl="http://uxc.baidu.com/"/>
<outline type="rss" text="百度医生 Tech" title="百度医生 Tech" xmlUrl="https://msbu-tech.github.io/weekly/feed.xml" htmlUrl="https://msbu-tech.github.io/"/>
<outline type="rss" text="百度EFE" title="百度EFE" xmlUrl="https://efe.baidu.com/atom.xml" htmlUrl="https://efe.baidu.com/"/>
<outline type="rss" text="bang's blog" title="bang's blog" xmlUrl="http://blog.cnbang.net/feed/" htmlUrl="http://blog.cnbang.net/"/>
<outline type="rss" text="宝宝巴士 SD.Team" title="宝宝巴士 SD.Team" xmlUrl="https://www.cnblogs.com/superdo/rss" htmlUrl="https://www.cnblogs.com/superdo/"/>
<outline type="rss" text="包子博客" title="包子博客" xmlUrl="http://www.jincon.com/rss.php" htmlUrl="http://www.jincon.com/"/>
<outline type="rss" text="Basten Gao's Blog" title="Basten Gao's Blog" xmlUrl="https://bastengao.com/feed.xml" htmlUrl="http://bastengao.com/"/>
<outline type="rss" text="Be For Web" title="Be For Web" xmlUrl="http://www.beforweb.com/rss.xml" htmlUrl="http://www.beforweb.com/"/>
<outline type="rss" text="Be For Web在网上" title="Be For Web在网上" xmlUrl="http://beforweb.com/taxonomy/term/3/feed" htmlUrl="http://beforweb.com/front-end"/>
<outline type="rss" text="贝叶书" title="贝叶书" xmlUrl="http://bayescafe.com/feed/" htmlUrl="http://bayescafe.com/"/>
<outline type="rss" text="被遗忘的博客" title="被遗忘的博客" xmlUrl="https://wenchao.ren/atom.xml" htmlUrl="https://wenchao.ren/"/>
<outline type="rss" text="Belin Chung" title="Belin Chung" xmlUrl="https://dearb.me/atom.xml" htmlUrl="http://dearb.me/"/>
<outline type="rss" text="笨方法学写作" title="笨方法学写作" xmlUrl="https://www.cnfeat.com/feed" htmlUrl="http://www.cnfeat.com/"/>
<outline type="rss" text="beyond the void" title="beyond the void" xmlUrl="https://www.byvoid.com/feed" htmlUrl="https://www.byvoid.com/"/>
<outline type="rss" text="编程随想" title="编程随想" xmlUrl="https://program-think.blogspot.com/feeds/posts/default" htmlUrl="https://program-think.blogspot.com/"/>
<outline type="rss" text="边际效应" title="边际效应" xmlUrl="https://yangwenbo.com/feed" htmlUrl="https://yangwenbo.com/"/>
<outline type="rss" text="编码无悔 / Intent & Focused" title="编码无悔 / Intent & Focused" xmlUrl="https://www.codelast.com/feed/" htmlUrl="http://www.codelast.com/"/>
<outline type="rss" text="标点符" title="标点符" xmlUrl="https://www.biaodianfu.com/feed" htmlUrl="http://www.biaodianfu.com/"/>
<outline type="rss" text="-Bin-的博客" title="-Bin-的博客" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/997155658"/>
<outline type="rss" text="并发编程网 – ifeve.com" title="并发编程网 – ifeve.com" xmlUrl="http://ifeve.com/feed/" htmlUrl="http://ifeve.com/"/>
<outline type="rss" text="Biostack.org « Biostack.org" title="Biostack.org « Biostack.org" xmlUrl="http://www.biostack.org/?feed=rss2" htmlUrl="http://www.biostack.org/"/>
<outline type="rss" text="bits & serif" title="bits & serif" xmlUrl="http://copri.me/feed" htmlUrl="http://copri.me/feed"/>
<outline type="rss" text="BlahGeek's Blog" title="BlahGeek's Blog" xmlUrl="https://blog.blahgeek.com/feeds/all.rss.xml" htmlUrl="http://blog.blahgeek.com/"/>
<outline type="rss" text="Blog - CodeUnion.io" title="Blog - CodeUnion.io" xmlUrl="http://blog.codeunion.io/feed.xml" htmlUrl="http://blog.codeunion.io/"/>
<outline type="rss" text="Blog - srHang | 飒然" title="Blog - srHang | 飒然" xmlUrl="https://www.rowkey.me/atom.xml" htmlUrl="http://superhj1987.github.io/"/>
<outline type="rss" text="Blog of Felix021" title="Blog of Felix021" xmlUrl="https://www.felix021.com/blog/feed.php" htmlUrl="http://www.felix021.com/blog/index.php"/>
<outline type="rss" text="Blog of GangMax" title="Blog of GangMax" xmlUrl="https://gangmax.me/atom.xml" htmlUrl="http://gangmax.me/"/>
<outline type="rss" text="blog of Willem Jiang" title="blog of Willem Jiang" xmlUrl="https://willemjiang.github.io/feed.xml" htmlUrl="http://willemjiang.github.io/"/>
<outline type="rss" text="Blog | Phodal Geek's Life" title="Blog | Phodal Geek's Life" xmlUrl="https://www.phodal.com/blog/feeds/rss/" htmlUrl="http://www.phodal.com/blog/"/>
<outline type="rss" text="Blog · Tanky Woo" title="Blog · Tanky Woo" xmlUrl="http://blog.tankywoo.com/feed.xml" htmlUrl="http://blog.tankywoo.com/"/>
<outline type="rss" text="Blog :: The Cheese Factory" title="Blog :: The Cheese Factory" xmlUrl="https://inthecheesefactory.com/blog/en/rss.xml" htmlUrl="https://inthecheesefactory.com/blog"/>
<outline type="rss" text="blog.xdite.net" title="blog.xdite.net" xmlUrl="http://xdite-ld.logdown.com/posts.rss" htmlUrl="http://blog.xdite.net/"/>
<outline type="rss" text="Blues 小站" title="Blues 小站" xmlUrl="http://www.shenyanchao.cn/atom.xml" htmlUrl="http://www.shenyanchao.cn/"/>
<outline type="rss" text="泊浮说" title="泊浮说" xmlUrl="https://segmentfault.com/feeds/questions" htmlUrl="https://segmentfault.com/blog/camile"/>
<outline type="rss" text="博学无忧" title="博学无忧" xmlUrl="https://www.bo56.com/feed/" htmlUrl="http://www.bo56.com/"/>
<outline type="rss" text="不懂真人" title="不懂真人" xmlUrl="http://peiqiang.net/atom.xml" htmlUrl="http://peiqiang.net/"/>
<outline type="rss" text="不发光的博客" title="不发光的博客" xmlUrl="https://lightless.me/feed/" htmlUrl="https://lightless.me/"/>
<outline type="rss" text="不鬼视线" title="不鬼视线" xmlUrl="http://shixian.net/feed/" htmlUrl="http://shixian.net/"/>
<outline type="rss" text="不可能不确定" title="不可能不确定" xmlUrl="http://chensd.com/atom.xml" htmlUrl="http://chensd.com/"/>
<outline type="rss" text="扑来树袋熊" title="扑来树袋熊" xmlUrl="http://blog.sina.com.cn/rss/1584387113.xml" htmlUrl="http://blog.sina.com.cn/auroratony"/>
<outline type="rss" text="不死鸟" title="不死鸟" xmlUrl="https://hao.su/feed/about.html" htmlUrl="https://lai.yuweining.cn/about.html"/>
<outline type="rss" text="Butterfly" title="Butterfly" xmlUrl="https://www.gonwan.com/feed/" htmlUrl="http://www.gonwan.com/"/>
<outline type="rss" text="ByGhui" title="ByGhui" xmlUrl="https://ghui.me/atom.xml" htmlUrl="http://ghui.me/"/>
<outline type="rss" text="bystander's blog" title="bystander's blog" xmlUrl="https://leizhiyuan.github.io/index.xml" htmlUrl="http://leaver.me/"/>
<outline type="rss" text="C++爱好者博客" title="C++爱好者博客" xmlUrl="https://cppfans.org/index.xml" htmlUrl="http://www.cppfans.org/"/>
<outline type="rss" text="C++博客-首页原创精华区" title="C++博客-首页原创精华区" xmlUrl="http://www.cppblog.com/rss.aspx" htmlUrl="http://www.cppblog.com/"/>
<outline type="rss" text="C++博客-战魂小筑" title="C++博客-战魂小筑" xmlUrl="http://www.cppblog.com/sunicdavy/rss.aspx" htmlUrl="http://www.cppblog.com/sunicdavy/"/>
<outline type="rss" text="C/C++程序员之家" title="C/C++程序员之家" xmlUrl="https://www.cplusplus.me/feed" htmlUrl="http://www.cplusplus.me/"/>
<outline type="rss" text="C1G军火库" title="C1G军火库" xmlUrl="http://blog.c1gstudio.com/feed" htmlUrl="http://blog.c1gstudio.com/"/>
<outline type="rss" text="菜鸟博客" title="菜鸟博客" xmlUrl="https://www.wlphp.com/rss.php" htmlUrl="https://www.wlphp.com/"/>
<outline type="rss" text="菜鸟的成长" title="菜鸟的成长" xmlUrl="http://blog.sina.com.cn/rss/1823385791.xml" htmlUrl="http://blog.sina.com.cn/u/1823385791"/>
<outline type="rss" text="裁纸刀下" title="裁纸刀下" xmlUrl="https://www.ofcss.com/feed" htmlUrl="http://ofcss.com/"/>
<outline type="rss" text="沧海一粟" title="沧海一粟" xmlUrl="http://www.dzhope.com/feed.php" htmlUrl="http://www.dzhope.com/index.php"/>
<outline type="rss" text="曹郎鹏的博客" title="曹郎鹏的博客" xmlUrl="http://blog.sina.com.cn/rss/5134522966.xml" htmlUrl="http://blog.sina.com.cn/u/5134522966"/>
<outline type="rss" text="Cap_zhou的博客" title="Cap_zhou的博客" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/u/553773"/>
<outline type="rss" text="Captain Cool的BLOG" title="Captain Cool的BLOG" xmlUrl="https://www.cnblogs.com/caowei/rss" htmlUrl="https://www.cnblogs.com/caowei/"/>
<outline type="rss" text="Carpe Diem." title="Carpe Diem." xmlUrl="http://joelhy.github.io/atom.xml" htmlUrl="http://joelhy.github.io//"/>
<outline type="rss" text="Casa Taloyum's blog" title="Casa Taloyum's blog" xmlUrl="https://casatwy.com/feeds/all.atom.xml" htmlUrl="https://casatwy.com/"/>
<outline type="rss" text="cenalulu's Tech Blog" title="cenalulu's Tech Blog" xmlUrl="http://cenalulu.github.io/atom.xml" htmlUrl="http://cenalulu.github.io/"/>
<outline type="rss" text="曾静的技术博客" title="曾静的技术博客" xmlUrl="http://blog.devzeng.com/feed.xml" htmlUrl="http://blog.devzeng.com/"/>
<outline type="rss" text="Ceylog" title="Ceylog" xmlUrl="http://blog.wglgg.cn/atom.xml" htmlUrl="http://ceylog.github.io/"/>
<outline type="rss" text="叉叉哥的BLOG" title="叉叉哥的BLOG" xmlUrl="http://xxgblog.com/atom.xml" htmlUrl="http://xxgblog.com/"/>
<outline type="rss" text="柴少鹏的官方网站" title="柴少鹏的官方网站" xmlUrl="http://www.51niux.com/feed.php" htmlUrl="http://www.51niux.com/"/>
<outline type="rss" text="chai2010的个人页面" title="chai2010的个人页面" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/chai2010"/>
<outline type="rss" text="(ChangeLog of KDr2.com)" title="(ChangeLog of KDr2.com)" xmlUrl="http://kdr2.com/misc/site-log.xml" htmlUrl="http://kdr2.com/misc/"/>
<outline type="rss" text="Channel [K]" title="Channel [K]" xmlUrl="https://www.dbform.com/feed/" htmlUrl="http://www.dbform.com/"/>
<outline type="rss" text="炒饭的小站" title="炒饭的小站" xmlUrl="https://blog.chaofan.io/feed" htmlUrl="http://chaofan.io/"/>
<outline type="rss" text="Chaosky's Notes" title="Chaosky's Notes" xmlUrl="http://chaosky.me/feed/" htmlUrl="http://chaosky.me/"/>
<outline type="rss" text="chaozh.com" title="chaozh.com" xmlUrl="http://www.chaozh.com/feed/" htmlUrl="http://www.chaozh.com/"/>
<outline type="rss" text="扯远了" title="扯远了" xmlUrl="https://heshizi.com/feed" htmlUrl="https://heshizi.com/"/>
<outline type="rss" text="尘埃" title="尘埃" xmlUrl="http://wangying.sinaapp.com/feed" htmlUrl="http://wangying.sinaapp.com/"/>
<outline type="rss" text="陈斌彬的技术博客" title="陈斌彬的技术博客" xmlUrl="https://cnbin.github.io/atom.xml" htmlUrl="https://cnbin.github.io/"/>
<outline type="rss" text="辰风君的笔记本" title="辰风君的笔记本" xmlUrl="http://gocwind.com/atom.xml" htmlUrl="http://cwind001.github.io/"/>
<outline type="rss" text="陈亮&bull;年轻派营销的博客" title="陈亮&bull;年轻派营销的博客" xmlUrl="http://blog.sina.com.cn/rss/1229183684.xml" htmlUrl="http://blog.sina.com.cn/varjwqc5j9uvclf8"/>
<outline type="rss" text="陈沙克日志" title="陈沙克日志" xmlUrl="http://www.chenshake.com/feed/" htmlUrl="http://www.chenshake.com/"/>
<outline type="rss" text="陈晓猫" title="陈晓猫" xmlUrl="https://www.cnblogs.com/liuzhaoyzz/rss" htmlUrl="https://www.cnblogs.com/liuzhaoyzz/"/>
<outline type="rss" text="陈兴" title="陈兴" xmlUrl="https://kaifei.net/feed.xml" htmlUrl="http://kaifei.net/"/>
<outline type="rss" text="尘缘的博客" title="尘缘的博客" xmlUrl="http://www.4wei.cn/feed" htmlUrl="http://www.4wei.cn/"/>
<outline type="rss" text="程序人生" title="程序人生" xmlUrl="https://programlife.net/atom.xml" htmlUrl="http://www.programlife.net/"/>
<outline type="rss" text="程序师" title="程序师" xmlUrl="http://www.techug.com/feed" htmlUrl="http://www.techug.com/"/>
<outline type="rss" text="程序员小刚" title="程序员小刚" xmlUrl="https://sargeraswang.com/atom.xml" htmlUrl="http://sargeraswang.com/"/>
<outline type="rss" text="程序猿DD | 博客" title="程序猿DD | 博客" xmlUrl="http://blog.didispace.com/atom.xml" htmlUrl="http://blog.didispace.com/"/>
<outline type="rss" text="Chengwei’s Words" title="Chengwei’s Words" xmlUrl="http://www.chengweiyang.cn/feed.xml" htmlUrl="http://www.chengweiyang.cn/"/>
<outline type="rss" text="ChenQichao's Blog" title="ChenQichao's Blog" xmlUrl="http://chenqichao.me/atom.xml" htmlUrl="http://qichaochen.github.io/"/>
<outline type="rss" text="离别歌" title="离别歌" xmlUrl="https://www.leavesongs.com/feed/" htmlUrl="http://www.leavesongs.com/"/>
<outline type="rss" text="chinadtrace.org" title="chinadtrace.org" xmlUrl="https://chinadtrace.org/feed/" htmlUrl="http://chinadtrace.org/"/>
<outline type="rss" text="臭豆腐 trydofor, program keyword" title="臭豆腐 trydofor, program keyword" xmlUrl="http://www.trydofor.com/atom.xml" htmlUrl="http://www.trydofor.com/"/>
<outline type="rss" text="褚成志" title="褚成志" xmlUrl="http://blog.sina.com.cn/rss/1367089600.xml" htmlUrl="http://blog.sina.com.cn/blog782081987"/>
<outline type="rss" text="初春飾利の部屋" title="初春飾利の部屋" xmlUrl="http://uiharu.moe/atom.xml" htmlUrl="http://uiharu.moe/"/>
<outline type="rss" text="Chu's BLoG" title="Chu's BLoG" xmlUrl="http://sh3ll.me/feed" htmlUrl="http://sh3ll.me/"/>
<outline type="rss" text="初心" title="初心" xmlUrl="http://fleurer.github.io/atom.xml" htmlUrl="http://fleurer.github.com/"/>
<outline type="rss" text="初心" title="初心" xmlUrl="https://www.zhaoj.in/feed" htmlUrl="https://www.zhaoj.in/"/>
<outline type="rss" text="船长日志" title="船长日志" xmlUrl="http://www.cslog.cn/feed/" htmlUrl="http://www.cslog.cn/"/>
<outline type="rss" text="吹水小镇" title="吹水小镇" xmlUrl="http://blog.reetsee.com/feed" htmlUrl="http://blog.reetsee.com/"/>
<outline type="rss" text="纯洁的微笑" title="纯洁的微笑" xmlUrl="http://www.ityouknow.com/feed.xml" htmlUrl="http://www.ityouknow.com/"/>
<outline type="rss" text="纯真年代" title="纯真年代" xmlUrl="https://pureage.info/index.xml" htmlUrl="http://pureage.info/"/>
<outline type="rss" text="莿鸟栖草堂" title="莿鸟栖草堂" xmlUrl="https://www.cnxct.com/feed/" htmlUrl="http://www.cnxct.com/"/>
<outline type="rss" text="Cifer" title="Cifer" xmlUrl="http://cifer.logdown.com/posts.rss" htmlUrl="http://cifer.logdown.com/"/>
<outline type="rss" text="Cizixs Writes Here" title="Cizixs Writes Here" xmlUrl="https://cizixs.com/feed" htmlUrl="http://cizixs.com/"/>
<outline type="rss" text="Clark To Do" title="Clark To Do" xmlUrl="https://clarkdo.js.org/atom.xml" htmlUrl="http://clarkdo.github.io//"/>
<outline type="rss" text="clock" title="clock" xmlUrl="http://cattail.me/feed.xml" htmlUrl="http://cattail.me/"/>
<outline type="rss" text="Cloga的互联网笔记" title="Cloga的互联网笔记" xmlUrl="http://cloga.info/atom.xml" htmlUrl="http://cloga.github.io/"/>
<outline type="rss" text="Cloud Chou's Tech Blog" title="Cloud Chou's Tech Blog" xmlUrl="http://www.cloudchou.com/feed.xml" htmlUrl="http://www.cloudchou.com/"/>
<outline type="rss" text="Cloverstd's blog" title="Cloverstd's blog" xmlUrl="https://hui.lu/rss/" htmlUrl="http://hui.lu/"/>
<outline type="rss" text="cnMiss's Blog" title="cnMiss's Blog" xmlUrl="http://www.cnmiss.cn/?feed=rss2" htmlUrl="http://www.cnmiss.cn/"/>
<outline type="rss" text="Code@Pig Home" title="Code@Pig Home" xmlUrl="http://kasicass.blog.163.com/rss/" htmlUrl="http://kasicass.blog.163.com/"/>
<outline type="rss" text="Codedependent" title="Codedependent" xmlUrl="http://graphics-geek.blogspot.com/feeds/posts/default" htmlUrl="http://graphics-geek.blogspot.co.uk/"/>
<outline type="rss" text="codedump" title="codedump" xmlUrl="https://codedump.info/index.xml" htmlUrl="http://www.codedump.info/"/>
<outline type="rss" text="Coder资源网" title="Coder资源网" xmlUrl="http://info.9iphp.com/feed/" htmlUrl="http://info.9iphp.com/"/>
<outline type="rss" text="coderyi" title="coderyi" xmlUrl="http://www.coderyi.com/feed.xml" htmlUrl="http://www.coderyi.com/"/>
<outline type="rss" text="CoderZh" title="CoderZh" xmlUrl="https://blog.coderzh.com/feed.xml" htmlUrl="http://blog.coderzh.com/"/>
<outline type="rss" text="CodingLabs" title="CodingLabs" xmlUrl="http://blog.codinglabs.org/rss.xml" htmlUrl="http://blog.codinglabs.org/"/>
<outline type="rss" text="Cofface Blog" title="Cofface Blog" xmlUrl="https://blog.cofface.com/feed" htmlUrl="http://blog.cofface.com/"/>
<outline type="rss" text="cold's world" title="cold's world" xmlUrl="https://www.linuxzen.com/feeds/all.atom.xml" htmlUrl="http://www.linuxzen.com/"/>
<outline type="rss" text="Collections ♥ Scotch" title="Collections ♥ Scotch" xmlUrl="https://scotch.io/feed" htmlUrl="https://scotch.io/collections"/>
<outline type="rss" text="Colstuwjx的博客" title="Colstuwjx的博客" xmlUrl="http://devopstarter.info/rss/" htmlUrl="http://devopstarter.info/"/>
<outline type="rss" text="con的个人页面" title="con的个人页面" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/JackSparrow"/>
<outline type="rss" text="丛林听雨" title="丛林听雨" xmlUrl="https://www.iteye.com/rss" htmlUrl="http://hzy3774.iteye.com/"/>
<outline type="rss" text="从一事无成到仅成一事" title="从一事无成到仅成一事" xmlUrl="http://nonesuccess.me/?feed=rss2" htmlUrl="http://nonesuccess.me/"/>
<outline type="rss" text="Continuous Improvement" title="Continuous Improvement" xmlUrl="http://www.linkedme.in/atom.xml" htmlUrl="http://www.linkedme.in/"/>
<outline type="rss" text="Corey's Blog(FCX)" title="Corey's Blog(FCX)" xmlUrl="http://corey600.github.io/atom.xml" htmlUrl="http://corey600.github.io/"/>
<outline type="rss" text="CS Slayer" title="CS Slayer" xmlUrl="https://www.csslayer.info/wordpress/feed/" htmlUrl="https://www.csslayer.info/wordpress"/>
<outline type="rss" text="CSS探索之旅" title="CSS探索之旅" xmlUrl="http://blog.doyoe.com/atom.xml" htmlUrl="http://blog.doyoe.com/"/>
<outline type="rss" text="cstriker1407的笔记本" title="cstriker1407的笔记本" xmlUrl="http://cstriker1407.info/blog/feed/" htmlUrl="http://cstriker1407.info/blog"/>
<outline type="rss" text="ct的程序笔记" title="ct的程序笔记" xmlUrl="https://www.cachetian.com/feed/" htmlUrl="http://www.cachetian.com/"/>
<outline type="rss" text="ctbsea" title="ctbsea" xmlUrl="https://ctbsea.lofter.com/rss" htmlUrl="http://ctbsea.lofter.com/"/>
<outline type="rss" text="Cuble's Blog" title="Cuble's Blog" xmlUrl="http://blog.sina.com.cn/rss/1403193915.xml" htmlUrl="http://blog.sina.com.cn/fouryu"/>
<outline type="rss" text="崔添翼 § 翼若垂天之云" title="崔添翼 § 翼若垂天之云" xmlUrl="http://cuitianyi.com/feed/" htmlUrl="http://cuitianyi.com/"/>
<outline type="rss" text="cuzz’s blog" title="cuzz’s blog" xmlUrl="http://blog.cuzz.site/atom.xml" htmlUrl="http://blog.cuzz.site/"/>
<outline type="rss" text="CyannyLive" title="CyannyLive" xmlUrl="http://www.cyanny.com/atom.xml" htmlUrl="http://www.cyanny.com/"/>
<outline type="rss" text="CZG'S BOLG" title="CZG'S BOLG" xmlUrl="http://chenzhiguo.cn/feed/" htmlUrl="http://chenzhiguo.cn/"/>
<outline type="rss" text="CzmMiao的博客生活" title="CzmMiao的博客生活" xmlUrl="https://www.iteye.com/rss" htmlUrl="http://czmmiao.iteye.com/"/>
<outline type="rss" text="大发贼志" title="大发贼志" xmlUrl="https://fatesinger.com/?feed=rss" htmlUrl="https://fatesinger.com/"/>
<outline type="rss" text="达龙" title="达龙" xmlUrl="https://segmentfault.com/feeds/questions" htmlUrl="https://segmentfault.com/u/dalong_591b8e7e6ab46"/>
<outline type="rss" text="大鹏志" title="大鹏志" xmlUrl="http://dapengde.com/feed" htmlUrl="http://dapengde.com/"/>
<outline type="rss" text="大头龙仔Blog" title="大头龙仔Blog" xmlUrl="http://imlcl.com/atom.xml" htmlUrl="http://imlcl.github.io/"/>
<outline type="rss" text="大席的博客" title="大席的博客" xmlUrl="https://www.daxiblog.com/feed/" htmlUrl="http://www.daxiblog.com/"/>
<outline type="rss" text="大熊的记录" title="大熊的记录" xmlUrl="http://www.linan87.cn/feed/" htmlUrl="http://www.linan87.cn/"/>
<outline type="rss" text="代码工匠" title="代码工匠" xmlUrl="http://code4craft.github.io/atom.xml" htmlUrl="http://code4craft.github.com/"/>
<outline type="rss" text="代明博客" title="代明博客" xmlUrl="http://www.daimingblog.com/feed" htmlUrl="http://www.daimingblog.com/"/>
<outline type="rss" text="淡泊明志" title="淡泊明志" xmlUrl="http://yangjinyou.com/?feed=rss" htmlUrl="http://yangjinyou.com/"/>
<outline type="rss" text="蛋糕仙人" title="蛋糕仙人" xmlUrl="http://blog.gejiawen.com/atom.xml" htmlUrl="http://gejiawen.github.io/"/>
<outline type="rss" text="当然我在扯淡" title="当然我在扯淡" xmlUrl="http://www.yinwang.org/atom.xml" htmlUrl="http://www.yinwang.org/"/>
<outline type="rss" text="Danny Suen's Blog" title="Danny Suen's Blog" xmlUrl="https://dannysuen.github.io/atom.xml" htmlUrl="http://dannysuen.github.io/"/>
<outline type="rss" text="DaoCloud" title="DaoCloud" xmlUrl="http://blog.daocloud.io/feed/" htmlUrl="http://blog.daocloud.io/"/>
<outline type="rss" text="大W的站外引流博客" title="大W的站外引流博客" xmlUrl="http://www.dianshangtalk.com/feed/" htmlUrl="http://www.dianshangtalk.com/"/>
<outline type="rss" text="Dayi Lin" title="Dayi Lin" xmlUrl="https://lindayi.me/feed/" htmlUrl="http://lindayi.me/"/>
<outline type="rss" text="DBA的罗浮宫" title="DBA的罗浮宫" xmlUrl="http://mdba.cn/feed/" htmlUrl="http://mdba.cn/"/>
<outline type="rss" text="DBA@Robin" title="DBA@Robin" xmlUrl="https://dbarobin.com/feed.xml" htmlUrl="http://dbarobin.com/"/>
<outline type="rss" text="Dead Code Rising" title="Dead Code Rising" xmlUrl="https://www.deadcoderising.com/rss/" htmlUrl="http://www.deadcoderising.com/"/>
<outline type="rss" text="deepinmind的技术博客" title="deepinmind的技术博客" xmlUrl="http://it.deepinmind.com/atom.xml" htmlUrl="http://it.deepinmind.com/index.html"/>
<outline type="rss" text="DeltaX" title="DeltaX" xmlUrl="https://draveness.me/feed.xml" htmlUrl="http://draveness.me/"/>
<outline type="rss" text="邓作恒的博客" title="邓作恒的博客" xmlUrl="http://dengzuoheng.github.io/atom.xml" htmlUrl="http://dengzuoheng.github.io/"/>
<outline type="rss" text="DevBean's World" title="DevBean's World" xmlUrl="https://www.devbean.net/feed/" htmlUrl="http://www.devbean.net/"/>
<outline type="rss" text="Developer.XiaoyaoLi" title="Developer.XiaoyaoLi" xmlUrl="http://www.xiaoyaoli.com/?feed=rss2" htmlUrl="http://www.xiaoyaoli.com/"/>
<outline type="rss" text="DevOps 门户" title="DevOps 门户" xmlUrl="https://devopshub.cn/feed/" htmlUrl="http://devopshub.cn/"/>
<outline type="rss" text="“地瓜哥”博客网" title="“地瓜哥”博客网" xmlUrl="https://www.diguage.com/index.xml" htmlUrl="https://www.diguage.com/"/>
<outline type="rss" text="第七星尘的博客" title="第七星尘的博客" xmlUrl="http://blog.star7th.com/feed" htmlUrl="http://blog.star7th.com/"/>
<outline type="rss" text="点我达技术" title="点我达技术" xmlUrl="http://tech.dianwoda.com/rss/" htmlUrl="http://tech.dianwoda.com/2016/11/10/formbiao-dan-de-jin-jie-xue-xi/"/>
<outline type="rss" text="DianaCody's Shell" title="DianaCody's Shell" xmlUrl="http://www.dianacody.com/atom.xml" htmlUrl="http://www.dianacody.com/"/>
<outline type="rss" text="Dianlujitao" title="Dianlujitao" xmlUrl="https://www.dianlujitao.com/feed/" htmlUrl="http://www.dianlujitao.com/"/>
<outline type="rss" text="叠搭宝箱" title="叠搭宝箱" xmlUrl="https://stackbox.cn/atom.xml" htmlUrl="http://stackbox.org//"/>
<outline type="rss" text="Die Welt ist meine Vorstellung" title="Die Welt ist meine Vorstellung" xmlUrl="http://kimi.im/atom.xml" htmlUrl="http://kimi.im/"/>
<outline type="rss" text="Diggzhang 掘客张" title="Diggzhang 掘客张" xmlUrl="https://diggzhang.github.io/feed.xml" htmlUrl="http://yangcongchufang.com/"/>
<outline type="rss" text="Digital Cruiser" title="Digital Cruiser" xmlUrl="http://blog.sina.com.cn/rss/1777158455.xml" htmlUrl="http://blog.sina.com.cn/87ask"/>
<outline type="rss" text="栋哥的博客" title="栋哥的博客" xmlUrl="https://liuyandong.com/atom.xml" htmlUrl="https://liuyandong.com/"/>
<outline type="rss" text="动漫茶馆" title="动漫茶馆" xmlUrl="http://acgtea.com/feed/" htmlUrl="http://acgtea.com/"/>
<outline type="rss" text="动漫驿站" title="动漫驿站" xmlUrl="https://dmyz.org/feed" htmlUrl="http://dmyz.org/"/>
<outline type="rss" text="DongSheng’s Blog" title="DongSheng’s Blog" xmlUrl="http://www.mdslq.cn/atom.xml" htmlUrl="http://www.mdslq.cn/"/>
<outline type="rss" text="兜里" title="兜里" xmlUrl="http://blog.dou.li/feed/" htmlUrl="http://blog.dou.li/"/>
<outline type="rss" text="droidwolf的个人页面" title="droidwolf的个人页面" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/droidwolf"/>
<outline type="rss" text="Drupal与高性能网站架构" title="Drupal与高性能网站架构" xmlUrl="http://www.drupal001.com/feed/" htmlUrl="http://www.drupal001.com/"/>
<outline type="rss" text="Drupal中国" title="Drupal中国" xmlUrl="http://drupalchina.cn/rss.xml" htmlUrl="http://drupalchina.cn/"/>
<outline type="rss" text="犊犊的小棚棚" title="犊犊的小棚棚" xmlUrl="https://www.jlao.net/feed/" htmlUrl="http://www.jlao.net/"/>
<outline type="rss" text="嘟嘟独立博客" title="嘟嘟独立博客" xmlUrl="http://tengj.top/atom.xml" htmlUrl="http://tengj.top/"/>
<outline type="rss" text="独立思考" title="独立思考" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/enyo"/>
<outline type="rss" text="读书、思考、生活" title="读书、思考、生活" xmlUrl="http://www.zhuangbiaowei.com/blog/?feed=rss2" htmlUrl="http://www.zhuangbiaowei.com/blog/"/>
<outline type="rss" text="独行为僧" title="独行为僧" xmlUrl="http://blog.omitol.com/atom.xml" htmlUrl="http://blog.omitol.com/"/>
<outline type="rss" text="eclipse_xu - CSDN博客" title="eclipse_xu - CSDN博客" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/eclipsexys"/>
<outline type="rss" text="edi.wang" title="edi.wang" xmlUrl="https://edi.wang/rss" htmlUrl="http://edi.wang/"/>
<outline type="rss" text="Edward Desire" title="Edward Desire" xmlUrl="http://www.edwardesire.com/rss/" htmlUrl="http://www.edwardesire.com/"/>
<outline type="rss" text="ENVI/IDL技术殿堂" title="ENVI/IDL技术殿堂" xmlUrl="http://blog.sina.com.cn/rss/1984634525.xml" htmlUrl="http://blog.sina.com.cn/enviidl"/>
<outline type="rss" text="Esoft Mobile" title="Esoft Mobile" xmlUrl="https://esoftmobile.com/atom.xml" htmlUrl="http://esoftmobile.com/"/>
<outline type="rss" text="銏文坺的ĺšĺŽ˘" title="銏文坺的ĺšĺŽ˘" xmlUrl="https://mawenjian.net/feed" htmlUrl="http://mawenjian.net/"/>
<outline type="rss" text="Everything Jake" title="Everything Jake" xmlUrl="http://cyj.me/feed/atom.xml" htmlUrl="http://cyj.me/"/>
<outline type="rss" text="F2E Skills" title="F2E Skills" xmlUrl="http://f2eskills.com/rss.xml" htmlUrl="http://f2eskills.com/"/>
<outline type="rss" text="Fang" title="Fang" xmlUrl="https://fqk.io/atom.xml" htmlUrl="https://fqk.io/"/>
<outline type="rss" text="方山子的博客" title="方山子的博客" xmlUrl="http://www.fangshanzi.com/?feed=rss&rkhwtq=xfcne2" htmlUrl="http://www.fangshanzi.com/"/>
<outline type="rss" text="方腾飞" title="方腾飞" xmlUrl="https://www.infoq.cn/feed/" htmlUrl="https://www.infoq.cn/profile/1277812"/>
<outline type="rss" text="fatkun's blog" title="fatkun's blog" xmlUrl="http://fatkun.com/feed" htmlUrl="http://fatkun.com/"/>
<outline type="rss" text="Fatman13" title="Fatman13" xmlUrl="http://tauntaunslayer13.me/atom.xml" htmlUrl="http://fatman13.github.io/"/>
<outline type="rss" text="斐斐のBlog" title="斐斐のBlog" xmlUrl="https://www.mmuaa.com/?feed=rss" htmlUrl="https://www.mmuaa.com/"/>
<outline type="rss" text="飞天奔月的java博客" title="飞天奔月的java博客" xmlUrl="https://www.iteye.com/rss" htmlUrl="http://feitianbenyue.iteye.com/"/>
<outline type="rss" text="飞污熊" title="飞污熊" xmlUrl="https://www.xncoding.com/atom.xml" htmlUrl="https://www.xncoding.com/"/>
<outline type="rss" text="飞行日志" title="飞行日志" xmlUrl="http://blog.fir.im/rss/" htmlUrl="http://blog.fir.im/"/>
<outline type="rss" text="飞印 - 微信打印机" title="飞印 - 微信打印机" xmlUrl="http://www.feyin.net/index.xml" htmlUrl="http://www.feyin.net/"/>
<outline type="rss" text="飞羽博客" title="飞羽博客" xmlUrl="https://cokebar.info/feed" htmlUrl="https://cokebar.info/"/>
<outline type="rss" text="疯狂的蚂蚁" title="疯狂的蚂蚁" xmlUrl="http://www.crazyant.net/feed" htmlUrl="http://www.crazyant.net/"/>
<outline type="rss" text="风向吧" title="风向吧" xmlUrl="https://fengxiangba.com/feed" htmlUrl="http://fengxiangba.com/"/>
<outline type="rss" text="风雪之隅" title="风雪之隅" xmlUrl="http://www.laruence.com/feed" htmlUrl="http://www.laruence.com/"/>
<outline type="rss" text="疯子的自留地" title="疯子的自留地" xmlUrl="https://pjf.name/feed/" htmlUrl="http://pjf.name/"/>
<outline type="rss" text="Fernando Cejas" title="Fernando Cejas" xmlUrl="https://fernandocejas.com/feed" htmlUrl="https://fernandocejas.com/"/>
<outline type="rss" text="FIFI DESIGN" title="FIFI DESIGN" xmlUrl="http://www.icefifi.com/feed" htmlUrl="http://www.icefifi.com/"/>
<outline type="rss" text="Finally" title="Finally" xmlUrl="https://pjax.cn/rss.php" htmlUrl="https://pjax.cn/"/>
<outline type="rss" text="fisherMartyn" title="fisherMartyn" xmlUrl="https://fishermartyn.github.io/feed.xml" htmlUrl="https://fishermartyn.github.io/"/>
<outline type="rss" text="FLY视觉" title="FLY视觉" xmlUrl="https://schiy.com/home/feed" htmlUrl="http://schiy.com/"/>
<outline type="rss" text="flycatdeng" title="flycatdeng" xmlUrl="https://www.iteye.com/rss" htmlUrl="http://flycatdeng.iteye.com/"/>
<outline type="rss" text="flykobe的技术与生活杂谈" title="flykobe的技术与生活杂谈" xmlUrl="http://www.flykobe.com/rss.xml" htmlUrl="http://flykobe.com/"/>
<outline type="rss" text="flyne" title="flyne" xmlUrl="http://www.flyne.org/feed" htmlUrl="http://www.flyne.org/"/>
<outline type="rss" text="Fonzie‘s Blog" title="Fonzie‘s Blog" xmlUrl="http://jjyy.guru/feed.xml" htmlUrl="http://jjyy.guru/"/>
<outline type="rss" text="FooFish" title="FooFish" xmlUrl="https://foofish.net/feeds/all.atom.xml" htmlUrl="https://foofish.net/"/>
<outline type="rss" text="Fooleap’s Blog" title="Fooleap’s Blog" xmlUrl="https://blog.fooleap.org/atom.xml" htmlUrl="https://blog.fooleap.org/"/>
<outline type="rss" text="Forece Blog" title="Forece Blog" xmlUrl="https://www.forece.net/feed" htmlUrl="http://www.forece.net/"/>
<outline type="rss" text="Format’s Notes" title="Format’s Notes" xmlUrl="https://fangjian0423.github.io/atom.xml" htmlUrl="https://fangjian0423.github.io/"/>
<outline type="rss" text="FOX-JIMMY ‘S BLOG." title="FOX-JIMMY ‘S BLOG." xmlUrl="http://blog.sead.co/feed" htmlUrl="http://blog.sead.co/"/>
<outline type="rss" text="Free Mind" title="Free Mind" xmlUrl="http://freemind.pluskid.org/rss.xml" htmlUrl="http://freemind.pluskid.org/"/>
<outline type="rss" text="freebuf" title="freebuf" xmlUrl="https://www.freebuf.com/feed" htmlUrl="https://www.freebuf.com/"/>
<outline type="rss" text="Frodo's Blog" title="Frodo's Blog" xmlUrl="http://frodoking.github.io/atom.xml" htmlUrl="http://frodoking.github.io/"/>
<outline type="rss" text="froger_mcs dev blog – Coding with love {❤️}" title="froger_mcs dev blog – Coding with love {❤️}" xmlUrl="http://frogermcs.github.io/feed.xml" htmlUrl="http://frogermcs.github.io/"/>
<outline type="rss" text="干货集中营" title="干货集中营" xmlUrl="http://gank.io/feed" htmlUrl="http://gank.io/"/>
<outline type="rss" text="高明飞" title="高明飞" xmlUrl="https://gaomf.cn/atom.xml" htmlUrl="https://gaomf.cn/"/>
<outline type="rss" text="gaocheng" title="gaocheng" xmlUrl="https://gaocheng.me/feed" htmlUrl="http://gaocheng.me/"/>
<outline type="rss" text="Gauin's Blog" title="Gauin's Blog" xmlUrl="http://www.gauin.com/feed" htmlUrl="http://www.gauin.com/"/>
<outline type="rss" text="搁浅St的blog" title="搁浅St的blog" xmlUrl="http://jackroyal.github.io/atom.xml" htmlUrl="http://jackroyal.github.io/"/>
<outline type="rss" text="Geekwolf's Blog" title="Geekwolf's Blog" xmlUrl="http://www.simlinux.com/atom.xml" htmlUrl="http://www.simlinux.com/"/>
<outline type="rss" text="GeeWaza" title="GeeWaza" xmlUrl="http://www.geewaza.com/?feed=rss2" htmlUrl="http://www.geewaza.com/"/>
<outline type="rss" text="Gityuan博客 | 袁辉辉博客" title="Gityuan博客 | 袁辉辉博客" xmlUrl="http://gityuan.com/feed.xml" htmlUrl="http://gityuan.com/"/>
<outline type="rss" text="Glow 技术团队博客" title="Glow 技术团队博客" xmlUrl="http://tech.glowing.com/cn/rss/" htmlUrl="http://tech.glowing.com/cn/"/>
<outline type="rss" text="GNUer's blog" title="GNUer's blog" xmlUrl="https://blog.gnuers.org/?feed=rss2" htmlUrl="https://blog.gnuers.org/"/>
<outline type="rss" text="Go语言学习园地博客" title="Go语言学习园地博客" xmlUrl="http://blog.studygolang.com/feed/" htmlUrl="http://blog.studygolang.com/"/>
<outline type="rss" text="公子府" title="公子府" xmlUrl="https://www.gongzi.org/feed" htmlUrl="http://www.gongzi.org/"/>
<outline type="rss" text="Google黑板报" title="Google黑板报" xmlUrl="http://blog.sina.com.cn/rss/2617744132.xml" htmlUrl="http://blog.sina.com.cn/u/2617744132"/>
<outline type="rss" text="Gopher beyond Eliphants" title="Gopher beyond Eliphants" xmlUrl="https://mikespook.com/feed/" htmlUrl="http://www.mikespook.com/"/>
<outline type="rss" text="gOxiA=苏繁=SuFan's Blog" title="gOxiA=苏繁=SuFan's Blog" xmlUrl="http://goxia.maytide.net/feed.php" htmlUrl="http://goxia.maytide.net/index.php"/>
<outline type="rss" text="greenteajug" title="greenteajug" xmlUrl="http://greenteajug.cn/feed/" htmlUrl="http://greenteajug.cn/"/>
<outline type="rss" text="孤岛旭日的个人空间" title="孤岛旭日的个人空间" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/gudaoxuri"/>
<outline type="rss" text="孤独狂饮" title="孤独狂饮" xmlUrl="http://gdky005.com/atom.xml" htmlUrl="http://gdky005.com/"/>
<outline type="rss" text="谷歌中国开发者社区 (GDG)" title="谷歌中国开发者社区 (GDG)" xmlUrl="https://chinagdg.org/feed/" htmlUrl="http://chinagdg.org/"/>
<outline type="rss" text="蜗窝科技" title="蜗窝科技" xmlUrl="http://www.wowotech.net/rss.php" htmlUrl="http://www.wowotech.net/"/>
<outline type="rss" text="果冻想" title="果冻想" xmlUrl="https://www.jellythink.com/feed" htmlUrl="http://www.jellythink.com/"/>
<outline type="rss" text="郭霖的专栏" title="郭霖的专栏" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/guolin_blog"/>
<outline type="rss" text="Hackhp Blog" title="Hackhp Blog" xmlUrl="https://www.hackhp.com/?feed=rss" htmlUrl="http://www.hackhp.com/"/>
<outline type="rss" text="海波无痕" title="海波无痕" xmlUrl="https://blog.ziki.cn/index.xml" htmlUrl="http://blog.ziki.cn/"/>
<outline type="rss" text="海运的博客" title="海运的博客" xmlUrl="https://www.haiyun.me/feed/" htmlUrl="https://www.haiyun.me/"/>
<outline type="rss" text="hailongqiu的个人技术博客" title="hailongqiu的个人技术博客" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/hailongqiu"/>
<outline type="rss" text="Halfrost's Field | 冰霜之地" title="Halfrost's Field | 冰霜之地" xmlUrl="http://halfrost.com/rss/" htmlUrl="http://www.halfrost.com/"/>
<outline type="rss" text="瀚海星空" title="瀚海星空" xmlUrl="http://abloz.com/feed" htmlUrl="http://abloz.com/"/>
<outline type="rss" text="郝聪SEO博客:网站SEO顾问_十年SEO服务经验_北京SEO公司" title="郝聪SEO博客:网站SEO顾问_十年SEO服务经验_北京SEO公司" xmlUrl="http://www.bloghuman.com/feed.php" htmlUrl="http://www.bloghuman.com/index.php"/>
<outline type="rss" text="Haorooms博客-前端博客-前端技术,记录web前端开发的技术博客" title="Haorooms博客-前端博客-前端技术,记录web前端开发的技术博客" xmlUrl="http://www.haorooms.com/feed" htmlUrl="http://www.haorooms.com/"/>
<outline type="rss" text="Harries Blog™" title="Harries Blog™" xmlUrl="http://www.liuhaihua.cn/feed" htmlUrl="http://www.liuhaihua.cn/"/>
<outline type="rss" text="Havee's Space" title="Havee's Space" xmlUrl="https://havee.me/rss.xml" htmlUrl="http://havee.me/"/>
<outline type="rss" text="何关培谈BIM" title="何关培谈BIM" xmlUrl="http://blog.sina.com.cn/rss/1644946990.xml" htmlUrl="http://blog.sina.com.cn/heguanpei"/>
<outline type="rss" text="何苦呢" title="何苦呢" xmlUrl="http://nowayhere.com/feed" htmlUrl="http://nowayhere.com/"/>
<outline type="rss" text="何帅" title="何帅" xmlUrl="http://www.heshuai.net/feed" htmlUrl="http://www.heshuai.net/"/>
<outline type="rss" text="He Tao博客" title="He Tao博客" xmlUrl="https://sighingnow.github.io/feed.xml" htmlUrl="http://sighingnow.github.io/archive/"/>
<outline type="rss" text="Hegel2011的博客" title="Hegel2011的博客" xmlUrl="http://octopresszhangyu.herokuapp.com/atom.xml" htmlUrl="http://octopresszhangyu.herokuapp.com/"/>
<outline type="rss" text="黑 * 白" title="黑 * 白" xmlUrl="http://youngsterxyf.github.io/feeds/atom.xml" htmlUrl="http://youngsterxyf.github.io/"/>
<outline type="rss" text="heiyeluren的blog(黑夜路人的开源世界)" title="heiyeluren的blog(黑夜路人的开源世界)" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="http://blog.csdn.net/heiyeshuwu"/>
<outline type="rss" text="Hello World" title="Hello World" xmlUrl="https://damiansheldon.github.io/atom.xml" htmlUrl="http://damiansheldon.github.io/"/>
<outline type="rss" text="HelloDog" title="HelloDog" xmlUrl="http://wsgzao.github.io/atom.xml" htmlUrl="http://wsgzao.github.io/"/>
<outline type="rss" text="HelloJava微信公众账号网站" title="HelloJava微信公众账号网站" xmlUrl="http://hellojava.info/?feed=rss2" htmlUrl="http://hellojava.info/"/>
<outline type="rss" text="Here comes the Sun" title="Here comes the Sun" xmlUrl="https://sunng.info/blog/feeds/all.atom.xml" htmlUrl="http://sunng.info/blog"/>
<outline type="rss" text="Hessian's Blog" title="Hessian's Blog" xmlUrl="https://hessian.cn/feed" htmlUrl="http://hessian.cn/"/>
<outline type="rss" text="Hessian's Blog" title="Hessian's Blog" xmlUrl="https://hessian.cn/feed" htmlUrl="http://hessian.me/"/>
<outline type="rss" text="Hey! Linux." title="Hey! Linux." xmlUrl="http://heylinux.com/feed" htmlUrl="http://heylinux.com/"/>
<outline type="rss" text="HFL" title="HFL" xmlUrl="http://huangfeilong.cn/feed.xml" htmlUrl="http://hfl.github.io/"/>
<outline type="rss" text="hiheng" title="hiheng" xmlUrl="http://www.hiheng.com/blog/feed" htmlUrl="http://www.hiheng.com/blog"/>
<outline type="rss" text="HollisChuang’s Blog" title="HollisChuang’s Blog" xmlUrl="http://www.hollischuang.com/feed" htmlUrl="http://www.hollischuang.com/"/>
<outline type="rss" text="红薯" title="红薯" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="https://my.oschina.net/javayou"/>
<outline type="rss" text="Hoolev" title="Hoolev" xmlUrl="http://hoolev.github.io/atom.xml" htmlUrl="http://hoolev.github.io/"/>
<outline type="rss" text="后端技术 by Tim Yang" title="后端技术 by Tim Yang" xmlUrl="https://timyang.net/feed/atom/" htmlUrl="http://timyang.net/"/>
<outline type="rss" text="猴子007" title="猴子007" xmlUrl="https://monkeysayhi.github.io/atom.xml" htmlUrl="https://monkeysayhi.github.io/"/>
<outline type="rss" text="HP'S Memory" title="HP'S Memory" xmlUrl="http://tanhp.com/index.php/feed/" htmlUrl="http://tanhp.com/"/>
<outline type="rss" text="HTML5梦工场" title="HTML5梦工场" xmlUrl="http://www.html5dw.com/feed" htmlUrl="http://www.html5dw.com/"/>
<outline type="rss" text="胡东东博客" title="胡东东博客" xmlUrl="http://blog.hudongdong.com/feed/" htmlUrl="http://www.hudongdong.com/"/>
<outline type="rss" text="胡凯" title="胡凯" xmlUrl="http://hukai.me/atom.xml" htmlUrl="http://hukai.me/"/>
<outline type="rss" text="互联网产品经理_PM28" title="互联网产品经理_PM28" xmlUrl="http://www.pm28.com/feed" htmlUrl="http://www.pm28.com/"/>
<outline type="rss" text="互联网技术实践" title="互联网技术实践" xmlUrl="http://www.minyifei.cn/feed" htmlUrl="http://www.minyifei.cn/"/>
<outline type="rss" text="胡鹏的博客" title="胡鹏的博客" xmlUrl="http://hupengfoot.github.io/pages/rss.xml" htmlUrl="http://hupengfoot.github.io/"/>
<outline type="rss" text="花钱的年华" title="花钱的年华" xmlUrl="http://calvin1978.blogcn.com/feed" htmlUrl="http://calvin1978.blogcn.com/"/>
<outline type="rss" text="化外之民" title="化外之民" xmlUrl="https://blog.wencan.org/feed/" htmlUrl="http://blog.wencan.org/"/>
<outline type="rss" text="黄博文的地盘" title="黄博文的地盘" xmlUrl="http://www.huangbowen.net/atom.xml" htmlUrl="http://www.huangbowen.net/"/>
<outline type="rss" text="黄蜂说" title="黄蜂说" xmlUrl="https://www.sjy.im/feed.xml" htmlUrl="https://www.sjy.im/"/>
<outline type="rss" text="Huang Hao" title="Huang Hao" xmlUrl="http://blog.huanghao.me/?feed=rss2" htmlUrl="http://blog.huanghao.me/"/>
<outline type="rss" text="卉莜阁&俊" title="卉莜阁&俊" xmlUrl="http://blog.sina.com.cn/rss/2393434581.xml" htmlUrl="http://blog.sina.com.cn/liujunhomepage"/>
<outline type="rss" text="灰色的灵魂" title="灰色的灵魂" xmlUrl="https://xuwenhao.com/feed" htmlUrl="http://www.xuwenhao.com/"/>
<outline type="rss" text="灰主流创业者" title="灰主流创业者" xmlUrl="http://bhsc881114.github.io/atom.xml" htmlUrl="http://bhsc881114.github.io/"/>
<outline type="rss" text="火丁笔记" title="火丁笔记" xmlUrl="https://blog.huoding.com/feed" htmlUrl="http://huoding.com/"/>
<outline type="rss" text="HyG" title="HyG" xmlUrl="https://gaohaoyang.github.io/feed.xml" htmlUrl="http://gaohaoyang.github.io/"/>
<outline type="rss" text="hzwer" title="hzwer" xmlUrl="http://hzwer.com/feed" htmlUrl="http://hzwer.com/"/>
<outline type="rss" text="I code it" title="I code it" xmlUrl="http://icodeit.org/atom.xml" htmlUrl="http://abruzzi.github.com/"/>
<outline type="rss" text="i flym" title="i flym" xmlUrl="https://www.iflym.com/index.php/feed" htmlUrl="http://www.iflym.com/"/>
<outline type="rss" text="I'm LCQ" title="I'm LCQ" xmlUrl="http://www.longchaoqun.com/feed/" htmlUrl="http://www.longchaoqun.com/"/>
<outline type="rss" text="I'm OWenT" title="I'm OWenT" xmlUrl="https://owent.net/index.xml" htmlUrl="https://www.owent.net/"/>
<outline type="rss" text="I'm qiqiboy!" title="I'm qiqiboy!" xmlUrl="http://www.qiqiboy.com/login?return_to=%2Fqiqiboy%3Ffeed%3Drss" htmlUrl="http://www.qiqiboy.com/"/>
<outline type="rss" text="I'm SErHo" title="I'm SErHo" xmlUrl="https://serholiu.com/blog/feed.xml" htmlUrl="http://serholiu.com/"/>
<outline type="rss" text="I'm TualatriX" title="I'm TualatriX" xmlUrl="http://feeds.feedburner.com/tualatrix" htmlUrl="http://imtx.me/"/>
<outline type="rss" text="iamsujie的产品设计:人人都是产品经理" title="iamsujie的产品设计:人人都是产品经理" xmlUrl="http://iamsujie.com/feed/" htmlUrl="http://iamsujie.com/"/>
<outline type="rss" text="Ian Bicking: a blog" title="Ian Bicking: a blog" xmlUrl="https://www.ianbicking.org/feeds/atom.xml" htmlUrl="http://blog.ianbicking.org/"/>
<outline type="rss" text="iAnna" title="iAnna" xmlUrl="http://blog.ykqmain.com/atom.xml" htmlUrl="http://blog.ykqmain.com/"/>
<outline type="rss" text="ibireme's blog" title="ibireme's blog" xmlUrl="https://blog.ibireme.com/feed/" htmlUrl="https://blog.ibireme.com/"/>
<outline type="rss" text="ICS Security Workspace" title="ICS Security Workspace" xmlUrl="http://plcscan.org/blog/feed/" htmlUrl="http://plcscan.org/blog"/>
<outline type="rss" text="idea's blog" title="idea's blog" xmlUrl="http://www.ideawu.net/blog/feed" htmlUrl="http://www.ideawu.net/blog"/>
<outline type="rss" text="idouba" title="idouba" xmlUrl="http://www.idouba.net/feed/" htmlUrl="http://www.idouba.net/"/>
<outline type="rss" text="iKoo's Dirty Life" title="iKoo's Dirty Life" xmlUrl="https://feeds.feedburner.com/gythialy" htmlUrl="http://gythialy.github.io/"/>
<outline type="rss" text="IMXYLZ" title="IMXYLZ" xmlUrl="https://imxylz.com/index.xml" htmlUrl="http://imxylz.com/"/>
<outline type="rss" text="indienova 独立游戏新闻,评测,开发教学" title="indienova 独立游戏新闻,评测,开发教学" xmlUrl="http://indienova.com/feed/" htmlUrl="http://indienova.com/"/>
<outline type="rss" text="InfoQ" title="InfoQ" xmlUrl="http://www.infoq.com/feed/" htmlUrl="http://www.infoq.com/cn/"/>
<outline type="rss" text="Innost的专栏 - CSDN博客" title="Innost的专栏 - CSDN博客" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/innost"/>
<outline type="rss" text="Intel® Developer Zone" title="Intel® Developer Zone" xmlUrl="https://origin-software.intel.com/en-us/user/login?destination=node/698526%3Ffeed%3Drss" htmlUrl="https://origin-software.intel.com/"/>
<outline type="rss" text="IO-meter" title="IO-meter" xmlUrl="https://io-meter.com/atom.xml" htmlUrl="http://io-meter.com/"/>
<outline type="rss" text="isaced" title="isaced" xmlUrl="http://www.isaced.com/index.xml" htmlUrl="http://www.isaced.com/"/>
<outline type="rss" text="IT博客-51Testing软件测试网" title="IT博客-51Testing软件测试网" xmlUrl="http://www.cnitblog.com/shbwf/rss.aspx" htmlUrl="http://www.cnitblog.com/shbwf/"/>
<outline type="rss" text="IT民工 or IT精英" title="IT民工 or IT精英" xmlUrl="http://www.itfarmer.com.cn/feed" htmlUrl="http://www.itfarmer.com.cn/"/>
<outline type="rss" text="IT人生录" title="IT人生录" xmlUrl="http://www.huqiwen.com/feed/" htmlUrl="http://www.huqiwen.com/"/>
<outline type="rss" text="Jacks Blog" title="Jacks Blog" xmlUrl="https://blog.dreamtobe.cn/atom.xml" htmlUrl="https://blog.dreamtobe.cn/"/>
<outline type="rss" text="James Pan's Blog" title="James Pan's Blog" xmlUrl="https://blog.jamespan.me/feed" htmlUrl="http://blog.jamespan.me/"/>
<outline type="rss" text="JamesDouble iOS" title="JamesDouble iOS" xmlUrl="https://jamesdouble.github.io/blog/atom.xml" htmlUrl="https://jamesdouble.github.io/blog/"/>
<outline type="rss" text="Jark’s Blog" title="Jark’s Blog" xmlUrl="http://wuchong.me/atom.xml" htmlUrl="http://wuchong.me/"/>
<outline type="rss" text="JarvisChu's Blog | 猪之草房子" title="JarvisChu's Blog | 猪之草房子" xmlUrl="http://zhujiangtao.com/?feed=rss2" htmlUrl="http://zhujiangtao.com/"/>
<outline type="rss" text="Jasey Wang" title="Jasey Wang" xmlUrl="http://jaseywang.me/feed/" htmlUrl="http://jaseywang.me/"/>
<outline type="rss" text="Jason's Blog" title="Jason's Blog" xmlUrl="http://jiajixin.cn/atom.xml" htmlUrl="http://jiajixin.cn/"/>
<outline type="rss" text="Jason's Blog" title="Jason's Blog" xmlUrl="http://www.jasongj.com/atom.xml" htmlUrl="http://www.jasongj.com/"/>
<outline type="rss" text="Java 技术驿站" title="Java 技术驿站" xmlUrl="http://cmsblogs.com/?feed=rss2" htmlUrl="http://cmsblogs.com/"/>
<outline type="rss" text="Java堂" title="Java堂" xmlUrl="https://www.javatang.com/feed" htmlUrl="http://www.javatang.com/"/>
<outline type="rss" text="Java Tutorial" title="Java Tutorial" xmlUrl="https://javapapers.com/feed/" htmlUrl="http://javapapers.com/"/>
<outline type="rss" text="java小强" title="java小强" xmlUrl="http://www.javacui.com/rss.php" htmlUrl="http://www.javacui.com/"/>
<outline type="rss" text="Java67-Java Programming tutorials and Interview Questions" title="Java67-Java Programming tutorials and Interview Questions" xmlUrl="https://www.java67.com/feeds/posts/default" htmlUrl="http://java67.blogspot.com/"/>
<outline type="rss" text="Javarevisited" title="Javarevisited" xmlUrl="https://javarevisited.blogspot.com/feeds/posts/default" htmlUrl="http://javarevisited.blogspot.in/"/>
<outline type="rss" text="JDC | 京东设计中心" title="JDC | 京东设计中心" xmlUrl="https://jdc.jd.com/feed" htmlUrl="http://jdc.jd.com/"/>
<outline type="rss" text="Jecvay Notes" title="Jecvay Notes" xmlUrl="https://jecvay.com/index.xml" htmlUrl="http://jecvay.com/"/>
<outline type="rss" text="JerryQu 的小站" title="JerryQu 的小站" xmlUrl="https://imququ.com/rss.html" htmlUrl="https://imququ.com/"/>
<outline type="rss" text="Jeswang's Blog" title="Jeswang's Blog" xmlUrl="http://blog.jeswang.org/atom.xml" htmlUrl="http://blog.jeswang.org/"/>
<outline type="rss" text="Jeven Space - ZhangJun.me" title="Jeven Space - ZhangJun.me" xmlUrl="https://www.zhangjun.me/feed/" htmlUrl="http://www.zhangjun.me/"/>
<outline type="rss" text="极冰网" title="极冰网" xmlUrl="http://ice.gs/atom.xml" htmlUrl="http://ice.gs/"/>
<outline type="rss" text="寂寞的宾狗" title="寂寞的宾狗" xmlUrl="https://bindog.github.io/feed.xml" htmlUrl="http://bindog.github.io/"/>
<outline type="rss" text="技塑人生" title="技塑人生" xmlUrl="http://www.xiangguo.li/atom.xml" htmlUrl="http://www.xiangguo.li/"/>
<outline type="rss" text="Ji ZHANG's Blog" title="Ji ZHANG's Blog" xmlUrl="http://shzhangji.com/atom.xml" htmlUrl="http://shzhangji.com/"/>
<outline type="rss" text="技术尘埃@伯仁" title="技术尘埃@伯仁" xmlUrl="http://itboren.com/index.php/feed/" htmlUrl="http://itboren.com/"/>
<outline type="rss" text="技术奇客|ITGeeker" title="技术奇客|ITGeeker" xmlUrl="https://www.itgeeker.net/feed/" htmlUrl="http://itgeeker.net/"/>
<outline type="rss" text="技术人生-孙强" title="技术人生-孙强" xmlUrl="http://blog.cxiangnet.cn/feed/" htmlUrl="http://blog.cxiangnet.cn/"/>
<outline type="rss" text="技术小黑屋" title="技术小黑屋" xmlUrl="https://droidyue.com/atom.xml" htmlUrl="http://droidyue.com/"/>
<outline type="rss" text="技术宅" title="技术宅" xmlUrl="https://jszbug.com/feed/" htmlUrl="https://jszbug.com/"/>
<outline type="rss" text="鸡啄米" title="鸡啄米" xmlUrl="http://www.jizhuomi.com/rss.xml" htmlUrl="http://www.jizhuomi.com/"/>
<outline type="rss" text="简单点" title="简单点" xmlUrl="http://www.95ie.com/rss.php" htmlUrl="http://www.95ie.com/"/>
<outline type="rss" text="鍵盤藍綠藻Neo" title="鍵盤藍綠藻Neo" xmlUrl="https://koromiko1104.wordpress.com/comments/feed/" htmlUrl="https://koromiko1104.wordpress.com/"/>
<outline type="rss" text="@jianhua.cheng" title="@jianhua.cheng" xmlUrl="http://chengjianhua.github.io/rss.xml" htmlUrl="http://chengjianhua.github.io/"/>
<outline type="rss" text="脚儿网脚儿网" title="脚儿网脚儿网" xmlUrl="http://jo2.org/feed/" htmlUrl="http://jo2.org/"/>
<outline type="rss" text="焦秋野,互联网运营,产品设计,SEM" title="焦秋野,互联网运营,产品设计,SEM" xmlUrl="http://www.imjqy.com/feed" htmlUrl="http://www.imjqy.com/"/>
<outline type="rss" text="结构之法 算法之道" title="结构之法 算法之道" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/v_july_v"/>
<outline type="rss" text="靳闯博客" title="靳闯博客" xmlUrl="https://me.jinchuang.org/feed/" htmlUrl="https://me.jinchuang.org/"/>
<outline type="rss" text="Jindong Zhan" title="Jindong Zhan" xmlUrl="https://zhanjindong.com/rss.xml" htmlUrl="https://zhanjindong.com/"/>
<outline type="rss" text="京城之站" title="京城之站" xmlUrl="https://www.tongjingcheng.cn/feed.xml" htmlUrl="http://www.tongjingcheng.cn/"/>
<outline type="rss" text="静觅-崔庆才的个人博客" title="静觅-崔庆才的个人博客" xmlUrl="https://cuiqingcai.com/?feed=rss2" htmlUrl="https://cuiqingcai.com/"/>
<outline type="rss" text="静水潜流" title="静水潜流" xmlUrl="https://www.myvoipapp.com/blogs/yxh/feed/" htmlUrl="https://www.myvoipapp.com/blogs/yxh/"/>
<outline type="rss" text="囧囧孙" title="囧囧孙" xmlUrl="http://www.jiongsun.com/feed" htmlUrl="http://www.jiongsun.com/"/>
<outline type="rss" text="囧克斯" title="囧克斯" xmlUrl="https://jiongks.name/atom.xml" htmlUrl="http://jiongks.name/"/>
<outline type="rss" text="Jlog" title="Jlog" xmlUrl="http://www.race604.com/rss/" htmlUrl="https://race604.com/"/>
<outline type="rss" text="jmouse" title="jmouse" xmlUrl="https://jmouse.cn/feed/" htmlUrl="http://www.jmouse.cn/"/>
<outline type="rss" text="Johnson Zhou" title="Johnson Zhou" xmlUrl="https://radishblog.github.io/atom.xml" htmlUrl="https://radishblog.github.io/"/>
<outline type="rss" text="jokerliang.com(喜趣.良田)" title="jokerliang.com(喜趣.良田)" xmlUrl="http://jokerliang.com/feed" htmlUrl="http://jokerliang.com/"/>
<outline type="rss" text="Jqlblue's Blog" title="Jqlblue's Blog" xmlUrl="http://blog.gaoyuan.xyz/atom.xml" htmlUrl="http://jqlblue.github.io/"/>
<outline type="rss" text="咀嚼之味" title="咀嚼之味" xmlUrl="https://jerryzou.com/feed.xml" htmlUrl="http://jerryzou.com/"/>
<outline type="rss" text="橘子书" title="橘子书" xmlUrl="https://loomob.com/feed" htmlUrl="https://loomob.com/"/>
<outline type="rss" text="觉唯前端" title="觉唯前端" xmlUrl="https://www.jiawin.com/feed" htmlUrl="http://www.jiawin.com/"/>
<outline type="rss" text="隽永东方设计工作室" title="隽永东方设计工作室" xmlUrl="https://www.eastdesign.net/feed/" htmlUrl="http://www.eastdesign.net/"/>
<outline type="rss" text="Junan博客" title="Junan博客" xmlUrl="https://junan.name/feed" htmlUrl="http://junan.name/"/>
<outline type="rss" text="Just For Coding" title="Just For Coding" xmlUrl="http://www.just4coding.com/atom.xml" htmlUrl="http://www.just4coding.com/"/>
<outline type="rss" text="Just_do_挨踢" title="Just_do_挨踢" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/goldenshaw"/>
<outline type="rss" text="justJavac" title="justJavac" xmlUrl="https://justjavac.com/atom.xml" htmlUrl="http://justjavac.com/"/>
<outline type="rss" text="JustQyx" title="JustQyx" xmlUrl="http://www.justqyx.me/atom.xml" htmlUrl="http://justqyx.github.io/"/>
<outline type="rss" text="K-Res的Blog" title="K-Res的Blog" xmlUrl="https://blog.k-res.net/feed" htmlUrl="http://blog.k-res.net/"/>
<outline type="rss" text="开心&努力" title="开心&努力" xmlUrl="http://www.kxtry.com/feed" htmlUrl="http://www.kxtry.com/"/>
<outline type="rss" text="看天博客" title="看天博客" xmlUrl="http://hi.ktsee.com/feed/" htmlUrl="http://hi.ktsee.com/"/>
<outline type="rss" text="考拉哥的博客" title="考拉哥的博客" xmlUrl="http://lifestack.cn/feed" htmlUrl="http://lifestack.cn/"/>
<outline type="rss" text="KayleZhuang" title="KayleZhuang" xmlUrl="http://kayle.win/atom.xml" htmlUrl="http://kayle.win/"/>
<outline type="rss" text="Kayo's Melody » Kayo's Melody | Kayo's Melody" title="Kayo's Melody » Kayo's Melody | Kayo's Melody" xmlUrl="http://kayosite.com/feed" htmlUrl="http://kayosite.com/"/>
<outline type="rss" text="kazaff's blog" title="kazaff's blog" xmlUrl="https://blog.kazaff.me/atom.xml" htmlUrl="http://blog.kazaff.me/"/>
<outline type="rss" text="刻骨铭心" title="刻骨铭心" xmlUrl="http://jacoxu.com/feed/" htmlUrl="http://jacoxu.com/"/>
<outline type="rss" text="可乐橙" title="可乐橙" xmlUrl="http://colachan.com/feed" htmlUrl="http://colachan.com/feed"/>
<outline type="rss" text="可乐加糖 & COLA" title="可乐加糖 & COLA" xmlUrl="https://www.qcoke.com/feed" htmlUrl="http://www.qcoke.com/"/>
<outline type="rss" text="Keep it simple and stupid!" title="Keep it simple and stupid!" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/gschen"/>
<outline type="rss" text="Keep Writing Codes" title="Keep Writing Codes" xmlUrl="https://liujiacai.net/atom.xml" htmlUrl="http://liujiacai.net/"/>
<outline type="rss" text="kenyon的个人页面" title="kenyon的个人页面" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/Kenyon"/>
<outline type="rss" text="Kevin Blog" title="Kevin Blog" xmlUrl="https://zhowkev.in/rss/" htmlUrl="http://zhowkev.in/"/>
<outline type="rss" text="Kitten's 时间胶囊" title="Kitten's 时间胶囊" xmlUrl="http://kittenyang.com/rss/" htmlUrl="http://kittenyang.com/"/>
<outline type="rss" text="klion26" title="klion26" xmlUrl="http://www.klion26.com/atom.xml" htmlUrl="http://www.klion26.com/"/>
<outline type="rss" text="kn007的个人博客" title="kn007的个人博客" xmlUrl="https://kn007.net/feed/" htmlUrl="https://kn007.net/"/>
<outline type="rss" text="孔方宇" title="孔方宇" xmlUrl="http://kongfangyu.com/atom.xml" htmlUrl="http://kongfangyu.com/"/>
<outline type="rss" text="Kong's Blog" title="Kong's Blog" xmlUrl="https://lingxiankong.github.io/pages/rss.xml" htmlUrl="http://lingxiankong.github.io/"/>
<outline type="rss" text="空想枫" title="空想枫" xmlUrl="https://blog.it580.com/index.xml" htmlUrl="http://blog.it580.com/"/>
<outline type="rss" text="ksnowlv" title="ksnowlv" xmlUrl="http://ksnowlv.github.io/atom.xml" htmlUrl="http://ksnowlv.github.io/"/>
<outline type="rss" text="酷壳" title="酷壳" xmlUrl="https://coolshell.cn/feed" htmlUrl="https://coolshell.cn/"/>
<outline type="rss" text="酷喃|coolnull|" title="酷喃|coolnull|" xmlUrl="http://coolnull.com/feed" htmlUrl="http://coolnull.com/"/>
<outline type="rss" text="快乐编程" title="快乐编程" xmlUrl="http://www.01happy.com/?feed=rss" htmlUrl="http://www.01happy.com/"/>
<outline type="rss" text="快乐老鼠" title="快乐老鼠" xmlUrl="https://www.hmouse.tk/?feed=rss2" htmlUrl="http://www.hmouse.tk/"/>
<outline type="rss" text="快乐生活,快乐工作" title="快乐生活,快乐工作" xmlUrl="https://zgia.net/?feed=rss2" htmlUrl="http://zgia.net/"/>
<outline type="rss" text="Kubi Code'Blog" title="Kubi Code'Blog" xmlUrl="http://kubicode.me/atom.xml" htmlUrl="http://kubicode.me/"/>
<outline type="rss" text="葵中剑-携程前端" title="葵中剑-携程前端" xmlUrl="https://swordair.com/rss/" htmlUrl="http://www.swordair.com/blog/"/>
<outline type="rss" text="葵中剑@剑空" title="葵中剑@剑空" xmlUrl="https://swordair.com/rss/" htmlUrl="http://swordair.com/"/>
<outline type="rss" text="kymjs张涛-开源实验室" title="kymjs张涛-开源实验室" xmlUrl="https://www.kymjs.com/feed.xml" htmlUrl="https://kymjs.com/"/>
<outline type="rss" text="kyun的博客" title="kyun的博客" xmlUrl="http://blog.sina.com.cn/rss/2158457562.xml" htmlUrl="http://blog.sina.com.cn/u/2158457562"/>
<outline type="rss" text="λ-calculus" title="λ-calculus" xmlUrl="http://www.cppblog.com/vczh/rss.aspx" htmlUrl="http://www.cppblog.com/vczh"/>
<outline type="rss" text="拉风的道长_Android之路" title="拉风的道长_Android之路" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/lifj"/>
<outline type="rss" text="laike9m's blog" title="laike9m's blog" xmlUrl="https://laike9m.com/blog/rss/" htmlUrl="https://laike9m.com/blog/rss"/>
<outline type="rss" text="Lam's Blog" title="Lam's Blog" xmlUrl="http://linbinghe.com/atom.xml" htmlUrl="http://linbinghe.com/"/>
<outline type="rss" text="Lamp Blog" title="Lamp Blog" xmlUrl="http://www.lampblog.net/feed/" htmlUrl="http://www.lampblog.net/"/>
<outline type="rss" text="蓝飞技术部落格" title="蓝飞技术部落格" xmlUrl="https://www.clanfei.com/feed/" htmlUrl="http://www.clanfei.com/"/>
<outline type="rss" text="蓝鲸的网站分析笔记" title="蓝鲸的网站分析笔记" xmlUrl="http://bluewhale.cc/feed" htmlUrl="http://bluewhale.cc/"/>
<outline type="rss" text="蘭陵N散記" title="蘭陵N散記" xmlUrl="http://lanlingzi.cn/index.xml" htmlUrl="http://lanlingzi.cn/"/>
<outline type="rss" text="懶泥陳的iOS部落格" title="懶泥陳的iOS部落格" xmlUrl="http://www.iostech.logdown.com/posts.rss" htmlUrl="http://iostech.logdown.com/"/>
<outline type="rss" text="Lancer's Blog - CrackedZone" title="Lancer's Blog - CrackedZone" xmlUrl="http://www.crackedzone.com/feed.xml" htmlUrl="http://www.crackedzone.com/"/>
<outline type="rss" text="老高的技术博客" title="老高的技术博客" xmlUrl="https://blog.phpgao.com/feed/" htmlUrl="https://blog.phpgao.com/"/>
<outline type="rss" text="老罗的Android之旅" title="老罗的Android之旅" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/luoshengyang"/>
<outline type="rss" text="老实人" title="老实人" xmlUrl="https://laoshiren.net/feed" htmlUrl="http://laoshiren.net/"/>
<outline type="rss" text="老谢博客" title="老谢博客" xmlUrl="http://www.xj123.info/feed" htmlUrl="http://www.xj123.info/"/>
<outline type="rss" text="老鱼的博客" title="老鱼的博客" xmlUrl="https://hgoldfish.com/blogs/rss/articles.xml" htmlUrl="http://hgoldfish.com/"/>
<outline type="rss" text="老D博客" title="老D博客" xmlUrl="https://laod.cn/feed/" htmlUrl="https://laod.cn/"/>
<outline type="rss" text="Lavare" title="Lavare" xmlUrl="http://yangcaimu.github.io/atom.xml" htmlUrl="http://yangcaimu.github.io/"/>
<outline type="rss" text="乐者为王" title="乐者为王" xmlUrl="https://codemany.com/atom.xml" htmlUrl="http://codemany.com/"/>
<outline type="rss" text="乐知者" title="乐知者" xmlUrl="https://www.lezhizhe.net/feed/" htmlUrl="http://www.lezhizhe.net/"/>
<outline type="rss" text="LeanCloud Blog" title="LeanCloud Blog" xmlUrl="https://leancloudblog.com/rss.xml" htmlUrl="https://blog.leancloud.cn/"/>
<outline type="rss" text="(learn&think)" title="(learn&think)" xmlUrl="http://dreamrunner.org/atom.xml" htmlUrl="http://dreamrunner.org/"/>
<outline type="rss" text="Lee-Jane的个人页面" title="Lee-Jane的个人页面" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/swuly302"/>
<outline type="rss" text="leejun_2005的个人页面" title="leejun_2005的个人页面" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/leejun2005"/>
<outline type="rss" text="leeon | 分享未来" title="leeon | 分享未来" xmlUrl="http://www.leeon.me/feed" htmlUrl="http://www.leeon.me/"/>
<outline type="rss" text="Leeyee's Blog" title="Leeyee's Blog" xmlUrl="http://iyiguo.net/feed.xml" htmlUrl="http://leeyee.github.io/"/>
<outline type="rss" text="Legend of WolfX" title="Legend of WolfX" xmlUrl="https://wolfx.cn/atom.xml" htmlUrl="https://wolfx.cn/"/>
<outline type="rss" text="冷轩信" title="冷轩信" xmlUrl="https://lengxx.com/feed/" htmlUrl="http://lengxx.com/"/>
<outline type="rss" text="lenglingx的个人页面" title="lenglingx的个人页面" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/lenglingx"/>
<outline type="rss" text="LeoXu的个人页面" title="LeoXu的个人页面" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/xuleo"/>
<outline type="rss" text="Let There Be Light" title="Let There Be Light" xmlUrl="http://weyo.me/feeds/all.rss.xml" htmlUrl="http://weyo.me/"/>
<outline type="rss" text="李德涛博客" title="李德涛博客" xmlUrl="http://www.lidetao.com/feed" htmlUrl="http://www.lidetao.com/"/>
<outline type="rss" text="李凡希的Blog" title="李凡希的Blog" xmlUrl="https://www.freemindworld.com/blog/feed" htmlUrl="http://www.freemindworld.com/blog"/>
<outline type="rss" text="李海涛个人官方网站" title="李海涛个人官方网站" xmlUrl="http://lihaitao.cn/?feed=rss2" htmlUrl="http://lihaitao.cn/"/>
<outline type="rss" text="李劼杰的博客" title="李劼杰的博客" xmlUrl="http://www.lijiejie.com/feed/" htmlUrl="http://www.lijiejie.com/"/>
<outline type="rss" text="厘米天空" title="厘米天空" xmlUrl="https://www.cmsky.com/feed/" htmlUrl="http://www.cmsky.com/"/>
<outline type="rss" text="李小武" title="李小武" xmlUrl="http://blog.lichengwu.cn/feed.xml" htmlUrl="http://blog.lichengwu.cn/"/>
<outline type="rss" text="李阳良博客" title="李阳良博客" xmlUrl="http://liyangliang.me/index.xml" htmlUrl="http://liyangliang.me/"/>
<outline type="rss" text="李勇2的博客" title="李勇2的博客" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/u/186074"/>
<outline type="rss" text="Liangshan" title="Liangshan" xmlUrl="https://liangshan.blog/atom.xml" htmlUrl="http://liangshan.me/"/>
<outline type="rss" text="libfeihu Blog" title="libfeihu Blog" xmlUrl="http://feihu.me/blog/feed.atom" htmlUrl="http://feihu.me/"/>
<outline type="rss" text="licstar的博客" title="licstar的博客" xmlUrl="http://licstar.net/feed" htmlUrl="http://licstar.net/"/>
<outline type="rss" text="lightSky'Blog" title="lightSky'Blog" xmlUrl="http://www.lightskystreet.com/atom.xml" htmlUrl="http://www.lightskystreet.com/"/>
<outline type="rss" text="Limboy.me" title="Limboy.me" xmlUrl="http://feeds.feedburner.com/lzyy" htmlUrl="http://limboy.me/"/>
<outline type="rss" text="Lin" title="Lin" xmlUrl="http://linlexus.com/rss/" htmlUrl="http://linlexus.com/"/>
<outline type="rss" text="麟大大的程序世界" title="麟大大的程序世界" xmlUrl="http://hungryant.github.io/feed.xml" htmlUrl="http://hungryant.github.io/"/>
<outline type="rss" text="Lincolnge's world" title="Lincolnge's world" xmlUrl="http://lincolnge.github.io/atom.xml" htmlUrl="http://lincolnge.github.io/"/>
<outline type="rss" text="铃不铃不铃" title="铃不铃不铃" xmlUrl="https://www.mjix.com/feed" htmlUrl="http://www.mjix.com/"/>
<outline type="rss" text="灵犀一叶的博客" title="灵犀一叶的博客" xmlUrl="http://blog.sina.com.cn/rss/1738987054.xml" htmlUrl="http://blog.sina.com.cn/u/1738987054"/>
<outline type="rss" text="凌云的博客" title="凌云的博客" xmlUrl="http://cs-cjl.com/rss.xml" htmlUrl="http://cs-cjl.com/"/>
<outline type="rss" text="LinkerLin的博客" title="LinkerLin的博客" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/linker"/>
<outline type="rss" text="linux菜园子" title="linux菜园子" xmlUrl="http://lisux.me/lishuai/?feed=rss2" htmlUrl="http://lisux.me/lishuai"/>
<outline type="rss" text="Linux Kernel Exploration" title="Linux Kernel Exploration" xmlUrl="http://ilinuxkernel.com/?feed=rss2" htmlUrl="http://ilinuxkernel.com/"/>
<outline type="rss" text="Linux Performance" title="Linux Performance" xmlUrl="http://linuxperf.com/?feed=rss2" htmlUrl="http://linuxperf.com/"/>
<outline type="rss" text="Linux Story" title="Linux Story" xmlUrl="https://10.linuxstory.net/feed/" htmlUrl="http://www.linuxstory.org/"/>
<outline type="rss" text="Linux.中国 - 开源中文社区" title="Linux.中国 - 开源中文社区" xmlUrl="https://linux.cn/rss.xml" htmlUrl="https://linux.cn/"/>
<outline type="rss" text="LinuxTOY" title="LinuxTOY" xmlUrl="https://linuxtoy.org/feeds/all.atom.xml" htmlUrl="https://linuxtoy.org/"/>
<outline type="rss" text="LiteFeel" title="LiteFeel" xmlUrl="https://www.litefeel.com/feed/" htmlUrl="http://www.litefeel.com/"/>
<outline type="rss" text="Litten的博客" title="Litten的博客" xmlUrl="http://litten.me/atom.xml" htmlUrl="http://litten.github.io/"/>
<outline type="rss" text="刘博平的部落格" title="刘博平的部落格" xmlUrl="https://www.liuboping.com/feed/rss/" htmlUrl="https://www.liuboping.com/"/>
<outline type="rss" text="柳城" title="柳城" xmlUrl="https://liucheng.name/feed/" htmlUrl="http://liucheng.name/"/>
<outline type="rss" text="刘坤的技术博客" title="刘坤的技术博客" xmlUrl="https://blog.cnbluebox.com/atom.xml" htmlUrl="http://blog.cnbluebox.com/"/>
<outline type="rss" text="刘荣星的博客" title="刘荣星的博客" xmlUrl="https://www.liurongxing.com/feed" htmlUrl="https://www.liurongxing.com/"/>
<outline type="rss" text="柳婼 の blog" title="柳婼 の blog" xmlUrl="https://www.liuchuo.net/feed" htmlUrl="https://www.liuchuo.net/"/>
<outline type="rss" text="{流水理鱼|wwek}" title="{流水理鱼|wwek}" xmlUrl="https://www.iamle.com/feed" htmlUrl="http://www.iamle.com/"/>
<outline type="rss" text="流水年华°" title="流水年华°" xmlUrl="http://yyny1789.github.io/feed.xml" htmlUrl="http://yyny1789.github.io/"/>
<outline type="rss" text="刘思喆@贝吉塔行星" title="刘思喆@贝吉塔行星" xmlUrl="http://bjt.name/feed.xml" htmlUrl="http://www.bjt.name/"/>
<outline type="rss" text="刘未鹏 | Mind Hacks | 思维改变生活" title="刘未鹏 | Mind Hacks | 思维改变生活" xmlUrl="http://mindhacks.cn/feed/" htmlUrl="http://mindhacks.cn/"/>
<outline type="rss" text="柳伟卫/老卫/Way Lau’s Personal Site" title="柳伟卫/老卫/Way Lau’s Personal Site" xmlUrl="https://waylau.com/feed.xml" htmlUrl="https://waylau.com/"/>
<outline type="rss" text="liuxing's blog" title="liuxing's blog" xmlUrl="http://liuxing.info/atom.xml" htmlUrl="http://liuxing.info/"/>
<outline type="rss" text="Living in an Ivory Basement" title="Living in an Ivory Basement" xmlUrl="http://ivory.idyll.org/blog/" htmlUrl="http://ivory.idyll.org/blog"/>
<outline type="rss" text="Locate Myself" title="Locate Myself" xmlUrl="http://www.zhujun.me/?feed=rss" htmlUrl="http://www.zhujun.me/"/>
<outline type="rss" text="Log4D" title="Log4D" xmlUrl="https://blog.alswl.com/atom.xml" htmlUrl="http://blog.log4d.com/"/>
<outline type="rss" text="LOGO设计博客 - 123标志™团队博客" title="LOGO设计博客 - 123标志™团队博客" xmlUrl="https://blog.logo123.net/feed" htmlUrl="http://www.logo123.net/blog"/>
<outline type="rss" text="Lok" title="Lok" xmlUrl="http://lok.me/feed" htmlUrl="http://lok.me/"/>
<outline type="rss" text="Lonely Nights" title="Lonely Nights" xmlUrl="http://haoxiang.org/feed/" htmlUrl="http://haoxiang.org/"/>
<outline type="rss" text="Long Luo's Develop Notes" title="Long Luo's Develop Notes" xmlUrl="http://www.longluo.me/atom.xml" htmlUrl="http://longluo.github.io/"/>
<outline type="rss" text="龙爪槐守望者的博客" title="龙爪槐守望者的博客" xmlUrl="http://www.ftium4.com/feed" htmlUrl="http://www.ftium4.com/"/>
<outline type="rss" text="Longdw" title="Longdw" xmlUrl="http://www.longdw.com/feed/" htmlUrl="http://www.longdw.com/"/>
<outline type="rss" text="Looly's Blog" title="Looly's Blog" xmlUrl="https://www.xiaoleilu.com/atom.xml" htmlUrl="http://www.xiaoleilu.com/"/>
<outline type="rss" text="loop in codes" title="loop in codes" xmlUrl="http://codemacro.com/atom.xml" htmlUrl="http://codemacro.com/"/>
<outline type="rss" text="Louis Lee's Blog" title="Louis Lee's Blog" xmlUrl="http://louislee92.com/feed.xml" htmlUrl="http://louislee92.com/"/>
<outline type="rss" text="Love冥天个人博客-关注IT|PHP|互联网|php个人博客交流" title="Love冥天个人博客-关注IT|PHP|互联网|php个人博客交流" xmlUrl="http://lostphp.com/feed" htmlUrl="http://lostphp.com/"/>
<outline type="rss" text="love wife & love life --Roger" title="love wife & love life --Roger" xmlUrl="http://www.killdb.com/feed/" htmlUrl="http://www.killdb.com/"/>
<outline type="rss" text="陆春的技术小书" title="陆春的技术小书" xmlUrl="http://luchun.github.io/feed.xml" htmlUrl="http://luchun.github.io/"/>
<outline type="rss" text="吕大豹前端博客" title="吕大豹前端博客" xmlUrl="https://www.cnblogs.com/lvdabao/rss" htmlUrl="http://www.cnblogs.com/lvdabao/"/>
<outline type="rss" text="撸代码 - LuCode.net" title="撸代码 - LuCode.net" xmlUrl="http://blog.lucode.net/feed/" htmlUrl="http://blog.lucode.net/"/>
<outline type="rss" text="吕神的自我修养" title="吕神的自我修养" xmlUrl="http://www.lrxin.com/feed" htmlUrl="http://www.lrxin.com/"/>
<outline type="rss" text="卢松松在TechWeb" title="卢松松在TechWeb" xmlUrl="http://reed077.blog.techweb.com.cn/feed" htmlUrl="http://reed077.blog.techweb.com.cn/"/>
<outline type="rss" text="吕小荣" title="吕小荣" xmlUrl="http://mednoter.com/feed.xml" htmlUrl="http://mednoter.com/"/>
<outline type="rss" text="路一步步走" title="路一步步走" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/colorleaf"/>
<outline type="rss" text="乱象,印迹" title="乱象,印迹" xmlUrl="http://www.luanxiang.org/?feed=atom" htmlUrl="http://www.luanxiang.org/blog/"/>
<outline type="rss" text="Lucida" title="Lucida" xmlUrl="http://zh.lucida.me/atom.xml" htmlUrl="http://zh.lucida.me/"/>
<outline type="rss" text="Lugir" title="Lugir" xmlUrl="https://www.lugir.com/rss.xml" htmlUrl="http://lugir.com/"/>
<outline type="rss" text="Lumi Wu" title="Lumi Wu" xmlUrl="http://lumiwu.com/atom.xml" htmlUrl="http://luminsense.github.io/"/>
<outline type="rss" text="罗磊的独立博客" title="罗磊的独立博客" xmlUrl="https://luolei.org/feed/" htmlUrl="http://luolei.org/"/>
<outline type="rss" text="落絮飞雁的个人网站 » 落絮飞雁的个人网站" title="落絮飞雁的个人网站 » 落絮飞雁的个人网站" xmlUrl="https://www.luoxufeiyan.com/feed/" htmlUrl="http://www.luoxufeiyan.com/"/>
<outline type="rss" text="落园" title="落园" xmlUrl="http://www.loyhome.com/feed/" htmlUrl="http://www.loyhome.com/"/>
<outline type="rss" text="Lyric.im" title="Lyric.im" xmlUrl="https://lyric.im/feed/rss2.xml" htmlUrl="http://lyric.im/"/>
<outline type="rss" text="M&M" title="M&M" xmlUrl="https://www.xiaomastack.com/atom.xml" htmlUrl="https://www.xiaomastack.com/"/>
<outline type="rss" text="M0rk’s Bolg" title="M0rk’s Bolg" xmlUrl="https://kevien.github.io/atom.xml" htmlUrl="https://kevien.github.io/"/>
<outline type="rss" text="m_buddy的博客" title="m_buddy的博客" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/m_buddy"/>
<outline type="rss" text="码蜂笔记" title="码蜂笔记" xmlUrl="https://coderbee.net/index.php/feed" htmlUrl="http://coderbee.net/"/>
<outline type="rss" text="马洪飞博客" title="马洪飞博客" xmlUrl="https://mahongfei.com/?feed=rss" htmlUrl="https://mahongfei.com/"/>
<outline type="rss" text="麻凯倩's blog❤前端" title="麻凯倩's blog❤前端" xmlUrl="http://makaiqian.com/rss/" htmlUrl="http://makaiqian.com/"/>
<outline type="rss" text="码农日记" title="码农日记" xmlUrl="https://www.androiddev.net/feed/" htmlUrl="http://www.androiddev.net/"/>
<outline type="rss" text="码猿同学" title="码猿同学" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/AirMario"/>
<outline type="rss" text="MacTalk-池建强的随想录" title="MacTalk-池建强的随想录" xmlUrl="http://macshuo.com/?feed=rss2" htmlUrl="http://macshuo.com/"/>
<outline type="rss" text="Magento架构师的笔记" title="Magento架构师的笔记" xmlUrl="https://www.magentonotes.com/feed" htmlUrl="http://www.magentonotes.com/"/>
<outline type="rss" text="Magnifiant: exploring software testing" title="Magnifiant: exploring software testing" xmlUrl="http://www.huibschoots.nl/wordpress/?feed=rss2" htmlUrl="http://www.huibschoots.nl/wordpress"/>
<outline type="rss" text="麦芒实验室" title="麦芒实验室" xmlUrl="https://www.awnlab.com/feed" htmlUrl="http://www.awnlab.com/"/>
<outline type="rss" text="make it simple" title="make it simple" xmlUrl="http://www.suerb.com/feed" htmlUrl="http://www.suerb.com/"/>
<outline type="rss" text="漫漫路" title="漫漫路" xmlUrl="https://www.lanindex.com/feed/" htmlUrl="http://www.lanindex.com/"/>
<outline type="rss" text="猫躺在键盘上" title="猫躺在键盘上" xmlUrl="http://cheng.guru/atom.xml" htmlUrl="http://cheng.guru/atom.xml"/>
<outline type="rss" text="猫窝" title="猫窝" xmlUrl="http://blog.wangjunyu.net/feed" htmlUrl="http://blog.wangjunyu.net/"/>
<outline type="rss" text="Mapleeit" title="Mapleeit" xmlUrl="http://blog.miaozhaofeng.cn/feed" htmlUrl="http://blog.miaozhaofeng.cn/feed"/>
<outline type="rss" text="Marginally Interesting" title="Marginally Interesting" xmlUrl="http://feeds.feedburner.com/MarginallyInteresting" htmlUrl="http://blog.mikiobraun.de/"/>
<outline type="rss" text="Mark's Way" title="Mark's Way" xmlUrl="http://markchen.me/feed/" htmlUrl="http://markchen.me/"/>
<outline type="rss" text="Martin" title="Martin" xmlUrl="http://martin91.github.io/atom.xml" htmlUrl="http://martin91.github.io/"/>
<outline type="rss" text="MaskRay" title="MaskRay" xmlUrl="http://maskray.me/blog/atom.xml" htmlUrl="http://maskray.me/blog"/>
<outline type="rss" text="梅花信息公司官网 - MeiHua Information" title="梅花信息公司官网 - MeiHua Information" xmlUrl="http://www.meihuainfo.com/?feed=rss2" htmlUrl="http://www.meihuainfo.com/"/>
<outline type="rss" text="美团技术团队" title="美团技术团队" xmlUrl="https://tech.meituan.com/feed/" htmlUrl="http://tech.meituan.com/"/>
<outline type="rss" text="梦飞扬" title="梦飞扬" xmlUrl="http://dreamfy.cn/atom.xml" htmlUrl="http://dreamfy.cn/"/>
<outline type="rss" text="孟坤博客" title="孟坤博客" xmlUrl="https://mkblog.cn/feed/" htmlUrl="https://mkblog.cn/"/>
<outline type="rss" text="梦想天空(山边小溪)" title="梦想天空(山边小溪)" xmlUrl="https://www.cnblogs.com/lhb25/rss" htmlUrl="http://www.cnblogs.com/lhb25/"/>
<outline type="rss" text="梦之星辰-怀" title="梦之星辰-怀" xmlUrl="http://blog.sina.com.cn/rss/2804859404.xml" htmlUrl="http://blog.sina.com.cn/android2007"/>
<outline type="rss" text="metaflow-ai" title="metaflow-ai" xmlUrl="https://blog.metaflow.fr/feed" htmlUrl="https://blog.metaflow.fr/"/>
<outline type="rss" text="米豆网" title="米豆网" xmlUrl="http://www.1000seo.com/feed" htmlUrl="http://www.1000seo.com/"/>
<outline type="rss" text="喵容" title="喵容" xmlUrl="https://www.miaoroom.com/feed" htmlUrl="https://www.miaoroom.com/"/>
<outline type="rss" text="妙音" title="妙音" xmlUrl="http://yongqing.is-programmer.com/posts.rss" htmlUrl="http://yongqing.is-programmer.com/"/>
<outline type="rss" text="Michael's Blog" title="Michael's Blog" xmlUrl="http://leancodingnow.com/rss/" htmlUrl="http://leancodingnow.com/"/>
<outline type="rss" text="mindwind" title="mindwind" xmlUrl="http://mindwind.me/feed.xml" htmlUrl="http://mindwind.me/"/>
<outline type="rss" text="明月浩空博客" title="明月浩空博客" xmlUrl="https://lmih.cn/rss.php" htmlUrl="http://limh.me/"/>
<outline type="rss" text="minimalmonkey" title="minimalmonkey" xmlUrl="http://minimalmonkey.com/feed/" htmlUrl="http://minimalmonkey.com/"/>
<outline type="rss" text="Mitchell Chu's Blog" title="Mitchell Chu's Blog" xmlUrl="http://blog.useasp.net/rss.aspx" htmlUrl="http://blog.useasp.net/Default.aspx"/>
<outline type="rss" text="魔帆博客" title="魔帆博客" xmlUrl="https://morfans.cn/?feed=rss2" htmlUrl="http://morfans.cn/"/>
<outline type="rss" text="MobileUI莫贝网" title="MobileUI莫贝网" xmlUrl="http://www.mobileui.cn/feed" htmlUrl="http://www.mobileui.cn/"/>
<outline type="rss" text="MoeLove" title="MoeLove" xmlUrl="https://moelove.info/index.xml" htmlUrl="http://moelove.info/"/>
<outline type="rss" text="MongoDB中文社区" title="MongoDB中文社区" xmlUrl="http://www.mongoing.com/feed" htmlUrl="http://www.mongoing.com/"/>
<outline type="rss" text="MonkeyTest的博客" title="MonkeyTest的博客" xmlUrl="http://blog.sina.com.cn/rss/1881320895.xml" htmlUrl="http://blog.sina.com.cn/u/1881320895"/>
<outline type="rss" text="某岛" title="某岛" xmlUrl="http://www.shuizilong.com/house/feed/" htmlUrl="http://www.shuizilong.com/house/"/>
<outline type="rss" text="某人的栖息地" title="某人的栖息地" xmlUrl="https://ooso.net/feed" htmlUrl="http://www.ooso.net/"/>
<outline type="rss" text="某学姐" title="某学姐" xmlUrl="http://mouxuejie.com/atom.xml" htmlUrl="http://mouxuejie.com/"/>
<outline type="rss" text="某学姐" title="某学姐" xmlUrl="http://mouxuejie.com/atom.xml" htmlUrl="http://wangxinghe.github.io/"/>
<outline type="rss" text="MrPeak杂货铺" title="MrPeak杂货铺" xmlUrl="http://mrpeak.cn/feed.xml" htmlUrl="http://mrpeak.cn/"/>
<outline type="rss" text="牧风" title="牧风" xmlUrl="https://mufeng.me/feed" htmlUrl="http://mufeng.me/"/>
<outline type="rss" text="暮光博客" title="暮光博客" xmlUrl="https://muguang.me/feed" htmlUrl="https://muguang.me/"/>
<outline type="rss" text="木木博客,网络营销实践者" title="木木博客,网络营销实践者" xmlUrl="http://blog.sina.com.cn/rss/1241373614.xml" htmlUrl="http://blog.sina.com.cn/mumuhouzi"/>
<outline type="rss" text="木木木木木" title="木木木木木" xmlUrl="http://immmmm.com/page/2?feed=rss" htmlUrl="http://immmmm.com/"/>
<outline type="rss" text="木匣子" title="木匣子" xmlUrl="https://blog.mutoo.im/atom.xml" htmlUrl="http://blog.mutoo.im/"/>
<outline type="rss" text="Musing Mortoray" title="Musing Mortoray" xmlUrl="https://mortoray.com/feed/" htmlUrl="http://mortoray.com/"/>
<outline type="rss" text="Muuzii" title="Muuzii" xmlUrl="https://www.muuzii.com/feed/" htmlUrl="http://www.muuzii.com/"/>
<outline type="rss" text="mx's Blog" title="mx's Blog" xmlUrl="http://x-wei.github.io/feeds/atom.xml" htmlUrl="http://x-wei.github.io/"/>
<outline type="rss" text="MySQL中文网" title="MySQL中文网" xmlUrl="https://imysql.com/feed" htmlUrl="http://imysql.com/"/>
<outline type="rss" text="奶牛博客" title="奶牛博客" xmlUrl="https://www.nenew.net/feed" htmlUrl="http://www.nenew.net/"/>
<outline type="rss" text="南靖男的时代" title="南靖男的时代" xmlUrl="https://larryli.cn/feed" htmlUrl="https://larryli.cn/"/>
<outline type="rss" text="» 脑袋博客" title="» 脑袋博客" xmlUrl="http://ifelsend.com/blog/feed" htmlUrl="http://ifelsend.com/blog"/>
<outline type="rss" text="neo时刻准备着" title="neo时刻准备着" xmlUrl="http://neoremind.com/feed/" htmlUrl="http://neoremind.com/"/>
<outline type="rss" text="Neo 时刻准备着" title="Neo 时刻准备着" xmlUrl="http://neoremind.com/feed/" htmlUrl="http://neoremind.net/"/>
<outline type="rss" text="Never_yu’s blog" title="Never_yu’s blog" xmlUrl="https://neveryu.github.io/atom.xml" htmlUrl="https://neveryu.github.io/"/>
<outline type="rss" text="尼古拉斯.赵四" title="尼古拉斯.赵四" xmlUrl="http://www.wjdiankong.cn/feed" htmlUrl="http://www.wjdiankong.cn/"/>
<outline type="rss" text="泥瓦匠BYSocket" title="泥瓦匠BYSocket" xmlUrl="https://www.bysocket.com/feed" htmlUrl="http://www.bysocket.com/"/>
<outline type="rss" text="鸟窝" title="鸟窝" xmlUrl="https://colobu.com/atom.xml" htmlUrl="http://colobu.com/"/>
<outline type="rss" text="Nicholas Ren's Blog" title="Nicholas Ren's Blog" xmlUrl="http://nicholas.ren/feed.xml" htmlUrl="http://nicholas.ren/"/>
<outline type="rss" text="聂同学" title="聂同学" xmlUrl="http://nielinjie.github.io/atom.xml" htmlUrl="http://nielinjie.github.io/"/>
<outline type="rss" text="NingG.github.com" title="NingG.github.com" xmlUrl="http://ningg.top/atom.xml" htmlUrl="http://ningg.github.com/"/>
<outline type="rss" text="牛頓工作室 NewtonStudio" title="牛頓工作室 NewtonStudio" xmlUrl="http://tw.newtonstudio.com/?feed=rss2" htmlUrl="http://tw.newtonstudio.com/"/>
<outline type="rss" text="NO END FOR LEARNING" title="NO END FOR LEARNING" xmlUrl="http://benweizhu.github.io/atom.xml" htmlUrl="http://benweizhu.github.io/"/>
<outline type="rss" text="Node.js Blog" title="Node.js Blog" xmlUrl="https://nodejs.org/en/feed/blog.xml" htmlUrl="http://blog.nodejs.org/"/>
<outline type="rss" text="nonozone.net" title="nonozone.net" xmlUrl="http://www.nonozone.net/feed" htmlUrl="http://www.nonozone.net/"/>
<outline type="rss" text="Not Enough Forever" title="Not Enough Forever" xmlUrl="http://www.doesbetter.com/feed/" htmlUrl="http://www.doesbetter.com/"/>
<outline type="rss" text="NSHipster中国" title="NSHipster中国" xmlUrl="https://nshipster.cn/feed.xml" htmlUrl="https://nshipster.cn/"/>
<outline type="rss" text="null" title="null" xmlUrl="https://www.hifreud.com/feed.xml" htmlUrl="http://www.hifreud.com/"/>
<outline type="rss" text="oldj's blog" title="oldj's blog" xmlUrl="https://oldj.net/feed" htmlUrl="http://oldj.net/"/>
<outline type="rss" text="OneCoder" title="OneCoder" xmlUrl="http://www.coderli.com/atom.xml" htmlUrl="http://www.coderli.com/"/>
<outline type="rss" text="OneV's Den" title="OneV's Den" xmlUrl="https://onevcat.com/feed" htmlUrl="https://onevcat.com/"/>
<outline type="rss" text="OOPHP开源博客" title="OOPHP开源博客" xmlUrl="https://www.oophp.cn/feed" htmlUrl="http://www.oophp.cn/"/>
<outline type="rss" text="Oracle数据库服务热线:400-690-3643 诗檀软件 » – Oracle数据库数据恢复、性能优化来问问AskMaclean – 诗檀软件旗下网站" title="Oracle数据库服务热线:400-690-3643 诗檀软件 » – Oracle数据库数据恢复、性能优化来问问AskMaclean – 诗檀软件旗下网站" xmlUrl="https://www.askmaclean.com/feed" htmlUrl="http://www.askmaclean.com/"/>
<outline type="rss" text="OurMySQL" title="OurMySQL" xmlUrl="http://ourmysql.com/feed" htmlUrl="http://ourmysql.com/"/>
<outline type="rss" text="庞海礁的个人空间" title="庞海礁的个人空间" xmlUrl="http://www.olinone.com/?feed=rss2" htmlUrl="http://www.olinone.com/"/>
<outline type="rss" text="胖子博客" title="胖子博客" xmlUrl="https://thinkerchan.com/atom.xml" htmlUrl="http://thinkerchan.com/"/>
<outline type="rss" text="Parallel Labs" title="Parallel Labs" xmlUrl="http://www.parallellabs.com/feed/" htmlUrl="http://www.parallellabs.com/"/>
<outline type="rss" text="Performance | True mastery of any skill takes a lifetime" title="Performance | True mastery of any skill takes a lifetime" xmlUrl="https://androidperformance.com/atom.xml" htmlUrl="http://androidperformance.com/"/>
<outline type="rss" text="Personal Blog" title="Personal Blog" xmlUrl="http://huang-x-h.github.io/feed.xml" htmlUrl="http://huang-x-h.github.io/"/>
<outline type="rss" text="Personball's Blog" title="Personball's Blog" xmlUrl="http://personball.com/atom.xml" htmlUrl="http://personball.com/"/>
<outline type="rss" text="Phodal - Growth Engineer" title="Phodal - Growth Engineer" xmlUrl="https://www.phodal.com/blog/feeds/rss/" htmlUrl="https://www.phodal.com/"/>
<outline type="rss" text="Phoenix's island" title="Phoenix's island" xmlUrl="https://blog.phoenixlzx.com/atom.xml" htmlUrl="http://blog.phoenixlzx.com/"/>
<outline type="rss" text="PHPor 的Blog" title="PHPor 的Blog" xmlUrl="https://phpor.net/blog/feed" htmlUrl="http://phpor.net/blog"/>
<outline type="rss" text="Phpvar's Blog" title="Phpvar's Blog" xmlUrl="http://www.phpvar.com/feed" htmlUrl="http://www.phpvar.com/"/>
<outline type="rss" text="膘叔" title="膘叔" xmlUrl="http://neatstudio.com/rss.php" htmlUrl="http://neatstudio.com/"/>
<outline type="rss" text="平凡的世界" title="平凡的世界" xmlUrl="http://feed.ccvita.com" htmlUrl="http://www.ccvita.com/"/>
<outline type="rss" text="平凡之路" title="平凡之路" xmlUrl="http://blog.sinovale.com/feed" htmlUrl="http://blog.sinovale.com/"/>
<outline type="rss" text="苹果园子" title="苹果园子" xmlUrl="https://ipple.net/feed" htmlUrl="http://ipple.net/"/>
<outline type="rss" text="瓶子裡的小狐狸" title="瓶子裡的小狐狸" xmlUrl="https://szeching.com/rss/" htmlUrl="http://szeching.com/"/>
<outline type="rss" text="POCO C++ Libraries Blog" title="POCO C++ Libraries Blog" xmlUrl="https://pocoproject.org/blog/?feed=rss2" htmlUrl="http://pocoproject.org/blog"/>
<outline type="rss" text="Poison" title="Poison" xmlUrl="https://tianshuang.me/atom.xml" htmlUrl="https://tianshuang.me/"/>
<outline type="rss" text="polande" title="polande" xmlUrl="https://polande.com/feed/" htmlUrl="http://polande.com/"/>
<outline type="rss" text="PostgreSQL DBA" title="PostgreSQL DBA" xmlUrl="http://francs3.blog.163.com/rss/" htmlUrl="http://francs3.blog.163.com/"/>
<outline type="rss" text="Preferences" title="Preferences" xmlUrl="http://stormluke.me/atom.xml" htmlUrl="http://stormluke.me/"/>
<outline type="rss" text="Programming Challenges | MathBlog" title="Programming Challenges | MathBlog" xmlUrl="https://www.mathblog.dk/feed/" htmlUrl="http://www.mathblog.dk/programming-challenges/"/>
<outline type="rss" text="PSYcHiC" title="PSYcHiC" xmlUrl="http://www.quake0day.com/feed/rss" htmlUrl="http://www.quake0day.com/"/>
<outline type="rss" text="Python自动化运维" title="Python自动化运维" xmlUrl="http://www.opython.com/feed/rss/" htmlUrl="http://opython.com/"/>
<outline type="rss" text="Q.Y Zuo Believes" title="Q.Y Zuo Believes" xmlUrl="http://zuoqy.com/atom.xml" htmlUrl="http://zuoqy.com/"/>
<outline type="rss" text="qdsang" title="qdsang" xmlUrl="http://blog.qdsang.com/feed/" htmlUrl="http://blog.qdsang.com/"/>
<outline type="rss" text="奇虎360技术博客" title="奇虎360技术博客" xmlUrl="http://blogs.360.cn/rss.html" htmlUrl="http://blogs.360.cn/"/>
<outline type="rss" text="祁劲松的博客" title="祁劲松的博客" xmlUrl="https://jamesqi.com/rss.xml" htmlUrl="http://jamesqi.com/"/>
<outline type="rss" text="奇遇观察" title="奇遇观察" xmlUrl="https://www.ueview.com/?feed=rss2" htmlUrl="http://www.ueview.com/"/>
<outline type="rss" text="七月的夏天" title="七月的夏天" xmlUrl="http://julyclyde.org/?feed=rss2" htmlUrl="http://julyclyde.org/"/>
<outline type="rss" text="前端观察" title="前端观察" xmlUrl="https://www.qianduan.net/rss/" htmlUrl="http://www.qianduan.net/"/>
<outline type="rss" text="前端集合" title="前端集合" xmlUrl="http://feeds2.feedburner.com/twetw/" htmlUrl="http://geek100.com/"/>
<outline type="rss" text="千夜" title="千夜" xmlUrl="http://70data.net/feed/" htmlUrl="http://70data.net/"/>
<outline type="rss" text="桥心博客 / Blog" title="桥心博客 / Blog" xmlUrl="https://www.shuangjiuhengyi.com/feed/" htmlUrl="http://www.shuangjiuhengyi.com/"/>
<outline type="rss" text="Qimu's Code and Life | 郑淇木的代码及日常" title="Qimu's Code and Life | 郑淇木的代码及日常" xmlUrl="https://zhengqm.github.io/atom.xml" htmlUrl="http://zhengqm.github.io/"/>
<outline type="rss" text="轻薄" title="轻薄" xmlUrl="http://qingbob.com/feed.xml" htmlUrl="http://qingbob.com/"/>
<outline type="rss" text="清风不识字" title="清风不识字" xmlUrl="https://www.ttupp.com/feed/" htmlUrl="https://www.3ewl.cc/"/>
<outline type="rss" text="青鱼博客" title="青鱼博客" xmlUrl="https://qingyu.me/feed/" htmlUrl="http://www.qingyu.me/"/>
<outline type="rss" text="穷折腾" title="穷折腾" xmlUrl="http://blog.zorro.im/rss.xml" htmlUrl="http://blog.zorro.im/"/>
<outline type="rss" text="区长的专栏 - CSDN博客" title="区长的专栏 - CSDN博客" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/sbsujjbcy"/>
<outline type="rss" text="屈定’s Blog" title="屈定’s Blog" xmlUrl="https://mrdear.cn/atom.xml" htmlUrl="https://mrdear.cn/"/>
<outline type="rss" text="去更远的地方" title="去更远的地方" xmlUrl="https://www.iteye.com/rss" htmlUrl="http://mirroravatar.iteye.com/"/>
<outline type="rss" text="quding0308的博客" title="quding0308的博客" xmlUrl="https://www.iteye.com/rss" htmlUrl="http://quding0308.iteye.com/"/>
<outline type="rss" text="Ragnarok Note" title="Ragnarok Note" xmlUrl="http://ragnraok.github.io/feeds/atom.xml" htmlUrl="http://ragnraok.github.io/"/>
<outline type="rss" text="Rainbird的个人博客" title="Rainbird的个人博客" xmlUrl="https://blog.cnrainbird.com/index.php/feed/" htmlUrl="http://blog.cnrainbird.com/"/>
<outline type="rss" text="Rainy's Blog" title="Rainy's Blog" xmlUrl="http://rainylog.com/atom.xml" htmlUrl="http://rainylog.com/"/>
<outline type="rss" text="rainy.im" title="rainy.im" xmlUrl="http://blog.rainy.im/feeds/all.atom.xml" htmlUrl="http://blog.rainy.im/"/>
<outline type="rss" text="让我靠近你,我的宝贝" title="让我靠近你,我的宝贝" xmlUrl="http://blog.sina.com.cn/rss/1571372175.xml" htmlUrl="http://blog.sina.com.cn/gsh85"/>
<outline type="rss" text="Rect Notes" title="Rect Notes" xmlUrl="https://shadowkong.com/feed" htmlUrl="http://shadowkong.com/"/>
<outline type="rss" text="Recurrent Neural Networks Tutorial, Part 1 – Introduction to RNNs – WildML" title="Recurrent Neural Networks Tutorial, Part 1 – Introduction to RNNs – WildML" xmlUrl="http://www.wildml.com/feed/" htmlUrl="http://www.wildml.com/2015/09/recurrent-neural-networks-tutorial-part-1-introduction-to-rnns/"/>
<outline type="rss" text="Reid Hoffman" title="Reid Hoffman" xmlUrl="https://www.reidhoffman.org/feed/" htmlUrl="http://reidhoffman.org/"/>
<outline type="rss" text="Relex" title="Relex" xmlUrl="https://relex.me/rss/" htmlUrl="http://relex.me/"/>
<outline type="rss" text="relunctance_viruse的博客" title="relunctance_viruse的博客" xmlUrl="http://blog.sina.com.cn/rss/2179459874.xml" htmlUrl="http://blog.sina.com.cn/u/2179459874"/>
<outline type="rss" text="人人都是产品经理" title="人人都是产品经理" xmlUrl="http://www.woshipm.com/?feed=rss2" htmlUrl="http://www.woshipm.com/"/>
<outline type="rss" text="任玉刚 - CSDN博客" title="任玉刚 - CSDN博客" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/singwhatiwanna"/>
<outline type="rss" text="人月神话的博客" title="人月神话的博客" xmlUrl="http://blog.sina.com.cn/rss/1228571733.xml" htmlUrl="http://blog.sina.com.cn/cmmi"/>
<outline type="rss" text="Reverland的行知阁" title="Reverland的行知阁" xmlUrl="http://reverland.org/archive.xml" htmlUrl="http://reverland.org/"/>
<outline type="rss" text="RIA爱好者" title="RIA爱好者" xmlUrl="http://riafan.com/feed/" htmlUrl="http://www.riafan.com/"/>
<outline type="rss" text="戎码一生" title="戎码一生" xmlUrl="https://rongmayisheng.com/?feed=rss2" htmlUrl="http://rongmayisheng.com/"/>
<outline type="rss" text="肉壳的胡思八道" title="肉壳的胡思八道" xmlUrl="https://colinzhang.com/feed/" htmlUrl="http://colinzhang.com/"/>
<outline type="rss" text="RTFSC" title="RTFSC" xmlUrl="http://hazirguo.github.io/atom.xml" htmlUrl="http://hazirguo.github.io/"/>
<outline type="rss" text="软件测试小兵的博客" title="软件测试小兵的博客" xmlUrl="http://blog.sina.com.cn/rss/1738268182.xml" htmlUrl="http://blog.sina.com.cn/bwftesting"/>
<outline type="rss" text="阮一峰的网络日志" title="阮一峰的网络日志" xmlUrl="http://feeds.feedburner.com/ruanyifeng" htmlUrl="http://www.ruanyifeng.com/blog/"/>
<outline type="rss" text="Run - 学习练习复习" title="Run - 学习练习复习" xmlUrl="http://blog.chromev.com/feed/" htmlUrl="http://blog.chromev.com/"/>
<outline type="rss" text="runforever" title="runforever" xmlUrl="http://runforever.github.io/atom.xml" htmlUrl="http://runforever.github.io/"/>
<outline type="rss" text="Ruqi's Log" title="Ruqi's Log" xmlUrl="https://liruqi.info/rss" htmlUrl="http://liruqi.info/"/>
<outline type="rss" text="Ryan's zone" title="Ryan's zone" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/ryantang03"/>
<outline type="rss" text="Ryan Yang" title="Ryan Yang" xmlUrl="https://fuckcloudnative.io/index.xml" htmlUrl="https://www.yangcs.net/"/>
<outline type="rss" text="SadieYu" title="SadieYu" xmlUrl="http://blog.sina.com.cn/rss/3167337765.xml" htmlUrl="http://blog.sina.com.cn/sadieyucn"/>
<outline type="rss" text="Samaritans博客园" title="Samaritans博客园" xmlUrl="https://www.cnblogs.com/dolphinX/rss" htmlUrl="http://www.cnblogs.com/dolphinX/"/>
<outline type="rss" text="SamirChen" title="SamirChen" xmlUrl="http://www.samirchen.com/atom.xml" htmlUrl="http://www.samirchen.com/"/>
<outline type="rss" text="Samson's Weblog" title="Samson's Weblog" xmlUrl="http://blog.samsonis.me/feed/" htmlUrl="http://blog.samsonis.me/"/>
<outline type="rss" text="三石·道" title="三石·道" xmlUrl="http://www.molotang.com/feed" htmlUrl="http://www.molotang.com/"/>
<outline type="rss" text="三叔带你看世界" title="三叔带你看世界" xmlUrl="https://ccava.cc/feed" htmlUrl="https://www.ccava.cc/"/>
<outline type="rss" text="三水清" title="三水清" xmlUrl="https://js8.in/atom.xml" htmlUrl="http://js8.in/"/>
<outline type="rss" text="saymagic's blog" title="saymagic's blog" xmlUrl="https://blog.saymagic.cn/pages/atom.xml" htmlUrl="http://blog.saymagic.cn/"/>
<outline type="rss" text="Seaborn Lee" title="Seaborn Lee" xmlUrl="http://www.seabornlee.cn/feed/" htmlUrl="http://www.seabornlee.cn/"/>
<outline type="rss" text="SELinux+" title="SELinux+" xmlUrl="http://www.selinuxplus.com/?feed=rss2" htmlUrl="http://www.selinuxplus.com/"/>
<outline type="rss" text="SEO每天一贴" title="SEO每天一贴" xmlUrl="https://www.seozac.com/feed/" htmlUrl="http://www.seozac.com/"/>
<outline type="rss" text="Sezina" title="Sezina" xmlUrl="https://www.sezina.io/atom.xml" htmlUrl="http://sezina.github.com/"/>
<outline type="rss" text="SFLYQ" title="SFLYQ" xmlUrl="http://sflaqiu.github.io /feed.xml" htmlUrl="http://sflaqiu.github.io/"/>
<outline type="rss" text="山炮不二" title="山炮不二" xmlUrl="https://xsinger.me/feed/" htmlUrl="http://xsinger.me/"/>
<outline type="rss" text="山水寨" title="山水寨" xmlUrl="http://www.shaynez.com/feed" htmlUrl="http://www.shaynez.com/"/>
<outline type="rss" text="闪星空间" title="闪星空间" xmlUrl="https://shansing.com/feed/" htmlUrl="https://shansing.com/"/>
<outline type="rss" text="伤逝的安详" title="伤逝的安详" xmlUrl="https://www.ssdax.com/?feed=rss2" htmlUrl="https://www.ssdax.com/"/>
<outline type="rss" text="少数派" title="少数派" xmlUrl="https://sspai.com/feed" htmlUrl="http://sspai.com/feed"/>
<outline type="rss" text="邵珠庆の博客" title="邵珠庆の博客" xmlUrl="http://shaozhuqing.com/?feed=rss2" htmlUrl="http://shaozhuqing.com/"/>
<outline type="rss" text="ShareHub" title="ShareHub" xmlUrl="https://blog.xiaohansong.com//atom.xml" htmlUrl="http://blog.xiaohansong.com//"/>
<outline type="rss" text="设计达人" title="设计达人" xmlUrl="http://www.shejidaren.com/feed" htmlUrl="http://www.shejidaren.com/"/>
<outline type="rss" text="神代綺凜" title="神代綺凜" xmlUrl="https://moe.best/feed/" htmlUrl="https://moe.best/cross.html"/>
<outline type="rss" text="沈拓:移动互联网与转型" title="沈拓:移动互联网与转型" xmlUrl="http://blog.sina.com.cn/rss/1420827854.xml" htmlUrl="http://blog.sina.com.cn/solonshen"/>
<outline type="rss" text="神仙的仙居" title="神仙的仙居" xmlUrl="http://xiezhenye.com/feed" htmlUrl="http://xiezhenye.com/"/>
<outline type="rss" text="深圳技师学院 | 电子信息技术系" title="深圳技师学院 | 电子信息技术系" xmlUrl="http://www.helloit.info/rss.xml" htmlUrl="http://www.helloit.info/"/>
<outline type="rss" text="生活茶馆儿" title="生活茶馆儿" xmlUrl="https://baiyunpeng.com/?feed=rss2" htmlUrl="http://baiyunpeng.com/"/>
<outline type="rss" text="生活志" title="生活志" xmlUrl="http://louishan.com/feed" htmlUrl="http://louishan.com/"/>
<outline type="rss" text="世风十三" title="世风十三" xmlUrl="https://wind13.lofter.com/rss" htmlUrl="http://wind13.lofter.com/"/>
<outline type="rss" text="时光立方" title="时光立方" xmlUrl="http://cuikai-wh.com/feed.asp" htmlUrl="http://cuikai-wh.com/"/>
<outline type="rss" text="時計坂一刻館三号室" title="時計坂一刻館三号室" xmlUrl="https://quchao.com/feed/" htmlUrl="http://www.quchao.com/"/>
<outline type="rss" text="十年踪迹的博客" title="十年踪迹的博客" xmlUrl="https://www.h5jun.com/rss.html" htmlUrl="https://www.h5jun.com/"/>
<outline type="rss" text="时鹏亮的blog" title="时鹏亮的blog" xmlUrl="https://pugs.blogs.com/pugs/atom.xml" htmlUrl="https://pugs.blogs.com/"/>
<outline type="rss" text="师少兵博客" title="师少兵博客" xmlUrl="https://www.xiabingbao.com/atom.xml" htmlUrl="https://www.xiabingbao.com/"/>
<outline type="rss" text="石头哥哥的个人页面" title="石头哥哥的个人页面" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/chenleijava"/>
<outline type="rss" text="嗜血星空earth" title="嗜血星空earth" xmlUrl="https://sxxkearth.github.io/atom.xml" htmlUrl="https://sxxkearth.github.io/"/>
<outline type="rss" text="始终" title="始终" xmlUrl="https://liam.page/atom.xml" htmlUrl="http://liam0205.me/"/>
<outline type="rss" text="曙光博客" title="曙光博客" xmlUrl="https://www.ezloo.com/atom.xml" htmlUrl="http://www.ezloo.com/"/>
<outline type="rss" text="树叶的BLOG" title="树叶的BLOG" xmlUrl="https://www.shuyz.com/atom.xml" htmlUrl="http://www.shuyz.com/"/>
<outline type="rss" text="书写|记下人生痕迹" title="书写|记下人生痕迹" xmlUrl="http://towriting.com/atom.xml" htmlUrl="http://towriting.com/"/>
<outline type="rss" text="帅虫哥的博客" title="帅虫哥的博客" xmlUrl="https://www.cnblogs.com/vipyoumay/rss" htmlUrl="https://www.cnblogs.com/vipyoumay/"/>
<outline type="rss" text="双霍记" title="双霍记" xmlUrl="http://feed.feedsky.com/doublehuo" htmlUrl="http://imhuo.com/"/>
<outline type="rss" text="斯巴达第二季" title="斯巴达第二季" xmlUrl="http://donghao.org/feed/" htmlUrl="http://blog.donghao.org/"/>
<outline type="rss" text="四号程序员" title="四号程序员" xmlUrl="https://www.coder4.com/feed" htmlUrl="http://www.coder4.com/"/>
<outline type="rss" text="四火的唠叨" title="四火的唠叨" xmlUrl="https://www.raychase.net/feed" htmlUrl="http://www.raychase.net/"/>
<outline type="rss" text="思绪的空中生活" title="思绪的空中生活" xmlUrl="https://sixu.life/feed/" htmlUrl="https://sixu.life/"/>
<outline type="rss" text="Silent River" title="Silent River" xmlUrl="http://www.justinablog.com/feed" htmlUrl="http://www.justinablog.com/"/>
<outline type="rss" text="Silhouette" title="Silhouette" xmlUrl="http://www.dreamingfish123.info/?feed=rss2" htmlUrl="http://www.dreamingfish123.info/"/>
<outline type="rss" text="SilverLining’s Blog" title="SilverLining’s Blog" xmlUrl="https://zhum.in/?feed=rss" htmlUrl="https://zhum.in/blog/"/>
<outline type="rss" text="simmone的博客" title="simmone的博客" xmlUrl="http://blog.sina.com.cn/rss/1401771454.xml" htmlUrl="http://blog.sina.com.cn/simmone"/>
<outline type="rss" text="SimonSu" title="SimonSu" xmlUrl="http://tsov.net/feed/" htmlUrl="http://tsov.net/"/>
<outline type="rss" text="SIMPLE DEVELOPER" title="SIMPLE DEVELOPER" xmlUrl="http://simpledeveloper.com/feed/" htmlUrl="http://simpledeveloper.com/"/>
<outline type="rss" text="SingleX" title="SingleX" xmlUrl="http://www.singlex.net/feed" htmlUrl="http://www.singlex.net/"/>
<outline type="rss" text="Sino Francisco" title="Sino Francisco" xmlUrl="http://stephenwang.com/b/feed/" htmlUrl="http://stephenwang.com/b"/>
<outline type="rss" text="Sivan's Blog" title="Sivan's Blog" xmlUrl="http://lightcss.com/feed/" htmlUrl="http://lightcss.com/"/>
<outline type="rss" text="skidu" title="skidu" xmlUrl="https://www.skidu.me/feed/" htmlUrl="http://www.skidu.me/"/>
<outline type="rss" text="Skydark's blog" title="Skydark's blog" xmlUrl="http://blog.skydark.info/" htmlUrl="http://blog.skydark.info/"/>
<outline type="rss" text="Skymoon" title="Skymoon" xmlUrl="https://www.skymoon.biz/feed/" htmlUrl="http://www.skymoon.biz/"/>
<outline type="rss" text="slient plant" title="slient plant" xmlUrl="http://mpwang.github.io/atom.xml" htmlUrl="http://mpwang.github.io/"/>
<outline type="rss" text="Solarex's Blog" title="Solarex's Blog" xmlUrl="http://solarex.github.io/atom.xml" htmlUrl="http://solarex.github.io/"/>
<outline type="rss" text="SoleilNeon's Blog" title="SoleilNeon's Blog" xmlUrl="http://www.soleilneon.com/blog/feed/" htmlUrl="http://www.soleilneon.com/blog"/>
<outline type="rss" text="Soooldier's World - 时光,浓淡相宜;人心,远近相安。" title="Soooldier's World - 时光,浓淡相宜;人心,远近相安。" xmlUrl="http://www.soooldier.com/atom.xml" htmlUrl="http://www.soooldier.com/"/>
<outline type="rss" text="Storm Spirit" title="Storm Spirit" xmlUrl="http://wulfric.me/feed.xml" htmlUrl="http://wulfric.me/"/>
<outline type="rss" text="苏岳宁博客" title="苏岳宁博客" xmlUrl="http://suyuening.com/feed" htmlUrl="http://suyuening.com/"/>
<outline type="rss" text="Sugr | Wi-Fi speaker for streaming and sharing online music" title="Sugr | Wi-Fi speaker for streaming and sharing online music" xmlUrl="http://www.sugrsugr.com/index.php/feed/" htmlUrl="http://www.sugrsugr.com/"/>
<outline type="rss" text="岁寒" title="岁寒" xmlUrl="https://lvwenhan.com/rss.php" htmlUrl="http://lvwenhan.com/"/>
<outline type="rss" text="sunnyu" title="sunnyu" xmlUrl="http://www.sunnyu.com/?feed=rss2" htmlUrl="http://www.sunnyu.com/"/>
<outline type="rss" text="Sunnyxx" title="Sunnyxx" xmlUrl="http://blog.sunnyxx.com/atom.xml" htmlUrl="http://blog.sunnyxx.com/"/>
<outline type="rss" text="Sutter’s Mill" title="Sutter’s Mill" xmlUrl="https://herbsutter.com/feed/" htmlUrl="http://herbsutter.com/"/>
<outline type="rss" text="SwiftGG" title="SwiftGG" xmlUrl="http://swift.gg/atom.xml" htmlUrl="http://swift.gg/"/>
<outline type="rss" text="SwiftGG" title="SwiftGG" xmlUrl="https://pages.swift.gg/atom.xml" htmlUrl="http://swiftggteam.github.io/"/>
<outline type="rss" text="SylvanasSun Blog" title="SylvanasSun Blog" xmlUrl="https://sylvanassun.github.io/atom.xml" htmlUrl="http://sylvanassun.github.io/sylvanassun.github.io/"/>
<outline type="rss" text="太阳日志" title="太阳日志" xmlUrl="https://www.sunjw.us/blog/feed/" htmlUrl="http://www.sunjw.us/blog"/>
<outline type="rss" text="糖醋排骨" title="糖醋排骨" xmlUrl="https://interjc.net/feed" htmlUrl="http://interjc.net/"/>
<outline type="rss" text="唐巧的技术博客" title="唐巧的技术博客" xmlUrl="http://blog.devtang.com/atom.xml" htmlUrl="http://blog.devtang.com/"/>
<outline type="rss" text="唐尤华 - 博客园" title="唐尤华 - 博客园" xmlUrl="https://www.cnblogs.com/tangyouhua/rss" htmlUrl="http://www.cnblogs.com/tangyouhua/"/>
<outline type="rss" text="淘宝 FED" title="淘宝 FED" xmlUrl="http://taobaofed.org/atom.xml" htmlUrl="http://taobaofed.org/"/>
<outline type="rss" text="Taobao FED | 淘宝前端团队" title="Taobao FED | 淘宝前端团队" xmlUrl="https://fed.taobao.org/atom.xml" htmlUrl="https://fed.taobao.org/"/>
<outline type="rss" text="TaterLi's 个人博客" title="TaterLi's 个人博客" xmlUrl="https://www.lijingquan.net/feed/" htmlUrl="http://www.lijingquan.net/"/>
<outline type="rss" text="TBlog" title="TBlog" xmlUrl="http://yangyingchao.github.io/feed.xml" htmlUrl="http://yangyingchao.github.io/"/>
<outline type="rss" text="Tech Notes" title="Tech Notes" xmlUrl="https://tech.tjs.im/atom.xml" htmlUrl="http://tech.tjs.im/"/>
<outline type="rss" text="Tech Otaku" title="Tech Otaku" xmlUrl="https://blog.ianli.xyz/index.xml" htmlUrl="http://www.techotaku.net/"/>
<outline type="rss" text="Ted’s Blog" title="Ted’s Blog" xmlUrl="http://tedhacker.top/atom.xml" htmlUrl="http://tedhacker.top/"/>
<outline type="rss" text="腾讯 AlloyTeam" title="腾讯 AlloyTeam" xmlUrl="http://www.alloyteam.com/feed/" htmlUrl="http://www.alloyteam.com/"/>
<outline type="rss" text="腾讯CDC" title="腾讯CDC" xmlUrl="https://cdc.tencent.com/feed/rss/" htmlUrl="http://cdc.tencent.com/"/>
<outline type="rss" text="腾讯MXD" title="腾讯MXD" xmlUrl="http://mxd.tencent.com/?feed=rss" htmlUrl="http://mxd.tencent.com/"/>
<outline type="rss" text="The-duke的个人空间" title="The-duke的个人空间" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/wbo0801"/>
<outline type="rss" text="The Effective Engineer" title="The Effective Engineer" xmlUrl="http://www.effectiveengineer.com/atom.xml" htmlUrl="http://www.theeffectiveengineer.com/blog"/>
<outline type="rss" text="the5fire的技术博客" title="the5fire的技术博客" xmlUrl="http://www.the5fire.com/feed/" htmlUrl="http://www.the5fire.com/"/>
<outline type="rss" text="TheCodeWay:我的博客" title="TheCodeWay:我的博客" xmlUrl="https://thecodeway.com/blog/?feed=rss2" htmlUrl="http://thecodeway.com/blog"/>
<outline type="rss" text="ThinkGem" title="ThinkGem" xmlUrl="https://www.iteye.com/rss" htmlUrl="http://thinkgem.iteye.com/"/>
<outline type="rss" text="Thinking in Crowd / 鹄思乱想" title="Thinking in Crowd / 鹄思乱想" xmlUrl="http://www.thinkingincrowd.me/atom.xml" htmlUrl="http://www.thinkingincrowd.me/"/>
<outline type="rss" text="ThinkPC" title="ThinkPC" xmlUrl="http://blog.sina.com.cn/rss/1424963977.xml" htmlUrl="http://blog.sina.com.cn/thinkpc"/>
<outline type="rss" text="Thoughts About Various Backend Development Topics" title="Thoughts About Various Backend Development Topics" xmlUrl="http://korhner.github.io/feed.xml" htmlUrl="http://korhner.github.io/"/>
<outline type="rss" text="ThoughtWorks洞见" title="ThoughtWorks洞见" xmlUrl="https://insights.thoughtworks.cn/feed/" htmlUrl="https://insights.thoughtworks.cn/"/>
<outline type="rss" text="天地孤影任我行" title="天地孤影任我行" xmlUrl="http://blog.rootk.com/feed" htmlUrl="http://blog.rootk.com/"/>
<outline type="rss" text="天地一MADAO的个人空间" title="天地一MADAO的个人空间" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/tdONEmadao"/>
<outline type="rss" text="田加国 | 전가국 | GUOGUO" title="田加国 | 전가국 | GUOGUO" xmlUrl="http://www.tianjiaguo.com/feed/" htmlUrl="http://www.tianjiaguo.com/"/>
<outline type="rss" text="田麦" title="田麦" xmlUrl="https://www.iteye.com/rss" htmlUrl="http://yueyemaitian.iteye.com/"/>
<outline type="rss" text="天使羊波波闪耀光芒" title="天使羊波波闪耀光芒" xmlUrl="http://www.live-in.org/feed" htmlUrl="http://www.live-in.org/"/>
<outline type="rss" text="天缘博客" title="天缘博客" xmlUrl="http://www.metsky.com/feed.php?atom" htmlUrl="http://www.metsky.com/"/>
<outline type="rss" text="天云软件_北京天云融创_云计算_云平台" title="天云软件_北京天云融创_云计算_云平台" xmlUrl="http://www.skycloudsoftware.com/index.php/feed" htmlUrl="http://www.skyform.com.cn/"/>
<outline type="rss" text="tiankonguse blog" title="tiankonguse blog" xmlUrl="http://github.tiankonguse.com/atom.xml" htmlUrl="http://tiankonguse.github.io/"/>
<outline type="rss" text="铁蕾的个人博客" title="铁蕾的个人博客" xmlUrl="http://zhangtielei.com/atom.xml" htmlUrl="http://zhangtielei.com/"/>
<outline type="rss" text="TimothyQiu's Blog" title="TimothyQiu's Blog" xmlUrl="https://timothyqiu.com/feed/" htmlUrl="http://timothyqiu.com/"/>
<outline type="rss" text="汀香水榭" title="汀香水榭" xmlUrl="http://wuguoren.com/feed/" htmlUrl="http://wuguoren.com/"/>
<outline type="rss" text="听雨~昨夜卧听风吹雨,不若相忘于江湖。" title="听雨~昨夜卧听风吹雨,不若相忘于江湖。" xmlUrl="http://cssor.com/feed" htmlUrl="http://cssor.com/"/>
<outline type="rss" text="tmyam's blog" title="tmyam's blog" xmlUrl="http://tmyam.github.io/atom.xml" htmlUrl="http://tmyam.github.io/"/>
<outline type="rss" text="统计之都" title="统计之都" xmlUrl="http://cos.name/feed/" htmlUrl="http://cos.name/"/>
<outline type="rss" text="通天塔" title="通天塔" xmlUrl="https://sb.sb/atom.xml" htmlUrl="https://ttt.tt/"/>
<outline type="rss" text="Tony Bai" title="Tony Bai" xmlUrl="https://tonybai.com/feed/" htmlUrl="http://tonybai.com/"/>
<outline type="rss" text="Tricky Android" title="Tricky Android" xmlUrl="https://trickyandroid.com/rss/" htmlUrl="http://trickyandroid.com/"/>
<outline type="rss" text="Trinea" title="Trinea" xmlUrl="https://www.trinea.cn/feed/" htmlUrl="http://www.trinea.cn/"/>
<outline type="rss" text="屠城" title="屠城" xmlUrl="https://www.haomwei.com/atom.xml" htmlUrl="http://haomwei.com/"/>
<outline type="rss" text="土土哥的技术Blog" title="土土哥的技术Blog" xmlUrl="http://tutuge.me/atom.xml" htmlUrl="http://tutuge.me/"/>
<outline type="rss" text="脱线道士维克多" title="脱线道士维克多" xmlUrl="http://wjp2013.github.io/feed.xml" htmlUrl="http://wjp2013.github.io/"/>
<outline type="rss" text="TW洞见" title="TW洞见" xmlUrl="http://insights.thoughtworkers.org/feed/" htmlUrl="http://insights.thoughtworkers.org/"/>
<outline type="rss" text="Tyler Xing" title="Tyler Xing" xmlUrl="http://cnborn.net/blog/" htmlUrl="http://cnborn.net/blog/"/>
<outline type="rss" text="typeof.net" title="typeof.net" xmlUrl="https://typeof.net/atom.xml" htmlUrl="http://typeof.net/index.html"/>
<outline type="rss" text="UCD大社区" title="UCD大社区" xmlUrl="http://ucdchina.com/rss/all" htmlUrl="http://ucdchina.com/"/>
<outline type="rss" text="uko的博客---量化交易" title="uko的博客---量化交易" xmlUrl="http://blog.sina.com.cn/rss/2321482330.xml" htmlUrl="http://blog.sina.com.cn/hfttrade"/>
<outline type="rss" text="ukonline2000's blog" title="ukonline2000's blog" xmlUrl="http://ukonline2000.com/?feed=rss2" htmlUrl="http://ukonline2000.com/"/>
<outline type="rss" text="Ultramarine" title="Ultramarine" xmlUrl="https://gerhut.me/rss/" htmlUrl="http://gerhut.me/"/>
<outline type="rss" text="Uncle Chen" title="Uncle Chen" xmlUrl="http://unclechen.github.io/atom.xml" htmlUrl="http://unclechen.github.io/"/>
<outline type="rss" text="undefined" title="undefined" xmlUrl="http://undefinedblog.com/atom.xml" htmlUrl="http://undefinedblog.com/"/>
<outline type="rss" text="UNIX类 IT技术博客" title="UNIX类 IT技术博客" xmlUrl="http://www.myfreelinux.com/?feed=rss2" htmlUrl="http://www.myfreelinux.com/"/>
<outline type="rss" text="Untitled RSS Feed" title="Untitled RSS Feed" xmlUrl="http://fuzhijie.me/elegant_designer-cat-furniture/new_designer-cat-furniture-contemporary-for-urban-pet-lover-home-feed" htmlUrl="http://www.fuzhijie.me/"/>
<outline type="rss" text="UPYUN Engineering Blog" title="UPYUN Engineering Blog" xmlUrl="http://io.upyun.com/feed.xml" htmlUrl="http://io.upyun.com/"/>
<outline type="rss" text="VAG" title="VAG" xmlUrl="http://www.cad.zju.edu.cn/home/vagblog/?feed=rss2" htmlUrl="http://www.cad.zju.edu.cn/home/vagblog"/>
<outline type="rss" text="vB·流水账" title="vB·流水账" xmlUrl="https://www.vsean.net/feed/" htmlUrl="http://vsean.net/blog/"/>
<outline type="rss" text="VeryCB" title="VeryCB" xmlUrl="https://verycb.me/feed.xml" htmlUrl="http://verycb.me/"/>
<outline type="rss" text="Villim Wong" title="Villim Wong" xmlUrl="http://villim.github.io/atom.xml" htmlUrl="http://villim.github.io/"/>
<outline type="rss" text="VinnyXiong’s Notes" title="VinnyXiong’s Notes" xmlUrl="http://vinnyxiong.cn/atom.xml" htmlUrl="http://vinnyxiong.cn/"/>
<outline type="rss" text="Visual C++ Team Blog" title="Visual C++ Team Blog" xmlUrl="https://devblogs.microsoft.com/cppblog/feed/" htmlUrl="http://blogs.msdn.com/b/vcblog/"/>
<outline type="rss" text="VMCD.ORG" title="VMCD.ORG" xmlUrl="http://www.vmcd.org/feed/" htmlUrl="http://www.vmcd.org/"/>
<outline type="rss" text="VongLo's Dev Space" title="VongLo's Dev Space" xmlUrl="https://vongloo.me/atom.xml" htmlUrl="http://wang9262.github.io/"/>
<outline type="rss" text="VPS侦探" title="VPS侦探" xmlUrl="https://www.vpser.net/feed" htmlUrl="http://www.vpser.net/"/>
<outline type="rss" text="VZ’s Blog" title="VZ’s Blog" xmlUrl="https://vinoit.me/feed/" htmlUrl="https://vinoit.me/"/>
<outline type="rss" text="W3CPlus" title="W3CPlus" xmlUrl="http://www.w3cplus.com/node?page=1&amp;feed=rss" htmlUrl="http://www.w3cplus.com/"/>
<outline type="rss" text="歪麦博客" title="歪麦博客" xmlUrl="https://www.awaimai.com/?feed=rss" htmlUrl="https://www.awaimai.com/"/>
<outline type="rss" text="Waiting For You" title="Waiting For You" xmlUrl="http://www.waitingfy.com/feed" htmlUrl="http://www.waitingfy.com/"/>
<outline type="rss" text="晚晴幽草轩" title="晚晴幽草轩" xmlUrl="https://www.jeffjade.com/atom.xml" htmlUrl="http://www.jeffjade.com/"/>
<outline type="rss" text="王登科-DK博客" title="王登科-DK博客" xmlUrl="https://greatdk.com/feed" htmlUrl="https://greatdk.com/"/>
<outline type="rss" text="Wang Lichao" title="Wang Lichao" xmlUrl="http://wanglichao.com" htmlUrl="http://0532.github.io/"/>
<outline type="rss" text="网络小鸽" title="网络小鸽" xmlUrl="http://blog.sina.com.cn/rss/1630399741.xml" htmlUrl="http://blog.sina.com.cn/dxs110"/>
<outline type="rss" text="网络寻租" title="网络寻租" xmlUrl="http://blog.linjunhalida.com/atom.xml" htmlUrl="http://halida.github.com/"/>
<outline type="rss" text="王森" title="王森" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/kelvinxupt"/>
<outline type="rss" text="网站分析在中国——从基础到前沿" title="网站分析在中国——从基础到前沿" xmlUrl="http://www.chinawebanalytics.cn/feed/" htmlUrl="http://www.chinawebanalytics.cn/"/>
<outline type="rss" text="王子亭的博客" title="王子亭的博客" xmlUrl="https://jysperm.me/atom.xml" htmlUrl="https://jysperm.me/"/>
<outline type="rss" text="Way Forever" title="Way Forever" xmlUrl="http://way4ever.com/?feed=rss2" htmlUrl="http://way4ever.com/"/>
<outline type="rss" text="wd and cc" title="wd and cc" xmlUrl="http://wdicc.com/atom.xml" htmlUrl="http://wdicc.com/"/>
<outline type="rss" text="WDK.PW-DK博客" title="WDK.PW-DK博客" xmlUrl="https://greatdk.com/feed" htmlUrl="http://www.wdk.pw/"/>
<outline type="rss" text="WEB骇客" title="WEB骇客" xmlUrl="http://www.webhek.com/feed/" htmlUrl="http://www.webhek.com/"/>
<outline type="rss" text="Web 平台和移动应用开发" title="Web 平台和移动应用开发" xmlUrl="http://www.tfan.org/feed/" htmlUrl="http://www.tfan.org/"/>
<outline type="rss" text="web前端,杭州小白的个人博客,小白的个人博客" title="web前端,杭州小白的个人博客,小白的个人博客" xmlUrl="http://www.xiaobai8.com/feed" htmlUrl="http://www.xiaobai8.com/"/>
<outline type="rss" text="WebUI框架使用参考" title="WebUI框架使用参考" xmlUrl="http://www.easyui.info/feed" htmlUrl="http://www.easyui.info/"/>
<outline type="rss" text="webzhao" title="webzhao" xmlUrl="https://webzhao.me/rss.xml" htmlUrl="https://webzhao.me/"/>
<outline type="rss" text="微风的网络日志" title="微风的网络日志" xmlUrl="http://leybreeze.com/blog/?feed=rss2" htmlUrl="http://leybreeze.com/blog"/>
<outline type="rss" text="未命名" title="未命名" xmlUrl="http://arganzheng.life/feed.xml" htmlUrl="http://arganzheng.life/"/>
<outline type="rss" text="未命名" title="未命名" xmlUrl="http://blog.leapoahead.com/atom.xml" htmlUrl="http://blog.leapoahead.com/"/>
<outline type="rss" text="Welsonla" title="Welsonla" xmlUrl="http://welsonla.timebot.net/atom.xml" htmlUrl="http://welsonla.timebot.net/"/>
<outline type="rss" text="温暖色调" title="温暖色调" xmlUrl="https://blog.warmcolor.net/feed/" htmlUrl="http://blog.warmcolor.net/"/>
<outline type="rss" text="WiFiDog - A Captive Portal Suit - 无线热点认证解决方案" title="WiFiDog - A Captive Portal Suit - 无线热点认证解决方案" xmlUrl="http://www.wifidog.pro/feed/" htmlUrl="http://www.wifidog.pro/"/>
<outline type="rss" text="Wilson's Blog" title="Wilson's Blog" xmlUrl="http://www.520608.com/rss/" htmlUrl="http://www.520608.com/"/>
<outline type="rss" text="Winguse's Blog" title="Winguse's Blog" xmlUrl="https://wingu.se/feed.xml" htmlUrl="https://winguse.com/"/>
<outline type="rss" text="wiwoo.com" title="wiwoo.com" xmlUrl="https://wiwoo.com/index.php?feed/atom" htmlUrl="http://wiwoo.com/"/>
<outline type="rss" text="wklken's blog" title="wklken's blog" xmlUrl="http://wklken.me/index.xml" htmlUrl="http://www.wklken.me/"/>
<outline type="rss" text="我爱自然语言处理" title="我爱自然语言处理" xmlUrl="http://www.52nlp.cn/feed" htmlUrl="http://www.52nlp.cn/"/>
<outline type="rss" text="我的站点" title="我的站点" xmlUrl="https://nanxiao.me/feed/" htmlUrl="http://nanxiao.me/"/>
<outline type="rss" text="我的BLOG" title="我的BLOG" xmlUrl="http://blog.sina.com.cn/rss/1257500882.xml" htmlUrl="http://blog.sina.com.cn/liuguiyou"/>
<outline type="rss" text="Wonderffee's Blog" title="Wonderffee's Blog" xmlUrl="http://wonderffee.github.io/atom.xml" htmlUrl="http://wonderffee.github.io/"/>
<outline type="rss" text="无标题" title="无标题" xmlUrl="http://blog.hakugyokurou.net/?feed=rss2" htmlUrl="http://blog.hakugyokurou.net/"/>
<outline type="rss" text="无标题" title="无标题" xmlUrl="http://yangbolin.cn/atom.xml" htmlUrl="http://yangbolin.cn/"/>
<outline type="rss" text="無標題文檔" title="無標題文檔" xmlUrl="https://www.gracecode.com/feed/" htmlUrl="http://www.gracecode.com/"/>
<outline type="rss" text="吴法吴天还吴聊" title="吴法吴天还吴聊" xmlUrl="http://satanwoo.github.io/atom.xml" htmlUrl="http://satanwoo.github.io/"/>
<outline type="rss" text="吴昊博客" title="吴昊博客" xmlUrl="https://blog.whsir.com/rsslatest.xml" htmlUrl="https://blog.whsir.com/"/>
<outline type="rss" text="无论何时,请保持学者的谦逊与宽容" title="无论何时,请保持学者的谦逊与宽容" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/kymjs"/>
<outline type="rss" text="无若" title="无若" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/crooner"/>
<outline type="rss" text="五四陈科学院" title="五四陈科学院" xmlUrl="http://www.54chen.com/feed" htmlUrl="http://www.54chen.com/"/>
<outline type="rss" text="吴小龙同學" title="吴小龙同學" xmlUrl="http://wuxiaolong.me/atom.xml" htmlUrl="http://wuxiaolong.me/"/>
<outline type="rss" text="吾志在丘的BLOG" title="吾志在丘的BLOG" xmlUrl="http://blog.sina.com.cn/rss/1221155353.xml" htmlUrl="http://blog.sina.com.cn/hellofrankey"/>
<outline type="rss" text="无主题博客" title="无主题博客" xmlUrl="https://wuzhuti.cn/feed" htmlUrl="http://wuzhuti.cn/"/>
<outline type="rss" text="wustrive's blog" title="wustrive's blog" xmlUrl="https://wustrive2008.github.io/atom.xml" htmlUrl="https://wustrive2008.github.io/"/>
<outline type="rss" text="www.blogways.net" title="www.blogways.net" xmlUrl="http://www.blogways.net/atom.xml" htmlUrl="http://www.blogways.net/"/>
<outline type="rss" text="www.caomaocao.com" title="www.caomaocao.com" xmlUrl="http://caomaocao.com/feed" htmlUrl="http://caomaocao.com/feed"/>
<outline type="rss" text="X-Space" title="X-Space" xmlUrl="https://blog.phpdr.net/feed" htmlUrl="http://blog.phpdr.net/"/>
<outline type="rss" text="惜分飞" title="惜分飞" xmlUrl="http://www.xifenfei.com/feed" htmlUrl="http://www.xifenfei.com/"/>
<outline type="rss" text="西枫里博客" title="西枫里博客" xmlUrl="https://www.anji66.net/rss.xml" htmlUrl="https://www.anji66.net/"/>
<outline type="rss" text="西秦公子部落格" title="西秦公子部落格" xmlUrl="https://www.ixiqin.com/feed/" htmlUrl="http://www.ixiqin.com/"/>
<outline type="rss" text="系统技术非业余研究" title="系统技术非业余研究" xmlUrl="http://blog.yufeng.info/feed" htmlUrl="http://blog.yufeng.info/"/>
<outline type="rss" text="稀土掘金" title="稀土掘金" xmlUrl="https://juejin.im/?feed=rss&amp;sort=popular" htmlUrl="http://gold.xitu.io/"/>
<outline type="rss" text="昔我往矣" title="昔我往矣" xmlUrl="http://xnow.me/feed/" htmlUrl="http://xnow.me/"/>
<outline type="rss" text="汐忆时空:CHIRS:蝶衣人生" title="汐忆时空:CHIRS:蝶衣人生" xmlUrl="http://zhoujin.com/feed.php" htmlUrl="http://zhoujin.com/index.php"/>
<outline type="rss" text="稀有猿诉" title="稀有猿诉" xmlUrl="http://toughcoder.net/atom.xml" htmlUrl="http://toughcoder.net/"/>
<outline type="rss" text="箱猫日和" title="箱猫日和" xmlUrl="http://blog.gssxgss.me/feed/" htmlUrl="http://blog.gssxgss.me/"/>
<outline type="rss" text="翔妖除魔的个人博客" title="翔妖除魔的个人博客" xmlUrl="https://sunxiang0918.cn/atom.xml" htmlUrl="http://sunxiang0918.github.io//"/>
<outline type="rss" text="笑遍世界" title="笑遍世界" xmlUrl="http://smilejay.com/feed/" htmlUrl="http://smilejay.com/"/>
<outline type="rss" text="萧宸宇" title="萧宸宇" xmlUrl="http://iiiyu.com/atom.xml" htmlUrl="http://iiiyu.com/"/>
<outline type="rss" text="小创作" title="小创作" xmlUrl="http://chriszou.com/rss.xml" htmlUrl="http://chriszou.com/"/>
<outline type="rss" text="小蜗牛" title="小蜗牛" xmlUrl="http://www.idevops.info/Rapid_Application_Development.cfm?fp=mGoQbwrZW3ObPAp7vERIlYaVoI0Ko%2BvJz5qojQDBt%2F6%2BsOMbDOjd%2Flwcs2gvRe3Y%2FPkz%2BkNiJ%2FHkoIpWoNjBOdB8D0eA8b4TcvqNa9ICrFBUMenzAVprKpRR%2BFZ2s4GI3KtHUoBT7OVG%2B4gk9xMKdcJEGuN5cyVWTSU4E8PJ2tY%2FarCSVn6Yis6KbWTKcoKOLXoTjxH1YrQcNbaNcmmOYg%3D%3D&yep=mccMAwoRcXWOuoElvCSuL04lmgM42s5LbulPpA5UrqK5aSyyCFZZPjkfno9lBWED0IZba0OE9A7JB7JYHNF6sCdm%2BoIW1kRkMCJeY037jlLu3BwIGPL9CmSIc0EOaGAHbFAttej9mYUtyc%2Bj%2Btx2TMJAcxOxILc3U5Q11STqTzx9LXAC%2BSqJHjxN8gz8nxWpXEY%2BeLvwNgQkeT2iISBl4kQXyaDKq%2FPgPG71bA10mu23nboZuHhuYk%2FUFCQ11En56Axv0DYzuqSJUbfN37kgAzwHtOUs6%2F01gYhvsykZ1ZGeeqTxaeanqaYPD1Jz2lg28weUHwXEelqaYm%2FV85axRACvMnAsiiNJ6Y94%2Fp9abxCCKzE81%2B4bbnrjHYqgRE1XQLn39spOowpCTNcX99l4Uq%2Fqm5GONeF6RDqDb%2FD7c5Hq9WPGsCEs5NfxNIBkfDbGW8KvbXXiNw68aXhIOHXKfCCwebtva7lIg2MxtKBadNJpJ0SelkMKTi3UsT8k6YdvcpoXyOL%2Bbfd6QJT2WacTMxXuWIJ5ig6boAs97TieAm%2FoWcFdyDS0skxRG5TxZ31b&gtnp=0&gtpp=0&maxads=0&kld=1061&yprpnd=hvcAV16UR%2B6KbZIX0FYMVciUK38irgANQKMZfoAyHyg%3D&prvtof=1w7mgnQfdXAUZP2e1EMcrnZpe9ND3PpK438o%2FeKpio0%3D&feed=rss&gtnp=0&gtpp=0&kt=319&&kbc=141174&ki=23811033&ktd=2199023452416&kld=1061&kp=1" htmlUrl="http://www.idevops.info/"/>
<outline type="rss" text="小顾de杂记" title="小顾de杂记" xmlUrl="https://blog.ihipop.info/feed" htmlUrl="http://blog.ihipop.info/"/>
<outline type="rss" text="小蝴蝶" title="小蝴蝶" xmlUrl="http://xiaohudie.net/feed" htmlUrl="http://xiaohudie.net/"/>
<outline type="rss" text="小胡子哥的博客" title="小胡子哥的博客" xmlUrl="http://www.barretlee.com/rss2.xml" htmlUrl="https://www.barretlee.com/entry/"/>
<outline type="rss" text="小胡子哥的个人网站" title="小胡子哥的个人网站" xmlUrl="http://www.barretlee.com/rss2.xml" htmlUrl="http://www.barretlee.com/"/>
<outline type="rss" text="小径分岔的花园" title="小径分岔的花园" xmlUrl="https://blog.khotyn.com/atom.xml" htmlUrl="http://khotyn.github.com/"/>
<outline type="rss" text="小居" title="小居" xmlUrl="https://liunian.info/feed" htmlUrl="http://liunian.info/"/>
<outline type="rss" text="小孔成像" title="小孔成像" xmlUrl="http://conxz.net/atom.xml" htmlUrl="http://www.conxz.net/"/>
<outline type="rss" text="小赖子的英国生活和资讯" title="小赖子的英国生活和资讯" xmlUrl="https://justyy.com/feed" htmlUrl="https://justyy.com/"/>
<outline type="rss" text="小毛的胡思乱想" title="小毛的胡思乱想" xmlUrl="https://mccxj.github.io/atom.xml" htmlUrl="http://mccxj.github.com/"/>
<outline type="rss" text="小米笔记" title="小米笔记" xmlUrl="https://notemi.cn/feed/" htmlUrl="https://notemi.cn/"/>
<outline type="rss" text="肖明超@趋势观察" title="肖明超@趋势观察" xmlUrl="http://blog.sina.com.cn/rss/1265695842.xml" htmlUrl="http://blog.sina.com.cn/xiaomingchao"/>
<outline type="rss" text="小默的博客" title="小默的博客" xmlUrl="http://xmuxiaomo.github.io/atom.xml" htmlUrl="http://xmuxiaomo.github.io/"/>
<outline type="rss" text="小木同(Ben)" title="小木同(Ben)" xmlUrl="http://www.qinbin.me/feed/" htmlUrl="http://www.qinbin.me/"/>
<outline type="rss" text="小彭博客" title="小彭博客" xmlUrl="http://www.houfukude.tk/feed" htmlUrl="http://www.houfukude.tk/"/>
<outline type="rss" text="小强的时间管理博客" title="小强的时间管理博客" xmlUrl="http://www.gtdlife.com/feed/" htmlUrl="http://www.gtdlife.com/"/>
<outline type="rss" text="曉生" title="曉生" xmlUrl="http://daichuanqing.com/index.php/feed" htmlUrl="http://daichuanqing.com/"/>
<outline type="rss" text="小土刀" title="小土刀" xmlUrl="https://wdxtub.com/atom.xml" htmlUrl="https://wdxtub.com/"/>
<outline type="rss" text="潇微网" title="潇微网" xmlUrl="https://www.shelwee.com/feed" htmlUrl="http://www.shelwee.com/"/>
<outline type="rss" text="小小子" title="小小子" xmlUrl="http://www.xiaoxiaozi.com/feed/" htmlUrl="http://www.xiaoxiaozi.com/"/>
<outline type="rss" text="小一的专栏" title="小一的专栏" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="http://blog.csdn.net/zinss26914"/>
<outline type="rss" text="xiaofancn" title="xiaofancn" xmlUrl="https://www.iteye.com/rss" htmlUrl="http://xiaofancn.iteye.com/"/>
<outline type="rss" text="薛彬的博客" title="薛彬的博客" xmlUrl="http://axuebin.com/blog /feed.xml" htmlUrl="http://axuebin.com/blog/"/>
<outline type="rss" text="谢权'blog" title="谢权'blog" xmlUrl="https://xiequan.info/feed/" htmlUrl="http://xiequan.info/"/>
<outline type="rss" text="谢益辉" title="谢益辉" xmlUrl="https://yihui.org/index.xml" htmlUrl="http://yihui.name/"/>
<outline type="rss" text="星尘独奏曲" title="星尘独奏曲" xmlUrl="https://www.starduster.me/feed/" htmlUrl="https://www.starduster.me/"/>
<outline type="rss" text="行者无疆" title="行者无疆" xmlUrl="http://www.ldsun.com/rss/" htmlUrl="http://www.ldsun.com/"/>
<outline type="rss" text="行至水深处,坐看云起时" title="行至水深处,坐看云起时" xmlUrl="http://blog.sina.com.cn/rss/1828197054.xml" htmlUrl="http://blog.sina.com.cn/mindtesting"/>
<outline type="rss" text="熊猫大仙技术博客" title="熊猫大仙技术博客" xmlUrl="http://www.pandablog.cn/?feed=rss2" htmlUrl="http://www.pandablog.cn/"/>
<outline type="rss" text="XiongLiding的个人空间" title="XiongLiding的个人空间" xmlUrl="https://www.oschina.net/project/rss" htmlUrl="http://my.oschina.net/xiongliding"/>
<outline type="rss" text="许式伟的个人空间" title="许式伟的个人空间" xmlUrl="http://xushiwei.com/feed/pages/pagename/blog/category/_default/order/updated_at+desc/limit/10/t/Xushiwei%27s+Blog" htmlUrl="http://xushiwei.com/"/>
<outline type="rss" text="徐毅" title="徐毅" xmlUrl="http://kaverjody.com/feed/" htmlUrl="http://kaverjody.com/"/>
<outline type="rss" text="萱苏小筑" title="萱苏小筑" xmlUrl="http://liangs.me/feed/" htmlUrl="http://liangs.me/"/>
<outline type="rss" text="Xuan Yan" title="Xuan Yan" xmlUrl="http://xuanyan.org/atom.xml" htmlUrl="http://xuanyan.org/"/>
<outline type="rss" text="Xuanwo’s Blog" title="Xuanwo’s Blog" xmlUrl="https://xuanwo.io/index.xml" htmlUrl="https://xuanwo.io/"/>
<outline type="rss" text="Xuanye's blog" title="Xuanye's blog" xmlUrl="http://xuanye.github.io/atom.xml" htmlUrl="http://xuanye.github.io/"/>
<outline type="rss" text="学而时嘻之 | 用理工科思维理解世界" title="学而时嘻之 | 用理工科思维理解世界" xmlUrl="https://www.geekonomics10000.com/feed" htmlUrl="https://www.geekonomics10000.com/"/>
<outline type="rss" text="学习吧-谢亮" title="学习吧-谢亮" xmlUrl="https://xuexb.com/rss.html" htmlUrl="http://www.xuexb.com/"/>
<outline type="rss" text="学习,工作备忘录-DonCui" title="学习,工作备忘录-DonCui" xmlUrl="https://www.doncui.com/feed/" htmlUrl="https://www.doncui.com/"/>
<outline type="rss" text="XX到此一游" title="XX到此一游" xmlUrl="https://clz.me/feed/" htmlUrl="http://clz.me/"/>
<outline type="rss" text="雅乐网 » 雅乐网" title="雅乐网 » 雅乐网" xmlUrl="http://www.yalewoo.com/feed" htmlUrl="http://www.yalewoo.com/"/>
<outline type="rss" text="亚里士朱德的博客" title="亚里士朱德的博客" xmlUrl="https://yalishizhude.github.io/rss2.xml" htmlUrl="http://yalishizhude.github.io/"/>
<outline type="rss" text="颜海镜" title="颜海镜" xmlUrl="https://yanhaijing.com/atom.xml" htmlUrl="http://yanhaijing.com/"/>
<outline type="rss" text="岩松博客" title="岩松博客" xmlUrl="https://www.sunyansong.com/feed" htmlUrl="http://www.sunyansong.com/"/>
<outline type="rss" text="杨尚川的博客" title="杨尚川的博客" xmlUrl="https://www.iteye.com/rss" htmlUrl="http://yangshangchuan.iteye.com/"/>
<outline type="rss" text="阳振坤的博客" title="阳振坤的博客" xmlUrl="http://blog.sina.com.cn/rss/1070095910.xml" htmlUrl="http://blog.sina.com.cn/kern0612"/>
<outline type="rss" text="阳志平的网志" title="阳志平的网志" xmlUrl="https://www.yangzhiping.com/feed.xml" htmlUrl="http://www.yangzhiping.com/"/>
<outline type="rss" text="yangtingkun" title="yangtingkun" xmlUrl="http://yangtingkun.net/?feed=rss2" htmlUrl="http://yangtingkun.net/"/>
<outline type="rss" text="也就这样," title="也就这样," xmlUrl="https://type.so/feed/" htmlUrl="http://type.so/"/>
<outline type="rss" text="业余Linux管理员" title="业余Linux管理员" xmlUrl="https://zhangdashuo.github.io/atom.xml" htmlUrl="https://zhangdashuo.github.io/"/>
<outline type="rss" text="Yet Another Summer Rain" title="Yet Another Summer Rain" xmlUrl="http://liaohuqiu.net/about/feed" htmlUrl="http://liaohuqiu.net/"/>
<outline type="rss" text="一个故事@MySQL DBA" title="一个故事@MySQL DBA" xmlUrl="http://www.orczhou.com/index.php/feed/" htmlUrl="http://www.orczhou.com/"/>
<outline type="rss" text="易水博客" title="易水博客" xmlUrl="https://blog.easwy.com/feed/" htmlUrl="http://easwy.com/blog"/>
<outline type="rss" text="钇钛网 - 郭宇翔的博客" title="钇钛网 - 郭宇翔的博客" xmlUrl="https://blog.yourtion.com/rss.xml" htmlUrl="http://blog.yourtion.com/rss.xml"/>
<outline type="rss" text="忆夏天" title="忆夏天" xmlUrl="http://exiatian.com/feed/rss2/" htmlUrl="http://www.exiatian.com/"/>
<outline type="rss" text="依云's Blog" title="依云's Blog" xmlUrl="https://blog.lilydjwg.me/posts.rss" htmlUrl="http://lilydjwg.is-programmer.com/"/>
<outline type="rss" text="Yikun" title="Yikun" xmlUrl="http://yikun.github.io/atom.xml" htmlUrl="http://yikun.github.io/"/>
<outline type="rss" text="隐匿于黑夜中的星" title="隐匿于黑夜中的星" xmlUrl="http://blog.codepiano.com/atom.xml" htmlUrl="http://blog.codepiano.com/"/>
<outline type="rss" text="因为你" title="因为你" xmlUrl="http://xinghenghan.blog.163.com/rss/" htmlUrl="http://xinghenghan.blog.163.com/"/>
<outline type="rss" text="樱花庄的白猫" title="樱花庄的白猫" xmlUrl="https://2heng.xin/feed" htmlUrl="https://2heng.xin/"/>
<outline type="rss" text="拥有自己的梦想,跟随心的召唤" title="拥有自己的梦想,跟随心的召唤" xmlUrl="http://rongjih.blog.163.com/rss/" htmlUrl="http://rongjih.blog.163.com/"/>
<outline type="rss" text="有道技术沙龙博客" title="有道技术沙龙博客" xmlUrl="http://techblog.youdao.com/?feed=rss" htmlUrl="http://techblog.youdao.com/"/>
<outline type="rss" text="邮件营销在中国" title="邮件营销在中国" xmlUrl="http://inboxroi.com/feed/" htmlUrl="http://www.inboxroi.com/"/>
<outline type="rss" text="有你做翅膀,孤单都是坚强" title="有你做翅膀,孤单都是坚强" xmlUrl="http://li.yin.zhen.blog.163.com/rss/" htmlUrl="http://li.yin.zhen.blog.163.com/"/>
<outline type="rss" text="悠然居" title="悠然居" xmlUrl="https://wordpress.youran.me/feed/" htmlUrl="https://wordpress.youran.me/"/>
<outline type="rss" text="优设-UISDC" title="优设-UISDC" xmlUrl="http://www.uisdc.com/?feed=rss" htmlUrl="http://www.uisdc.com/"/>
<outline type="rss" text="优优VPS" title="优优VPS" xmlUrl="http://www.uuvps.com/feed" htmlUrl="http://www.uuvps.com/"/>
<outline type="rss" text="有赞技术团队" title="有赞技术团队" xmlUrl="https://tech.youzan.com/rss/" htmlUrl="http://tech.youzan.com/"/>
<outline type="rss" text="Youly" title="Youly" xmlUrl="http://blog.lastww.com/atom.xml" htmlUrl="http://youly.github.io/"/>
<outline type="rss" text="youmeek" title="youmeek" xmlUrl="http://www.youmeek.com/feed/" htmlUrl="http://www.youmeek.com/"/>
<outline type="rss" text="YoungZhao's Blog" title="YoungZhao's Blog" xmlUrl="http://blog.xn--9p3a45o.cn/feed/" htmlUrl="http://blog.xn--9p3a45o.cn/"/>
<outline type="rss" text="Yrom's Blog" title="Yrom's Blog" xmlUrl="http://www.yrom.net/atom.xml" htmlUrl="http://www.yrom.net/"/>
<outline type="rss" text="鱼儿的博客" title="鱼儿的博客" xmlUrl="https://yuerblog.cc/feed/" htmlUrl="http://yuerblog.cc/"/>
<outline type="rss" text="御风大世界" title="御风大世界" xmlUrl="https://blog.bywind.cn/rss.xml" htmlUrl="https://blog.bywind.cn/"/>
<outline type="rss" text="于江水博客" title="于江水博客" xmlUrl="https://yujiangshui.com/atom.xml" htmlUrl="http://yujiangshui.com/"/>
<outline type="rss" text="玉令天下的Blog" title="玉令天下的Blog" xmlUrl="http://yulingtianxia.com/atom.xml" htmlUrl="http://yulingtianxia.com/"/>
<outline type="rss" text="喻名堂" title="喻名堂" xmlUrl="https://www.asymt.com/feed" htmlUrl="http://www.asymt.com/"/>
<outline type="rss" text="与您分享电脑世界" title="与您分享电脑世界" xmlUrl="http://www.netpc.com.cn/feed/" htmlUrl="http://www.netpc.com.cn/"/>
<outline type="rss" text="虞双齐的博客" title="虞双齐的博客" xmlUrl="https://yushuangqi.com/index.xml" htmlUrl="https://yushuangqi.com/"/>
<outline type="rss" text="雨夜带刀's Blog 关注前端与用户体验" title="雨夜带刀's Blog 关注前端与用户体验" xmlUrl="https://blog.yiguochen.com/feed" htmlUrl="http://stylechen.com/"/>
<outline type="rss" text="远航" title="远航" xmlUrl="http://blog.cnwyhx.com/feed/" htmlUrl="http://blog.cnwyhx.com/"/>
<outline type="rss" text="远子" title="远子" xmlUrl="https://sendya.me/rss/" htmlUrl="https://sendya.me/"/>
<outline type="rss" text="越锋利" title="越锋利" xmlUrl="http://yuefeng.li/feed" htmlUrl="http://yuefeng.li/feed"/>
<outline type="rss" text="月与灯依旧" title="月与灯依旧" xmlUrl="https://www.zhukun.net/feed" htmlUrl="http://www.zhukun.net/"/>
<outline type="rss" text="Yuguo Blog" title="Yuguo Blog" xmlUrl="https://yuguo.us/feed.xml" htmlUrl="http://yuguo.us/"/>
<outline type="rss" text="云淡风轻" title="云淡风轻" xmlUrl="https://ioliu.cn/atom.xml" htmlUrl="http://ioliu.cn/"/>
<outline type="rss" text="云风的 BLOG" title="云风的 BLOG" xmlUrl="https://blog.codingnow.com/atom.xml" htmlUrl="https://blog.codingnow.com/"/>
<outline type="rss" text="运维派" title="运维派" xmlUrl="http://www.yunweipai.com/feed" htmlUrl="http://www.yunweipai.com/"/>
<outline type="rss" text="运维生存时间 - 运维生存时间" title="运维生存时间 - 运维生存时间" xmlUrl="http://www.ttlsa.com/?feed=rss" htmlUrl="http://www.ttlsa.com/"/>
<outline type="rss" text="运维之路" title="运维之路" xmlUrl="http://www.361way.com/feed" htmlUrl="http://www.361way.com/"/>
<outline type="rss" text="云在千峰" title="云在千峰" xmlUrl="http://blog.chengyunfeng.com/?feed=rss2" htmlUrl="http://blog.chengyunfeng.com/"/>
<outline type="rss" text="Yuxin's Blog" title="Yuxin's Blog" xmlUrl="http://ppwwyyxx.com/index.xml" htmlUrl="http://ppwwyyxx.com/"/>
<outline type="rss" text="在路上" title="在路上" xmlUrl="http://hongjiang.info/feed/" htmlUrl="http://hongjiang.info/"/>
<outline type="rss" text="ZDDHUB" title="ZDDHUB" xmlUrl="https://www.zddhub.com/feed" htmlUrl="http://zddhub.github.io/"/>
<outline type="rss" text="zejian的博客" title="zejian的博客" xmlUrl="https://blog.csdn.net/?feed=rss" htmlUrl="https://blog.csdn.net/javazejian"/>
<outline type="rss" text="宅前疯" title="宅前疯" xmlUrl="http://www.zhaiqianfeng.com/atom.xml" htmlUrl="http://www.zhaiqianfeng.com/"/>
<outline type="rss" text="张戈博客" title="张戈博客" xmlUrl="https://zhangge.net/feed" htmlUrl="https://zhangge.net/"/>
<outline type="rss" text="张砷镓" title="张砷镓" xmlUrl="http://zhangshenjia.com/feed/" htmlUrl="http://zhangshenjia.com/"/>
<outline type="rss" text="张鑫旭-鑫空间-鑫生活" title="张鑫旭-鑫空间-鑫生活" xmlUrl="https://www.zhangxinxu.com/wordpress/feed/" htmlUrl="http://www.zhangxinxu.com/wordpress"/>
<outline type="rss" text="张学程" title="张学程" xmlUrl="https://zhangxc.com/index.xml" htmlUrl="http://zhangxc.com/"/>
<outline type="rss" text="张亚楠 ' BLOG - 天意从来高难问" title="张亚楠 ' BLOG - 天意从来高难问" xmlUrl="http://www.zhidaow.com/feed" htmlUrl="http://www.zhidaow.com/feed"/>
<outline type="rss" text="张宴的博客" title="张宴的博客" xmlUrl="http://zyan.cc/feed.php" htmlUrl="http://zyan.cc/"/>
<outline type="rss" text="张志敏的技术专栏" title="张志敏的技术专栏" xmlUrl="http://beginor.github.io/atom.xml" htmlUrl="http://beginor.github.io/"/>
<outline type="rss" text="zhangge's stupid and messy life" title="zhangge's stupid and messy life" xmlUrl="http://feed.feedsky.com/zhgeaits" htmlUrl="http://zhgeaits.github.io/"/>
<outline type="rss" text="赵刚博士的BLOG" title="赵刚博士的BLOG" xmlUrl="http://blog.sina.com.cn/rss/1252330317.xml" htmlUrl="http://blog.sina.com.cn/blogbot"/>
<outline type="rss" text="赵荣涛" title="赵荣涛" xmlUrl="http://www.oicto.com/feed/" htmlUrl="http://www.oicto.com/"/>
<outline type="rss" text="找屎啊!" title="找屎啊!" xmlUrl="https://googlegis.github.io/atom.xml" htmlUrl="http://googlegis.github.com/"/>
<outline type="rss" text="赵阳武的技术博客" title="赵阳武的技术博客" xmlUrl="http://blog.sina.com.cn/rss/2088275181.xml" htmlUrl="http://blog.sina.com.cn/u/2088275181"/>
<outline type="rss" text="赵伊凡's Blog" title="赵伊凡's Blog" xmlUrl="http://irfen.me/feed/" htmlUrl="http://irfen.me/"/>
<outline type="rss" text="这个男人来自三体" title="这个男人来自三体" xmlUrl="https://www.cnblogs.com/3body/rss" htmlUrl="http://www.cnblogs.com/3body/"/>