-
Notifications
You must be signed in to change notification settings - Fork 219
/
garssInfo.json
1159 lines (1159 loc) · 41.8 KB
/
garssInfo.json
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
{
"garssInfo": [
{
"description": "不死鸟:专注分享优质资源",
"title": "不死鸟",
"xmlUrl": "https://iao.su/feed"
},
{
"description": "精品MAC应用分享,每天分享大量mac软件,为您提供优质的mac软件,免费软件下载服务",
"title": "精品MAC应用分享",
"xmlUrl": "https://xclient.info/feed"
},
{
"description": "免费推荐优秀软件",
"title": "老殁",
"xmlUrl": "https://www.mpyit.com/feed"
},
{
"description": "专注于精品软件收录分享",
"title": "鹏少资源网",
"xmlUrl": "https://www.jokerps.com/feed"
},
{
"description": "分享免费、小巧、实用、有趣、绿色的软件",
"title": "小众软件",
"xmlUrl": "https://www.appinn.com/feed/"
},
{
"description": "懒得勤快,互联网分享精神,勤于发现,乐于分享",
"title": "懒得勤快的博客",
"xmlUrl": "https://masuit.com/rss"
},
{
"description": "反斗软件旗下软件限免资讯网站",
"title": "反斗限免",
"xmlUrl": "https://free.apprcn.com/feed/"
},
{
"description": "极具人气和特色的软件网站!专注于推荐优秀软件、APP应用和互联网资源,每篇图文评测都极其用心,并提供大量软件资源下载。",
"title": "异次元软件世界",
"xmlUrl": "https://rsshub.v2fy.com/iplay/home"
},
{
"description": "一个科技博客,讲解的知识通俗易懂",
"title": "阮一峰的网络日志",
"xmlUrl": "http://www.ruanyifeng.com/blog/atom.xml"
},
{
"description": "王垠的博客,观点奇妙有趣",
"title": "当我在扯淡",
"xmlUrl": "https://yinwang1.wordpress.com/feed/"
},
{
"description": "Hackintosh安装镜像、教程及经验分享",
"title": "黑果小兵的部落阁",
"xmlUrl": "https://blog.daliansky.net/atom.xml"
},
{
"description": "张鑫旭-鑫空间-鑫生活",
"title": "张鑫旭的博客",
"xmlUrl": "https://www.zhangxinxu.com/wordpress/feed/"
},
{
"description": "zhaoolee的杂谈博客",
"title": "方圆小站",
"xmlUrl": "https://fangyuanxiaozhan.com/feed/"
},
{
"description": "防加班办公工具技能宝典",
"title": "V2方圆",
"xmlUrl": "https://v2fy.com/feed/"
},
{
"description": "记录云主机商活动和建站运维教程",
"title": "老左笔记",
"xmlUrl": "https://www.laozuo.org/feed"
},
{
"description": "修改器大神风灵月影",
"title": "FLiNG Trainer",
"xmlUrl": "https://flingtrainer.com/feed/"
},
{
"description": "有智,有趣,有爱",
"title": "奔跑中的奶酪",
"xmlUrl": "https://www.runningcheese.com/feed"
},
{
"description": "记录下自己学习的点滴",
"title": "唐巧的博客",
"xmlUrl": "https://blog.devtang.com/atom.xml"
},
{
"description": "Hello! This is TualatriX's blog",
"title": "I'M TUALATRIX",
"xmlUrl": "https://imtx.me/feed/latest/"
},
{
"description": "思绪来得快去得也快,偶尔会在这里停留",
"title": "云风的 BLOG",
"xmlUrl": "https://blog.codingnow.com/atom.xml"
},
{
"description": "timqian的博客",
"title": "透明创业实验",
"xmlUrl": "https://blog.t9t.io/atom.xml"
},
{
"description": "多歧为贵 不取苟同",
"title": "扯氮集",
"xmlUrl": "http://weiwuhui.com/feed"
},
{
"description": "蚊子在前端开发工作中的总结",
"title": "wenzi",
"xmlUrl": "https://www.xiabingbao.com/atom.xml"
},
{
"description": "人气网红,前端萌新,有猫,开源",
"title": "DIYgod",
"xmlUrl": "https://diygod.me/atom.xml"
},
{
"description": "关注技术和人文",
"title": "MacTalk-池建强的随想录",
"xmlUrl": "http://macshuo.com/?feed=rss2"
},
{
"description": "ShrekShao's Blog",
"title": "ShrekShao",
"xmlUrl": "http://shrekshao.github.io/feed.xml"
},
{
"description": "Phodal - A Growth Engineer",
"title": "Phodal",
"xmlUrl": "https://www.phodal.com/blog/feeds/rss/"
},
{
"description": "追梦人物的博客",
"title": "追梦人物",
"xmlUrl": "https://www.zmrenwu.com/all/rss/"
},
{
"description": "小明明s à domicile",
"title": "小明明s à domicile",
"xmlUrl": "https://www.dongwm.com/atom.xml"
},
{
"description": "Windard's simple blog web",
"title": "但行好事,莫问前程",
"xmlUrl": "https://windard.com/feed.xml"
},
{
"description": "前端工程师,ZUOLUOTV制作人",
"title": "罗磊的独立博客",
"xmlUrl": "https://luolei.org/feed/"
},
{
"description": "Newdee's Blog",
"title": "阁子",
"xmlUrl": "https://newdee.cf/atom.xml"
},
{
"description": "RidiQulous's Blog",
"title": "RidiQulous",
"xmlUrl": "https://ridiqulous.com/feed/"
},
{
"description": "善存于心,世界和平",
"title": "代码家",
"xmlUrl": "https://daimajia.com/feed"
},
{
"description": "张涛的开源实验室",
"title": "开源实验室",
"xmlUrl": "https://www.kymjs.com/feed.xml"
},
{
"description": "一个Android 工程师",
"title": "技术小黑屋",
"xmlUrl": "https://droidyue.com/atom.xml"
},
{
"description": "依云's Blog",
"title": "依云",
"xmlUrl": "https://blog.lilydjwg.me/posts.rss"
},
{
"description": "Armin Li(李钊)",
"title": "INTJer",
"xmlUrl": "https://arminli.com/feed/"
},
{
"description": "促成良性循环",
"title": "思圆笔记",
"xmlUrl": "https://hintsnet.com/pimgeek/feed/"
},
{
"description": "Life Is Fantastic",
"title": "老周快救我",
"xmlUrl": "https://zxx.im/feed"
},
{
"description": "给生活打个草稿",
"title": "MouT.me",
"xmlUrl": "https://ghost.mout.me/rss/"
},
{
"description": "码动人生",
"title": "diss带码",
"xmlUrl": "https://dumplingbao.github.io/atom.xml"
},
{
"description": "布洛芬爱好者",
"title": "王登科-DK博客",
"xmlUrl": "https://greatdk.com/feed"
},
{
"description": "笨方法学写作,这一次彻底学会写作",
"title": "笨方法学写作",
"xmlUrl": "https://www.cnfeat.com/feed.xml"
},
{
"description": "左手代码右手诗",
"title": "风雪之隅",
"xmlUrl": "https://www.laruence.com/feed"
},
{
"description": "这里是 Hawstein 的个人博客,记录生活点滴。",
"title": "Hawstein's Blog",
"xmlUrl": "https://hawstein.com/feed.xml"
},
{
"description": "WordPress极客一枚",
"title": "DeveWork",
"xmlUrl": "https://devework.com/feed"
},
{
"description": "东亚文史研究动态网",
"title": "海交史",
"xmlUrl": "https://www.haijiaoshi.com/feed"
},
{
"description": "四季书评",
"title": "四季书评",
"xmlUrl": "http://www.4sbooks.com/feed"
},
{
"description": "网络上甘岭战区候任参谋长",
"title": "文三娃",
"xmlUrl": "https://wentommy.wordpress.com/feed/"
},
{
"description": "点击文章标题可评论哦",
"title": "我的小角落",
"xmlUrl": "http://micheer.net/?feed=rss2"
},
{
"description": "木遥的窗子",
"title": "木遥",
"xmlUrl": "http://blog.farmostwood.net/feed"
},
{
"description": "Limboy's HQ",
"title": "Limboy's HQ",
"xmlUrl": "https://limboy.me/index.xml"
},
{
"description": "成长中的产品经理,期待和同学们一起,用好产品改变世界~",
"title": "人人都是产品经理——iamsujie",
"xmlUrl": "http://iamsujie.com/feed/"
},
{
"description": "和光同尘,与时舒卷",
"title": "土木坛子",
"xmlUrl": "https://tumutanzi.com/feed"
},
{
"description": "多研究些问题,少谈些主义。",
"title": "火丁笔记",
"xmlUrl": "https://blog.huoding.com/feed"
},
{
"description": "PM可以是產品經理、下午、Pig Man,但絕對不是Poor Man",
"title": "產品經理 x 成長駭客 - Mr. PM下午先生",
"xmlUrl": "http://mrpm.cc/?feed=rss2"
},
{
"description": "Matrix67: The Aha Moments",
"title": "Matrix67",
"xmlUrl": "http://www.matrix67.com/blog/feed"
},
{
"description": "I Love Natural Language Processing",
"title": "我爱自然语言处理",
"xmlUrl": "https://www.52nlp.cn/feed"
},
{
"description": "sunnyxx的技术博客",
"title": "sunnyxx",
"xmlUrl": "http://blog.sunnyxx.com/atom.xml"
},
{
"description": "敏捷開發,設計模式,精實開發,Scrum,軟體設計,軟體架構",
"title": "搞笑談軟工",
"xmlUrl": "http://teddy-chen-tw.blogspot.com/feeds/posts/default"
},
{
"description": "遊記、語言學、經濟學、信息學競賽/ACM經驗、算法講解、技術知識",
"title": "Beyond the Void",
"xmlUrl": "https://byvoid.com/zht/feed.xml"
},
{
"description": "This blog is rated R, viewer discretion is advised",
"title": "Est's Blog",
"xmlUrl": "https://blog.est.im/rss"
},
{
"description": "Changhai Lu's Homepage",
"title": "卢昌海个人主页",
"xmlUrl": "https://www.changhai.org//feed.xml"
},
{
"description": "程序员、编程语言、软件开发、编程技术",
"title": "程序师",
"xmlUrl": "https://www.techug.com/feed"
},
{
"description": "我的世界",
"title": "bang's blog",
"xmlUrl": "http://blog.cnbang.net/feed/"
},
{
"description": "思无邪",
"title": "白宦成",
"xmlUrl": "https://www.ixiqin.com/feed/"
},
{
"description": "记录一位独立开发者的精进之路,分享自由职业者的生存方式。",
"title": "Jason 独立开发,自由职业",
"xmlUrl": "https://atjason.com/atom.xml/"
},
{
"description": "Randy is blogging about life, tech and music.",
"title": "Randy's Blog",
"xmlUrl": "https://lutaonan.com/rss.xml"
},
{
"description": "林小沐的博客",
"title": "木木木木木",
"xmlUrl": "https://immmmm.com/atom.xml"
},
{
"description": "写自己的代码,让别人猜去吧",
"title": "Skywind Inside",
"xmlUrl": "http://www.skywind.me/blog/feed"
},
{
"description": "by 阿川先生",
"title": "轉個彎日誌",
"xmlUrl": "https://blog.turn.tw/?feed=rss2"
},
{
"description": "公众号:余果专栏",
"title": "余果的博客",
"xmlUrl": "https://yuguo.us/feed.xml"
},
{
"description": "把我的过程记录下来,以免以后忘了",
"title": "陈沙克日志",
"xmlUrl": "http://www.chenshake.com/feed/"
},
{
"description": "就,觉得自己还挺有洞察力的……",
"title": "透明思考 Transparent Thoughts",
"xmlUrl": "http://gigix.thoughtworkers.org/atom.xml"
},
{
"description": "Happy coding, happy living!",
"title": "依云's Blog",
"xmlUrl": "https://blog.lilydjwg.me/feed"
},
{
"description": "精子真名叫「王子亭」,生于 1995.11.25,英文ID是jysperm. 精子是一名独立博客作者",
"title": "王子亭的博客",
"xmlUrl": "https://jysperm.me/atom.xml"
},
{
"description": "中文日志 - Yihui Xie",
"title": "谢益辉",
"xmlUrl": "https://yihui.org/cn/index.xml"
},
{
"description": "褪墨・时间管理是一个关注时间管理、GTD、个人提升、生活健康与习惯、学习方法和演讲技巧的网站。我们的目标是:把事情做到更好!",
"title": "褪墨・时间管理,个人提升,生活健康与习惯",
"xmlUrl": "https://www.mifengtd.cn/feed.xml"
},
{
"description": "数字移民是一种生活方式",
"title": "数字移民",
"xmlUrl": "https://blog.shuziyimin.org/feed"
},
{
"description": "Love its people, but never trust its government.",
"title": "Just lepture",
"xmlUrl": "https://lepture.com/feed.xml"
},
{
"description": "Articles about life, technology, and startups.",
"title": "1 Byte",
"xmlUrl": "https://1byte.io/rss.xml"
},
{
"description": "保持蓬勃的好奇心",
"title": "庭说",
"xmlUrl": "https://tingtalk.me/atom.xml"
},
{
"description": "杂文、随笔、感悟、记录",
"title": "KAIX.IN",
"xmlUrl": "https://kaix.in/feed/"
},
{
"description": "范路的博客主站,时而会发些东西。",
"title": "硕鼠的博客站",
"xmlUrl": "http://lukefan.com/?feed=rss2"
},
{
"description": "Lifelong Learner",
"title": "构建我的被动收入",
"xmlUrl": "https://www.bmpi.dev/index.xml"
},
{
"description": "Beautifully Advance",
"title": "Livid",
"xmlUrl": "https://livid.v2ex.com/feed.xml"
},
{
"description": "hutusi.com",
"title": "胡涂说",
"xmlUrl": "https://hutusi.com/feed.xml"
},
{
"description": "万物之始,大道至简,衍化至繁",
"title": "鸟窝",
"xmlUrl": "https://colobu.com/atom.xml"
},
{
"description": "无法自制的人得不到自由。",
"title": "卡瓦邦噶!",
"xmlUrl": "https://www.kawabangga.com/feed"
},
{
"description": "天是方的,地是圆的。",
"title": "方圆STU",
"xmlUrl": "https://fangyuanstu.com/feed/"
},
{
"description": "崇尚自由、热爱科学与艺术",
"title": "折影轻梦",
"xmlUrl": "https://nexmoe.com/atom.xml"
},
{
"description": "行走少年郎 不羁,谓才行高远,不可羁系也",
"title": "不羁阁",
"xmlUrl": "https://bujige.net/atom.xml"
},
{
"description": "Cal Paterson's articles",
"title": "Cal Paterson",
"xmlUrl": "https://calpaterson.com/calpaterson.rss"
},
{
"description": "树莓派; 开发板; 编程; 折腾",
"title": "3号实验室",
"xmlUrl": "https://www.labno3.com/feed/"
},
{
"description": "巧者劳而智者忧,无能者无所求,饱食而遨游,泛若不系之舟",
"title": "ZMonster's Blog",
"xmlUrl": "https://www.zmonster.me/atom.xml"
},
{
"description": "推荐各种VPS主机",
"title": "十年老程网",
"xmlUrl": "http://snlcw.com/feed"
},
{
"description": "前豆瓣工程师,现在家带娃,远程工作机会联系我哟",
"title": "小明明 domicile",
"xmlUrl": "http://snlcw.com/feed"
},
{
"description": "读万卷书,行万里路",
"title": "LFhacks.com",
"xmlUrl": "https://www.lfhacks.com/rss/"
},
{
"description": "兴趣遍地都是,专注和持之以恒才是真正稀缺的",
"title": "三省吾身",
"xmlUrl": "https://blog.guowenfh.com/atom.xml"
},
{
"description": "关于设计与摄影,一个95后的个人博客",
"title": "夏海比比",
"xmlUrl": "https://huiweishijie.com/feed.xml"
},
{
"description": "一入 IT 深似海 从此学习无绝期",
"title": "TRHX'S BLOG",
"xmlUrl": "https://www.itrhx.com/atom.xml"
},
{
"description": "callmesoul前端开发者",
"title": "CallMeSoul",
"xmlUrl": "https://callmesoul.cn/rss.xml"
},
{
"description": "不高大但是威猛,不英俊但是潇洒",
"title": "龚成博客",
"xmlUrl": "https://laogongshuo.com/feed"
},
{
"description": "你不会找到路,除非你敢于迷路",
"title": "Seven's blog",
"xmlUrl": "https://blog.diqigan.cn/atom.xml"
},
{
"description": "你晚来天雨雪,能饮一杯无?",
"title": "治部少辅",
"xmlUrl": "https://www.codewoody.com/atom.xml"
},
{
"description": "CRIMX 的博客,主要记录 Web 前端相关的一些内容,偶尔涉及其它方面。",
"title": "CRIMX BLOG",
"xmlUrl": "https://blog.crimx.com/rss.xml"
},
{
"description": "信仰共产主义,后现代主义者,结构主义者,奇妙发现世界~~",
"title": "小非的物理小站",
"xmlUrl": "https://xiaophy.com/feed.xml"
},
{
"description": "因上努力,果上随缘!",
"title": "Michael翔",
"xmlUrl": "https://michael728.github.io/atom.xml"
},
{
"description": "SpringHack 的无名技术小站",
"title": "Dosk 技术站",
"xmlUrl": "https://www.dosk.win/feed.xml"
},
{
"description": "你好呀,我是一个准大学生,曾经是一个信息学奥林匹克竞赛(OI)选手,ID 为AquaRio。",
"title": "Lu Shuyu's NoteBook",
"xmlUrl": "https://blog.lushuyu.site/about-me/feed"
},
{
"description": "吃饭学家,复制学家,偷懒学家。",
"title": "Xieisabug",
"xmlUrl": "https://www.xiejingyang.com/feed/"
},
{
"description": "一个生信工作者的独立博客",
"title": "Ryu Zheng 郑泽鑫的博客",
"xmlUrl": "https://zhengzexin.com/feed/index.xml"
},
{
"description": "妄图改变世界的全栈程序员。",
"title": "轶哥",
"xmlUrl": "https://www.wyr.me/rss.xml"
},
{
"description": "技术分享,前端开发,生活杂谈",
"title": "清竹茶馆",
"xmlUrl": "https://blog.vadxq.com/atom.xml"
},
{
"description": "我挥舞着键盘和本子,发誓要把这世界写个明明白白!!!",
"title": "隋堤倦客",
"xmlUrl": "https://fengxu.ink/atom.xml"
},
{
"description": "萌即是正义!一名热爱acg的前端设计师的小站!",
"title": "维基萌",
"xmlUrl": "https://www.wikimoe.com/rss.php"
},
{
"description": "Embedded Software Engineer. Blogging about tech and life.",
"title": "StrongWong",
"xmlUrl": "https://blog.strongwong.top/atom.xml"
},
{
"description": "Still single, still lonely.",
"title": "保罗的小宇宙",
"xmlUrl": "https://paugram.com/feed/"
},
{
"description": "聚沙成塔",
"title": "Mobility",
"xmlUrl": "https://lichuanyang.top/atom.xml"
},
{
"description": "A man cannot be described. He is not LSD.",
"title": "Not LSD",
"xmlUrl": "https://notlsd.github.io/atom.xml"
},
{
"description": "故事太多,需要找个地方记录一下",
"title": "MikeoPerfect's Diary",
"xmlUrl": "https://blog.mikeoperfect.com/atom.xml"
},
{
"description": "荣辱不惊闲看庭前花开花谢,去留无意漫随天外云卷云舒",
"title": "爪哇堂 JavaTang",
"xmlUrl": "https://www.javatang.com/feed"
},
{
"description": "DarkSun的个人博客",
"title": "暗无天日",
"xmlUrl": "https://www.lujun9972.win/rss.xml"
},
{
"description": "Grayson's Blog",
"title": "Grayson's Blog",
"xmlUrl": "http://blog.grayson.org.cn/feed.xml"
},
{
"description": "专注于分享后端相关的技术以及设计架构思想,偶尔写一些生活和前端相关的东西",
"title": "格物致知",
"xmlUrl": "https://liqiang.io/atom.xml"
},
{
"description": "心中本没有路,用双手敲写康庄大道。知之甚少,学之甚多,生命不休,求索不止。",
"title": "黄琦雲的博客",
"xmlUrl": "https://knightyun.github.io/feed.xml"
},
{
"description": "致力于认知科学的产品开发、课程设计与科学传播。",
"title": "阳志平的网志",
"xmlUrl": "https://www.yangzhiping.com/feed.xml"
},
{
"description": "专注经济视角下的互联网",
"title": "落园",
"xmlUrl": "https://www.loyhome.com/feed/"
},
{
"description": "一个摄影博主,设立了自己的摄影品牌「她的蓝」有没有那么一首诗篇,找不到句点",
"title": "Her Blue",
"xmlUrl": "https://her.blue/rss/"
},
{
"description": "记录、生活、思考",
"title": "伪医生律师的博客",
"xmlUrl": "https://chidd.net/feed"
},
{
"description": "一个折腾WordPress多年的开发者, 博客里有众多 WordPress技术教程分享",
"title": "ZWWoOoOo",
"xmlUrl": "https://zww.me/feed"
},
{
"description": "一位居住在日本的女开发者",
"title": "水八口的冥想盆",
"xmlUrl": "https://blog.shuiba.co/feed"
},
{
"description": "我要与你坦诚相见",
"title": "失眠海峡",
"xmlUrl": "https://blog.imalan.cn/feed/index.xml"
},
{
"description": "一个京东前端工程师",
"title": "千古壹号的博客",
"xmlUrl": "https://qianguyihao.com/atom.xml"
},
{
"description": "少数派致力于更好地运用数字产品或科学方法,帮助用户提升工作效率和生活品质",
"title": "少数派",
"xmlUrl": "https://sspai.com/feed"
},
{
"description": "分享美好数字生活",
"title": "数字尾巴",
"xmlUrl": "https://www.dgtle.com/rss/dgtle.xml"
},
{
"description": "分享与交流用户体验",
"title": "Chiphell",
"xmlUrl": "https://www.chiphell.com/portal.php?mod=rss"
},
{
"description": "腾讯全端AlloyTeam团队的技术博客",
"title": "AlloyTeam",
"xmlUrl": "http://www.alloyteam.com/feed/"
},
{
"description": "360前端团队博客,领略前端技术,阅读奇舞周刊",
"title": "奇舞周刊",
"xmlUrl": "https://weekly.75.team/rss"
},
{
"description": "淘宝团队技术博客",
"title": "淘系前端团队",
"xmlUrl": "https://fed.taobao.org/atom.xml"
},
{
"description": "字节跳动团队技术博客",
"title": "字节跳动团队技术博客",
"xmlUrl": "https://blog.csdn.net/ByteDanceTech/rss/list"
},
{
"description": "美团技术团队博客",
"title": "美团技术团队博客",
"xmlUrl": "https://tech.meituan.com/feed/"
},
{
"description": "网易云音乐大前端专栏",
"title": "云音乐大前端专栏",
"xmlUrl": "https://musicfe.dev/rss"
},
{
"description": "FEX 技术周刊",
"title": "百度 FEX 团队",
"xmlUrl": "https://fex.baidu.com/feed.xml"
},
{
"description": "京东设计中心",
"title": "JDC",
"xmlUrl": "https://jdc.jd.com/feed"
},
{
"description": "凹凸技术揭秘 · 技术精进与业务发展两不误",
"title": "凹凸实验室",
"xmlUrl": "https://aotu.io/atom.xml"
},
{
"description": "Apple官方消息",
"title": "Apple新闻",
"xmlUrl": "https://www.apple.com/newsroom/rss-feed.rss"
},
{
"description": "虎嗅网新闻",
"title": "虎嗅",
"xmlUrl": "https://www.huxiu.com/rss/0.xml"
},
{
"description": "36氪",
"title": "36kr",
"xmlUrl": "https://www.36kr.com/feed"
},
{
"description": "微软亚洲研究院技术博客",
"title": "微软亚洲研究院",
"xmlUrl": "https://www.msra.cn/feed"
},
{
"description": "极客公园",
"title": "极客公园",
"xmlUrl": "https://www.geekpark.net/rss"
},
{
"description": "聪明的投资者都在这里,雪球每日精华",
"title": "雪球",
"xmlUrl": "https://xueqiu.com/hots/topic/rss"
},
{
"description": "极其优质的极客新闻",
"title": "Hack News",
"xmlUrl": "https://news.ycombinator.com/rss"
},
{
"description": "奇客的资讯,重要的东西",
"title": "奇客Solidot–传递最新科技情报",
"xmlUrl": "https://www.solidot.org/index.rss"
},
{
"description": "科学美国人中文版,一些科普文章",
"title": "环球科学",
"xmlUrl": "https://feedx.net/rss/huanqiukexue.xml"
},
{
"description": "MIT 科技评论 本周热榜",
"title": "MIT 科技评论",
"xmlUrl": "https://rsshub.v2fy.com/mittrchina/hot"
},
{
"description": "产品运营 - 人人都是产品经理",
"title": "产品运营",
"xmlUrl": "http://www.woshipm.com/category/operate/feed"
},
{
"description": "产品经理 – 人人都是产品经理",
"title": "产品经理",
"xmlUrl": "http://www.woshipm.com/category/pmd/feed"
},
{
"description": "产品人学习成长社区",
"title": "产品100",
"xmlUrl": "http://www.chanpin100.com/feed"
},
{
"description": "美好科技生活方式",
"title": "蓝卡",
"xmlUrl": "https://www.lanka.cn/feed"
},
{
"description": "Simon的自留地_数码_App_羊毛_相机_数字指南",
"title": "APPDO数字生活指南",
"xmlUrl": "https://simonword.com/feed"
},
{
"description": "帮助 Android 工程师进阶成长",
"title": "扔物线",
"xmlUrl": "https://rengwuxian.com/feed"
},
{
"description": "慕课改变你,你改变世界",
"title": "MOOC中国",
"xmlUrl": "https://www.mooc.cn/feed"
},
{
"description": "每个科研小白都有成为大神的潜力",
"title": "青柠学术",
"xmlUrl": "https://iseex.github.io/feed"
},
{
"description": "李子柒的微博",
"title": "李子柒",
"xmlUrl": "https://rsshub.v2fy.com/weibo/user/2970452952"
},
{
"description": "为更理想的生活",
"title": "理想生活实验室",
"xmlUrl": "https://www.toodaylab.com/rss"
},
{
"description": "家的主理人社区",
"title": "一兜糖",
"xmlUrl": "https://rsshub.v2fy.com/yidoutang/index"
},
{
"description": "Adobe旗下设计网站Behance",
"title": "Behance",
"xmlUrl": "https://www.behance.net/feeds/projects"
},
{
"description": "Behance官方博客",
"title": "Behance官方博客",
"xmlUrl": "https://medium.com/feed/@behance"
},
{
"description": "图片设计社交",
"title": "Pinterest",
"xmlUrl": "https://newsroom.pinterest.com/en/feed/posts.xml"
},
{
"description": "优秀设计联盟-优设网-设计师交流学习平台-看设计文章,学软件教程,找灵感素材,尽在优设网!",
"title": "优设",
"xmlUrl": "https://www.uisdc.com/feed"
},
{
"description": "腾讯用户研究与体验设计部",
"title": "腾讯CDC",
"xmlUrl": "https://cdc.tencent.com/feed/"
},
{
"description": "发现有意味的设计",
"title": "ID公社",
"xmlUrl": "http://feeds.feedburner.com/ID"
},
{
"description": "你的随身摄影杂志",
"title": "摄影世界",
"xmlUrl": "https://feedx.net/rss/photoworld.xml"
},
{
"description": "知乎每日精选",
"title": "知乎",
"xmlUrl": "https://www.zhihu.com/rss"
},
{
"description": "关注创业与技术,每天推送3到5篇优质英文文章",
"title": "湾区日报",
"xmlUrl": "https://wanqu.co/feed/"
},
{
"description": "让未来触手可及",
"title": "爱范儿",
"xmlUrl": "https://www.ifanr.com/feed"
},
{
"description": "小众软件RSS",
"title": "小众软件",
"xmlUrl": "https://www.appinn.com/feed/"
},
{
"description": "互联网数据资讯网",
"title": "199IT",
"xmlUrl": "https://www.199it.com/feed"
},
{
"description": "IT之家 - 软媒旗下网站",
"title": "IT之家",
"xmlUrl": "https://www.ithome.com/rss"
},
{
"description": "一切出于兴趣。兴趣是最好的老师,HelloGitHub 就是帮你找到编程的兴趣。",
"title": "HelloGitHub 月刊",
"xmlUrl": "https://hellogithub.com/rss"
},
{
"description": "Python各种Weekly中译版。",
"title": "蠎周刊",
"xmlUrl": "https://weekly.pychina.org/feeds/all.atom.xml"
},
{
"description": "WordPress建站资源平台",
"title": "WordPress大学",
"xmlUrl": "https://www.wpdaxue.com/feed"
},
{
"description": "Linux中文开源社区",
"title": "Linux中国",
"xmlUrl": "https://linux.cn/rss.xml"
},
{
"description": "创意工作者的社区",
"title": "V2EX",
"xmlUrl": "https://www.v2ex.com/index.xml"
},
{
"description": "酷 壳RSS",
"title": "酷壳(左耳朵耗子)",
"xmlUrl": "https://coolshell.cn/feed"
},
{
"description": "豆瓣最受欢迎的影评",
"title": "豆瓣",
"xmlUrl": "https://www.douban.com/feed/review/movie"
},
{
"description": "豆瓣最受欢迎的书评",
"title": "豆瓣",
"xmlUrl": "https://www.douban.com/feed/review/book"
},
{
"description": "豆瓣最受欢迎的乐评",
"title": "豆瓣",
"xmlUrl": "https://www.douban.com/feed/review/music"
},
{
"description": "开源中国社区推荐文章",
"title": "开源中国",
"xmlUrl": "https://www.oschina.net/blog/rss"
},
{
"description": "博客园精华区",
"title": "博客园",
"xmlUrl": "http://feed.cnblogs.com/blog/picked/rss"
},
{
"description": "博客园首页",
"title": "博客园",
"xmlUrl": "http://feed.cnblogs.com/blog/sitehome/rss"
},
{
"description": "PTT电影专题",
"title": "PTT(台湾论坛)",
"xmlUrl": "https://www.ptt.cc/atom/movie.xml"
},
{
"description": "PTT正妹专题",
"title": "PTT(台湾论坛)",
"xmlUrl": "https://www.ptt.cc/atom/beauty.xml"
},
{
"description": "吾爱破解精品软件区",
"title": "吾爱破解",
"xmlUrl": "https://rsshub.v2fy.com/discuz/x/https%3a%2f%2fwww.52pojie.cn%2fforum-16-1.html"
},
{
"description": "从cnBeta每天数千评论中精选出来的优秀评论",
"title": "cnBeta.COM 精彩优秀评论",
"xmlUrl": "https://www.cnbeta.com/commentrss.php"
},
{
"description": "We do not choose who we are, but we do choose who we become.",
"title": "比特客栈的文艺复兴",
"xmlUrl": "https://bitinn.net/feed/"
},
{
"description": "男性向作品排行 - 前20",
"title": "Pixiv(艺术家社区)",
"xmlUrl": "https://rakuen.thec.me/PixivRss/male-20"
},
{
"description": "女性向作品排行 - 前20",
"title": "Pixiv(艺术家社区)",