forked from kagisearch/kite-public
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore_feeds.py
More file actions
1015 lines (1015 loc) · 53.4 KB
/
core_feeds.py
File metadata and controls
1015 lines (1015 loc) · 53.4 KB
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
feeds = {
"AI": [
"http://bair.berkeley.edu/blog/feed.xml",
"http://blog.evjang.com/feeds/posts/default?alt=rss",
"http://distill.pub/rss.xml",
"http://magenta.tensorflow.org/feed.xml",
"http://news.mit.edu/rss/topic/artificial-intelligence2",
"http://newsletter.ruder.io/?format=rss",
"https://aidisruptor.ai/feed",
"https://aiweekly.co/issues.rss",
"https://bensbites.com/blog/rss.xml",
"https://blog.ml.cmu.edu/feed/",
"https://evjang.com/feed",
"https://garymarcus.substack.com/feed",
"https://jalammar.github.io/feed.xml",
"https://lastweekin.ai/feed",
"https://lilianweng.github.io/index.xml",
"https://lilianweng.github.io/lil-log/feed.xml",
"https://machinelearning.apple.com/rss.xml",
"https://news.google.com/rss/topics/CAAqIAgKIhpDQkFTRFFvSEwyMHZNRzFyZWhJQ1pXNG9BQVAB?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqIggKIhxDQkFTRHdvSkwyMHZNREZvZVdoZkVnSmxiaWdBUAE?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqJAgKIh5DQkFTRUFvSEwyMHZNRzFyZWhJRlpXNHRSMElvQUFQAQ?hl=en-CA&gl=CA&ceid=CA%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqJAgKIh5DQkFTRUFvSEwyMHZNRzFyZWhJRlpXNHRSMElvQUFQAQ?hl=en-US&ceid=CA%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqLAgKIiZDQkFTRmdvTkwyY3ZNVEZpZUdNMk5UWjJOaElGWlc0dFIwSW9BQVAB?hl=en-CA&gl=CA&ceid=CA%3Aen&oc=11",
"https://news.mit.edu/topic/mitartificial-intelligence2-rss.xml",
"https://news.mit.edu/topic/mitmachine-learning-rss.xml",
"https://rss.beehiiv.com/feeds/2R3C6Bt5wj.xml",
"https://rss.beehiiv.com/feeds/4EFsI5UmM7.xml",
"https://rss.beehiiv.com/feeds/GcFiF2T4I5.xml",
"https://rss.beehiiv.com/feeds/gtwKcGOtrm.xml",
"https://rss.beehiiv.com/feeds/lvG7CGESX1.xml",
"https://rss.beehiiv.com/feeds/vGKavlVUFO.xml",
"https://simonwillison.net/atom/everything/",
"https://syncedreview.com/feed/",
"https://techcrunch.com/category/artificial-intelligence/feed/",
"https://techxplore.com/rss-feed/breaking/machine-learning-ai-news/",
"https://techxplore.com/rss-feed/machine-learning-ai-news/",
"https://the-decoder.com/feed/",
"https://theconversation.com/us/topics/machine-learning-8332/articles.atom",
"https://thegradient.pub/rss/",
"https://towardsdatascience.com/feed",
"https://venturebeat.com/category/ai/feed/",
"https://www.ai-supremacy.com/feed",
"https://www.amazon.science/index.rss",
"https://www.exponentialview.co/feed",
"https://www.interconnects.ai/feed",
"https://www.latent.space/feed",
"https://www.louisbouchard.ai/rss/",
"https://www.nextomoro.com/rss/",
"https://www.reddit.com/r/Anthropic/.rss",
"https://www.reddit.com/r/ChatGPT/.rss",
"https://www.reddit.com/r/ChatGPTCoding/.rss",
"https://www.reddit.com/r/DeepSeek/.rss",
"https://www.reddit.com/r/LocalLLaMA/.rss",
"https://www.reddit.com/r/MachineLearning/.rss",
"https://www.reddit.com/r/MachineLearning/top/.rss",
"https://www.reddit.com/r/OpenAI/.rss",
"https://www.reddit.com/r/agi/.rss",
"https://www.reddit.com/r/artificial/.rss",
"https://www.sciencedaily.com/rss/computers_math/artificial_intelligence.xml",
"https://www.swyx.io/rss.xml",
"https://www.theverge.com/rss/ai-artificial-intelligence/index.xml",
"https://www.tostring.ai/feed",
"https://www.unite.ai/feed/",
"https://www.wired.com/feed/rss",
"https://www.youtube.com/feeds/videos.xml?channel_id=UC5Wz4fFacYuON6IKbhSa7Zw",
"https://www.youtube.com/feeds/videos.xml?channel_id=UCCKx8mAHiFus-XYQLy_WnaA",
"https://www.youtube.com/feeds/videos.xml?channel_id=UCDZfn935vwaahDabsfylfIQ",
"https://www.youtube.com/feeds/videos.xml?channel_id=UCDq7SjbgRKty5TgGafW8Clg",
"https://www.youtube.com/feeds/videos.xml?channel_id=UCEAbqW0HFB_UxZoUDO0kJBw",
"https://www.youtube.com/feeds/videos.xml?channel_id=UCPocEocBKqXv5rzQYWugHMQ",
"https://www.youtube.com/feeds/videos.xml?channel_id=UCZHmQk67mSJgfCCTn7xBfew",
"https://www.youtube.com/feeds/videos.xml?channel_id=UCbfYPyITQ-7l4upoX8nvctg",
"https://www.youtube.com/feeds/videos.xml?channel_id=UCcIXc5mJsHVYTZR1maL5l9w",
"https://www.youtube.com/feeds/videos.xml?channel_id=UChpleBmo18P08aKCIgti38g",
],
"Asia": [
"http://feeds.bbci.co.uk/news/world/asia/rss.xml",
"https://feeds.npr.org/1125/rss.xml",
"https://rss.dw.com/rdf/rss-en-asia",
"https://rss.nytimes.com/services/xml/rss/nyt/AsiaPacific.xml",
"https://www.economist.com/asia/rss.xml",
"https://www.euronews.com/rss?level=program&name=asia-news",
"https://www.ft.com/world/asia-pacific?format=rss",
"https://www.scmp.com/rss/3/feed",
"https://www.theguardian.com/world/asia/rss",
],
"Autos": [
"https://www.sfgate.com/rss/feed/car-news-rss-feed-441.php",
],
"Bay": [
"http://www.smdailyjournal.com/search/?f=rss&t=article&c=news/local&l=50&s=start_time&sd=desc",
"https://48hills.org/feed/",
"https://abc7news.com/feed/",
"https://calmatters.org/feed/",
"https://hoodline.com/news/bay-area/rss/",
"https://localnewsmatters.org/feed/",
"https://lookout.co/feed/",
"https://midpenpost.org/feed/",
"https://missionlocal.org/feed/",
"https://news.google.com/rss/topics/CAAqIQgKIhtDQkFTRGdvSUwyMHZNRFp3ZG5JU0FtVnVLQUFQAQ?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://oaklandside.org/feed/",
"https://pacificsun.com/feed/",
"https://padailypost.com/feed/",
"https://sanjosespotlight.com/feed/",
"https://sf.eater.com/rss/index.xml",
"https://sfbayca.com/feed/",
"https://sfbaytimes.com/feed/",
"https://sfbayview.com/feed/",
"https://sfist.com/rss/",
"https://sfnews.us/rss/",
"https://sfstandard.com/feed/",
"https://sftimes.com/feed/",
"https://whatnow.com/san-francisco/feed/",
"https://www.almanacnews.com/feed/",
"https://www.cbsnews.com/sanfrancisco/latest/rss/local-news",
"https://www.eastbaytimes.com/location/california/bay-area/feed/",
"https://www.kron4.com/feed/",
"https://www.kron4.com/news/app-feed",
"https://www.ktvu.com/rss/category/local-news",
"https://www.marinij.com/local-news/feed/",
"https://www.mercurynews.com/location/california/bay-area/feed/",
"https://www.mercurynews.com/location/california/bay-area/peninsula/feed/",
"https://www.nbcbayarea.com/news/local/feed/",
"https://www.paloaltoonline.com/feed/",
"https://www.reddit.com/r/bayarea/.rss",
"https://www.reddit.com/r/sanfrancisco/.rss",
"https://www.sfgate.com/bayarea/feed/bay-area-news-429.php",
"https://www.sfpublicpress.org/category/news/feed/",
"https://www.siliconvalley.com/feed/",
"https://www.thesfnews.com/feed",
],
"Books": [
"https://feeds.feedburner.com/nybooks",
"https://www.goodreads.com/blog/list_rss",
"https://www.nytimes.com/section/books/review/rss.xml",
"https://www.nytimes.com/svc/collections/v1/publish/",
"https://www.theguardian.com/books/booksblog/rss",
],
"Business": [
"http://feeds.benzinga.com/benzinga",
"http://feeds.feedburner.com/AtlanticBusinessChannel",
"http://feeds.feedburner.com/CalculatedRisk",
"http://feeds.feedburner.com/TheBigPicture",
"http://feeds2.feedburner.com/businessinsider",
"http://fortune.com/feed/",
"http://freakonomics.com//feed/",
"http://www.economist.com/rss/the_world_this_week_rss.xml",
"http://www.marketwatch.com/rss/topstories/",
"http://www.metafilter.com/tags/business/rss",
"http://www.metafilter.com/tags/economics/rss",
"http://www.sbnonline.com/feed/",
"http://www.thenonprofittimes.com/feed/",
"https://abcnews.go.com/abcnews/moneyheadlines",
"https://api.axios.com/feed/business",
"https://economictimes.indiatimes.com/rssfeedsdefault.cms",
"https://feeds.a.dj.com/rss/RSSMarketsMain.xml",
"https://feeds.a.dj.com/rss/WSJcomUSBusiness.xml",
"https://feeds.bbci.co.uk/news/business/rss.xml",
"https://feeds.bloomberg.com/business/news.rss",
"https://feeds.bloomberg.com/economics/news.rss",
"https://feeds.bloomberg.com/markets/news.rss",
"https://feeds.bloomberg.com/wealth/news.rss",
"https://feeds.elpais.com/mrss-s/list/ep/site/english.elpais.com/section/economy-and-business",
"https://feeds.feedburner.com/Mixergy-main-podcast",
"https://feeds.npr.org/1006/rss.xml",
"https://feeds.npr.org/1017/rss.xml",
"https://feeds.washingtonpost.com/rss/business",
"https://finance.yahoo.com/news/rssindex",
"https://fortune.com/feed",
"https://homebusinessmag.com/feed/",
"https://indianexpress.com/section/business/feed/",
"https://news.google.com/rss/topics/CAAqIQgKIhtDQkFTRGdvSUwyMHZNR1J5Y1hBU0FtVnVLQUFQAQ?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqIQgKIhtDQkFTRGdvSUwyMHZNREpmTjNRU0FtVnVLQUFQAQ?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRGx6TVdZU0FtVnVHZ0pWVXlnQVAB?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqKAgKIiJDQkFTRXdvSkwyMHZNR2RtY0hNekVnWmxjeTAwTVRrb0FBUAE?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://openrss.org/apnews.com/business",
"https://openrss.org/www.reuters.com/business/",
"https://qz.com/rss",
"https://rss.dw.com/rdf/rss-en-bus",
"https://rss.nytimes.com/services/xml/rss/nyt/Business.xml",
"https://rss.nytimes.com/services/xml/rss/nyt/Economy.xml",
"https://seekingalpha.com/feed.xml",
"https://seekingalpha.com/listing/most-popular-articles.xml",
"https://seekingalpha.com/market_currents.xml",
"https://seekingalpha.com/tag/editors-picks.xml",
"https://soylentnews.org/index.rss",
"https://theconversation.com/us/business/articles.atom",
"https://tim.blog/feed/",
"https://time.com/business/feed",
"https://www.cbsnews.com/latest/rss/moneywatch",
"https://www.chicagotribune.com/business/feed/",
"https://www.cnbc.com/id/100003114/device/rss/rss.html",
"https://www.economist.com/finance-and-economics/rss.xml",
"https://www.euronews.com/rss?level=vertical&name=business",
"https://www.firstpost.com/commonfeeds/v1/mfp/rss/business.xml",
"https://www.ft.com/companies?format=rss",
"https://www.ft.com/markets?format=rss",
"https://www.ft.com/rss/home",
"https://www.ft.com/rss/home/international",
"https://www.ft.com/technology?format=rss",
"https://www.gobankingrates.com/feed/",
"https://www.investing.com/rss/news.rss",
"https://www.latimes.com/business/rss2.0.xml",
"https://www.mckinsey.com/insights/rss.aspx",
"https://www.pbs.org/newshour/feeds/rss/economy",
"https://www.reddit.com/r/Economics/.rss",
"https://www.reddit.com/r/GlobalMarkets/.rss",
"https://www.reddit.com/r/business/.rss",
"https://www.reddit.com/r/economy/.rss",
"https://www.reddit.com/r/finance/.rss",
"https://www.reddit.com/r/investing/.rss",
"https://www.rt.com/rss/business/",
"https://www.scmp.com/rss/92/feed",
"https://www.seattletimes.com/business/feed/",
"https://www.sfgate.com/rss/feed/business-and-technology-news-448.php",
"https://www.spiegel.de/international/business/index.rss",
"https://www.theguardian.com/uk/business/rss",
"https://www.theguardian.com/uk/money/rss",
"https://www.wired.com/feed/category/business/latest/rss",
"https://www.youtube.com/feeds/videos.xml?user=Bloomberg",
"https://www.youtube.com/feeds/videos.xml?user=businessinsider",
],
"Celebs and Movies": [
"http://entertainmentweekly.tumblr.com/rss",
"http://www.tmz.com/rss.xml",
"https://feeds2.feedburner.com/slashfilm",
"https://indianexpress.com/section/entertainment/feed/",
"https://www.avclub.com/rss",
],
"Culture": [
"http://feeds.feedburner.com/99pi",
"http://feeds.kottke.org/main",
"https://aeon.co/feed.rss",
"https://feeds.feedburner.com/damninteresting/all",
"https://feeds.npr.org/1008/rss.xml",
"https://feeds.npr.org/1045/rss.xml",
"https://feeds.npr.org/1048/rss.xml",
"https://quillette.com/tag/art-and-culture/rss/",
"https://rss.csmonitor.com/feeds/theculture",
"https://rss.dw.com/rdf/rss-en-cul",
"https://theconversation.com/us/arts/articles.atom",
"https://www.atlasobscura.com/feeds/latest",
"https://www.boston.com/category/culture/feed/",
"https://www.euronews.com/rss?level=vertical&name=culture",
"https://www.firstpost.com/commonfeeds/v1/mfp/rss/art-and-culture.xml",
"https://www.latimes.com/entertainment-arts/rss2.0.xml",
"https://www.openculture.com/feed",
"https://www.pbs.org/newshour/feeds/rss/arts",
"https://www.pbs.org/newshour/feeds/rss/education",
"https://www.scmp.com/rss/318202/feed",
"https://www.scmp.com/rss/322296/feed",
"https://www.sfgate.com/rss/feed/culture-530.php",
"https://www.wired.com/feed/category/culture/latest/rss",
],
"Design": [
"http://airbnb.design/feed/",
"http://boxesandarrows.com/rss/",
"http://feeds.feedburner.com/uxmovement",
"https://feeds.feedburner.com/CssTricks",
"https://feeds.feedburner.com/JustCreativeDesignBlog",
"https://feeds.npr.org/1047/rss.xml",
"https://interaction-design.org/rss/site_news.xml",
"https://slack.design/feed/",
"https://usabilitygeek.com/feed/",
"https://uxdesign.cc/feed",
"https://uxmatters.com/index.xml",
"https://uxmovement.com/feed/",
"https://uxplanet.org/feed",
"https://uxstudioteam.com/ux-blog/feed/",
"https://web.dev/feed.xml",
"https://www.invisionapp.com/inside-design/feed",
"https://www.nngroup.com/feed/rss/",
"https://www.smashingmagazine.com/feed",
"https://www.smashingmagazine.com/feed/",
],
"Food": [
"http://feeds.feedburner.com/seriouseatsfeaturesvideos",
"http://feeds.feedburner.com/smittenkitchen",
"https://www.101cookbooks.com/feed",
"https://www.sfgate.com/rss/feed/food-dining-550.php",
"https://www.skinnytaste.com/feed/",
],
"Freedom From Accounts": [
"http://beeple.tumblr.com/rss",
"https://vimeo.com/user36872580/videos/rss",
],
"Gaming": [
"http://feeds.arstechnica.com/arstechnica/gaming/",
"http://feeds.feedburner.com/RockPaperShotgun",
"http://feeds.feedburner.com/TheAncientGamingNoob",
"http://feeds.feedburner.com/psblog",
"http://feeds.ign.com/ign/all",
"http://feeds.ign.com/ign/games-all",
"http://indiegamesplus.com/feed",
"http://itrunsdoom.tumblr.com/rss",
"http://news.xbox.com/feed",
"http://rss.slashdot.org/Slashdot/slashdotGames",
"http://tinycartridge.com/rss",
"http://toucharcade.com/feed/",
"http://www.metafilter.com/tags/games/rss",
"http://www.metafilter.com/tags/gaming/rss",
"http://www.newgamernation.com/feed/",
"http://www.nintendolife.com/feeds/latest",
"http://www.pushsquare.com/feeds/latest",
"http://www.vg247.com/feed/",
"https://80.lv/feed",
"https://arstechnica.com/gaming/feed/",
"https://dotesports.com/feed",
"https://esports.gg/api/feed/",
"https://esportsinsider.com/feed",
"https://feeds.feedburner.com/Co-optimus",
"https://feeds.feedburner.com/GeekNative",
"https://galyonk.in/feed",
"https://gamerant.com/feed/",
"https://gameranx.com/feed/",
"https://games.mxdwn.com/feed/",
"https://gematsu.com/feed",
"https://indiegamecloud.com/feed/",
"https://insider-gaming.com/feed/",
"https://kotaku.com/rss",
"https://majornelson.com/feed/",
"https://mynintendonews.com/feed",
"https://news.google.com/rss/topics/CAAqIQgKIhtDQkFTRGdvSUwyMHZNREZ0ZHpFU0FtVnVLQUFQAQ?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqIggKIhxDQkFTRHdvSkwyMHZNREp4YURjNUVnSnlkU2dBUAE?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqIggKIhxDQkFTRHdvSkwyMHZNRFkxYTNKNkVnSmxiaWdBUAE?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.xbox.com/en-us/feed/",
"https://nichegamer.com/feed/",
"https://nowrongwaytoplay.tumblr.com/rss",
"https://retrododo.com/feed/",
"https://store.steampowered.com/feeds/news.xml",
"https://tagn.wordpress.com/feed/",
"https://techaeris.com/feed/",
"https://techiemag.co.uk/category/gaming/feed/",
"https://toucharcade.com/feed/",
"https://wccftech.com/feed/",
"https://www.cgchannel.com/feed/",
"https://www.destructoid.com/feed/",
"https://www.esports.net/feed/",
"https://www.eurogamer.net/?format=rss",
"https://www.eurogamer.net/feed",
"https://www.eventhubs.com/news/feed/frontpage/",
"https://www.gamesindustry.biz/feed",
"https://www.gamespot.com/feeds/mashup/",
"https://www.gamesradar.com/feeds.xml",
"https://www.gamewatcher.com/feeds/rss",
"https://www.gematsu.com/feed",
"https://www.giantbomb.com/feeds/mashup",
"https://www.indieretronews.com/feeds/posts/default",
"https://www.inoreader.com/stream/user/1004847564/tag/Gaming%20Company%20Feeds",
"https://www.makeupandbeautyblog.com/feed/",
"https://www.mmorpg.com/rss",
"https://www.only-gaming.com/feed/",
"https://www.operationsports.com/feed/",
"https://www.pcgamer.com/feeds.xml",
"https://www.pcgamesn.com/mainrss.xml",
"https://www.pcinvasion.com/feed/",
"https://www.pcworld.com/gaming/news/feed",
"https://www.penny-arcade.com/feed",
"https://www.polygon.com/rss/index.xml",
"https://www.reddit.com/r/Games/.rss",
"https://www.reddit.com/r/NintendoSwitch/.rss",
"https://www.reddit.com/r/PS5/.rss",
"https://www.reddit.com/r/XboxSeriesX/.rss",
"https://www.reddit.com/r/consoles/.rss",
"https://www.reddit.com/r/esports/.rss",
"https://www.reddit.com/r/gamers/.rss",
"https://www.reddit.com/r/gaming.rss",
"https://www.reddit.com/r/indiegames/.rss",
"https://www.reddit.com/r/pcgaming/.rss",
"https://www.reddit.com/r/playstation/.rss",
"https://www.reddit.com/r/retrogaming/.rss",
"https://www.retrogarden.co.uk/feed/",
"https://www.retronews.com/feed/",
"https://www.rockpapershotgun.com/feed/",
"https://www.siliconera.com/feed/",
"https://www.thegamer.com/feed/",
"https://www.theguardian.com/games/rss",
"https://www.timeextension.com/feeds/latest",
"https://www.tomshardware.com/feeds/tag/pc-gaming",
"https://www.vg247.com/feed/",
],
"Guns": [
"https://homemadeguns.wordpress.com/feed/",
"https://www.forgottenweapons.com/feed/",
"https://www.nrablog.com/rss",
"https://www.thefirearmblog.com/blog/feed/",
],
"Linux": [
"http://feeds.feedburner.com/UbuntuhandbookNewsTutorialsHowtosForUbuntuLinux",
"https://linuxconfig.org/feed",
"https://linuxhandbook.com/rss/",
"https://linuxhint.com/feed/",
"https://tecadmin.net/feed/",
"https://www.cyberciti.com/feed/",
"https://www.omgubuntu.co.uk/feed",
"https://www.rosehosting.com/blog/feed/",
"https://www.tecmint.com/feed/",
],
"Middle East": [
"https://feeds.npr.org/1009/rss.xml",
"https://rss.nytimes.com/services/xml/rss/nyt/MiddleEast.xml",
"https://www.lemonde.fr/middle-east/rss_full.xml",
"https://www.scmp.com/rss/322264/feed",
],
"Music": [
"https://3hive.com/feed/",
"https://daily.bandcamp.com/feed/",
"https://pitchfork.com/rss/reviews/best/albums/",
"https://www.nme.com/feed",
"https://www.stereogum.com/feed/",
],
"Podcasts": [
"http://rss.acast.com/themagnusarchives",
"http://www.uncannyjapan.com/feed/podcast/",
"https://darknetdiaries.com/podcast.xml",
"https://rss.acast.com/plumbingthedeathstar",
"https://www.lorepodcast.com/episodes?format=RSS",
],
"Science": [
"http://feeds.bbci.co.uk/news/science_and_environment/rss.xml",
"http://feeds.feedburner.com/AllDiscovermagazinecomContent",
"http://feeds.feedburner.com/BodyHorrors",
"http://rss.cnn.com/rss/edition_space.rss",
"http://rss.sciam.com/ScientificAmerican-Global",
"http://rss.sciam.com/ScientificAmerican-Global?format=xml",
"http://www.futurity.org/feed/",
"http://www.metafilter.com/tags/science/rss",
"http://www.nature.com/nature/current_issue/rss",
"http://www.quantamagazine.org/feed/",
"http://www.twis.org/feed/",
"https://api.axios.com/feed/science",
"https://charmingscience.com/feed/",
"https://cosmosmagazine.com/feed/",
"https://eos.org/feed",
"https://feeds.bbci.co.uk/news/science_and_environment/rss.xml",
"https://feeds.elpais.com/mrss-s/list/ep/site/english.elpais.com/section/climate",
"https://feeds.elpais.com/mrss-s/list/ep/site/english.elpais.com/section/health",
"https://feeds.elpais.com/mrss-s/list/ep/site/english.elpais.com/section/science-tech",
"https://feeds.feedburner.com/AllDiscovermagazinecomContent",
"https://feeds.newscientist.com/home",
"https://feeds.npr.org/1007/rss.xml",
"https://feeds.npr.org/1025/rss.xml",
"https://feeds.npr.org/1026/rss.xml",
"https://feeds.npr.org/1028/rss.xml",
"https://feeds.science.org/rss/science.xml",
"https://feeds.simplecast.com/y1LF_sn2",
"https://flowingdata.com/feed",
"https://futurism.com/feed",
"https://gizmodo.com/tag/science/rss",
"https://grist.org/feed/",
"https://nautil.us/feed/",
"https://news.climate.columbia.edu/feed/",
"https://news.google.com/rss/topics/CAAqIQgKIhtDQkFTRGdvSUwyMHZNRE0yWHpJU0FtbDBLQUFQAQ?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqIQgKIhtDQkFTRGdvSUwyMHZNRFZ4YW5RU0FtVnVLQUFQAQ?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqIggKIhxDQkFTRHdvSkwyMHZNR1F3TmpOMkVnSmxiaWdBUAE?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqIggKIhxDQkFTRHdvSkwyMHZNREU0TXpOM0VnSmxiaWdBUAE?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqIggKIhxDQkFTRHdvSkwyMHZNREp3ZVRBNUVnSmxiaWdBUAE?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqJQgKIh9DQkFTRVFvSUwyMHZNREUxTkRBU0JXVnVMVWRDS0FBUAE?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp0Y1RjU0FtVnVHZ0pWVXlnQVAB?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news.mit.edu/rss/research",
"https://news.mit.edu/rss/topic/science-technology-and-society",
"https://openrss.org/apnews.com/science",
"https://pa.tedcdn.com/feeds/talks.rss",
"https://phys.org/rss-feed/",
"https://phys.org/rss-feed/breaking/",
"https://podcasts.files.bbci.co.uk/b00snr0w.rss",
"https://podcasts.files.bbci.co.uk/p002w557.rss",
"https://quillette.com/tag/science-tech/rss",
"https://reddit.com/r/science/.rss",
"https://rss.dw.com/xml/rss_en_environment",
"https://rss.dw.com/xml/rss_en_science",
"https://rss.nytimes.com/services/xml/rss/nyt/Climate.xml",
"https://rss.nytimes.com/services/xml/rss/nyt/Science.xml",
"https://rss.nytimes.com/services/xml/rss/nyt/Space.xml",
"https://sciencealert.com/feed/gn/",
"https://sciencebasedmedicine.org/feed/",
"https://scienceblog.com/feed/",
"https://sciencefeatured.com/feed/",
"https://scitechdaily.com/feed/",
"https://sciworthy.com/feed/",
"https://singularityhub.com/feed/",
"https://soylentnews.org/index.rss",
"https://theconversation.com/us/technology/articles.atom",
"https://thelumberjack.org/category/science/feed/",
"https://time.com/science/feed/",
"https://undark.org/feed/",
"https://what-if.xkcd.com/feed.atom",
"https://www.advancedsciencenews.com/feed/",
"https://www.aljazeera.com/xml/rss/all.xml",
"https://www.anthropocenemagazine.org/feed/",
"https://www.astro.gla.ac.uk/users/eduard/cesra/?feed=rss2",
"https://www.economist.com/science-and-technology/rss.xml",
"https://www.kolabtree.com/blog/feed/",
"https://www.latimes.com/science/rss2.0.xml",
"https://www.livescience.com/feeds.xml",
"https://www.nasa.gov/feed/",
"https://www.nasa.gov/rss/dyn/lg_image_of_the_day.rss",
"https://www.nature.com/nature.rss",
"https://www.nsf.gov/rss/rss_www_news.xml",
"https://www.pbs.org/newshour/feeds/rss/science",
"https://www.popsci.com/rss.xml",
"https://www.psypost.org/feed/",
"https://www.reddit.com/r/Anthropology/.rss",
"https://www.reddit.com/r/EarthScience/.rss",
"https://www.reddit.com/r/Futurism/.rss",
"https://www.reddit.com/r/Futurology/.rss",
"https://www.reddit.com/r/Physics/.rss",
"https://www.reddit.com/r/biology/.rss",
"https://www.reddit.com/r/chemistry/.rss",
"https://www.reddit.com/r/climate/.rss",
"https://www.reddit.com/r/environment/.rss",
"https://www.reddit.com/r/environmental_science/.rss",
"https://www.reddit.com/r/hardscience/.rss",
"https://www.reddit.com/r/science/.rss",
"https://www.reddit.com/r/space/.rss",
"https://www.sci.news/feed",
"https://www.scidev.net/global/rss.xml/?type=header",
"https://www.science.org/rss/news_current.xml",
"https://www.sciencealert.com/rss",
"https://www.sciencedaily.com/rss/all.xml",
"https://www.sciencenews.org/feed",
"https://www.scientificamerican.com/platform/syndication/rss/",
"https://www.scimex.org/rss",
"https://www.smithsonianmag.com/rss/science-nature/",
"https://www.snexplores.org/feed",
"https://www.space.com/feeds/all",
"https://www.technologynetworks.com/applied-sciences/news/rss",
"https://www.the-scientist.com/rss/feed-the-scientist.xml",
"https://www.theguardian.com/environment/climate-crisis/rss",
"https://www.theguardian.com/science/rss",
"https://www.thehindu.com/sci-tech/science/feeder/default.rss",
"https://www.wired.com/feed/category/science/latest/rss",
"https://www.yahoo.com/news/rss/science",
"https://www.youtube.com/feeds/videos.xml?channel_id=UCqZQJ4600a9wIfMPbYc60OQ",
"https://www.zmescience.com/feed/",
],
"Sports": [
"http://feeds.bbci.co.uk/sport/rss.xml",
"http://feeds.bbci.co.uk/sport/rss.xml?edition=int#",
"http://feeds.skynews.com/feeds/rss/sports.xml",
"http://newsrss.bbc.co.uk/rss/sportonline_world_edition/front_page/rss.xml",
"http://rss.cnn.com/rss/edition_sport.rss",
"http://www.espn.com/espn/rss/news",
"https://api.foxsports.com/v1/rss?partnerKey=zBaFxRyGKCfxBagJG9b8pqLyndmvo7UU",
"https://e00-marca.uecdn.es/rss/en/index.xml",
"https://feeds.elpais.com/mrss-s/list/ep/site/english.elpais.com/section/sports",
"https://feeds.washingtonpost.com/rss/sports",
"https://golfnews.co.uk/feed/",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB/sections/CAQiQkNCQVNLd29JTDIwdk1EWnVkR29TQW1WdUdnSlZVeUlPQ0FRYUNnb0lMMjB2TURVNWVXb3FCd29GRWdOT1Jrd29BQSoqCAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVABUAE?hl=en-US&gl=US&ceid=US%3Aen",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB/sections/CAQiR0NCQVNMd29JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlJT0NBUWFDZ29JTDIwdk1ETTNhSG9xQ0FvR0VnUkhiMnhtS0FBKi4IACoqCAoiJENCQVNGUW9JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlnQVABUAE?hl=en-GB&gl=GB&ceid=GB%3Aen",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB/sections/CAQiRENCQVNMUW9JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlJT0NBUWFDZ29JTDIwdk1ESjRlaklxQmdvRUVnSkdNU2dBKi4IACoqCAoiJENCQVNGUW9JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlnQVABUAE?hl=en-GB&gl=GB&ceid=GB%3Aen",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB/sections/CAQiS0NCQVNNZ29JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlJT0NBUWFDZ29JTDIwdk1ERnpaMndxQ3dvSkVnZERlV05zYVc1bktBQSouCAAqKggKIiRDQkFTRlFvSUwyMHZNRFp1ZEdvU0JXVnVMVWRDR2dKSFFpZ0FQAVAB?hl=en-GB&gl=GB&ceid=GB%3Aen",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB/sections/CAQiS0NCQVNNZ29JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlJT0NBUWFDZ29JTDIwdk1EbDRjRjhxQ3dvSkVnZERjbWxqYTJWMEtBQSouCAAqKggKIiRDQkFTRlFvSUwyMHZNRFp1ZEdvU0JXVnVMVWRDR2dKSFFpZ0FQAVAB?hl=en-GB&gl=GB&ceid=GB%3Aen",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB/sections/CAQiSENCQVNNQW9JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlJT0NBUWFDZ29JTDIwdk1EWmljV1FxQ1FvSEVnVlNkV2RpZVNnQSouCAAqKggKIiRDQkFTRlFvSUwyMHZNRFp1ZEdvU0JXVnVMVWRDR2dKSFFpZ0FQAVAB?hl=en-GB&gl=GB&ceid=GB%3Aen",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB/sections/CAQiSkNCQVNNUW9JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlJT0NBUWFDZ29JTDIwdk1EZGljekFxQ2dvSUVnWlVaVzV1YVhNb0FBKi4IACoqCAoiJENCQVNGUW9JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlnQVABUAE?hl=en-GB&gl=GB&ceid=GB%3Aen",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB/sections/CAQiSkNCQVNNUW9JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlJT0NBUWFDZ29JTDIwdk1HcDRlSFFxQ2dvSUVnWlNZV05wYm1jb0FBKi4IACoqCAoiJENCQVNGUW9JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlnQVABUAE?hl=en-GB&gl=GB&ceid=GB%3Aen",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB/sections/CAQiTENCQVNNd29JTDIwdk1EWnVkR29TQldWdUxVZENHZ0pIUWlJT0NBUWFDZ29JTDIwdk1ESjJlRFFxREFvS0VnaEdiMjkwWW1Gc2JDZ0EqLggAKioICiIkQ0JBU0ZRb0lMMjB2TURadWRHb1NCV1Z1TFVkQ0dnSkhRaWdBUAFQAQ?hl=en-GB&gl=GB&ceid=GB%3Aen",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB?hl=en-GB&gl=GB&ceid=GB%3Aen",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtVnVHZ0pWVXlnQVAB?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://openrss.org/www.inquirer.com/sports/",
"https://rss.dw.com/rdf/rss-en-sports",
"https://rss.nytimes.com/services/xml/rss/nyt/Sports.xml",
"https://sports.yahoo.com/rss/",
"https://time.com/sports/feed/",
"https://www.cbssports.com/rss/headlines/",
"https://www.chicagotribune.com/sports/feed/",
"https://www.cyclingnews.com/feeds.xml",
"https://www.dawn.com/feeds/sport/",
"https://www.espn.com/espn/rss/news",
"https://www.football365.com/rss",
"https://www.foxsports.com/feedout/syndicatedContent?categoryId=117",
"https://www.independent.co.uk/sport/rss",
"https://www.latimes.com/sports/rss2.0.xml",
"https://www.reddit.com/r/CFB.rss",
"https://www.reddit.com/r/formula1.rss",
"https://www.reddit.com/r/golf.rss",
"https://www.reddit.com/r/indepthsports.rss",
"https://www.reddit.com/r/mlb.rss",
"https://www.reddit.com/r/nba.rss",
"https://www.reddit.com/r/nfl.rss",
"https://www.reddit.com/r/soccer.rss",
"https://www.reddit.com/r/sports.rss",
"https://www.scmp.com/rss/95/feed",
"https://www.seattletimes.com/sports/feed/",
"https://www.sfgate.com/rss/feed/top-sports-stories-rss-feed-487.php",
"https://www.skysports.com/rss/12040",
"https://www.sportskeeda.com/feed",
"https://www.teamtalk.com/rss",
"https://www.theguardian.com/sport/rss",
"https://www.theguardian.com/uk/sport/rss",
"https://www.thehindu.com/sport/feeder/default.rss",
"https://www.triathlonmag.com.au/rss",
"https://www.westhesportsguy.com/feeds/posts/default",
],
"Technology": [
"http://anandtech.com/rss/",
"http://atomicsupermen.wordpress.com/feed/",
"http://bloggingthemonkey.blogspot.com/feeds/posts/default",
"http://boingboing.net/feed",
"http://feeds.arstechnica.com/arstechnica/index",
"http://feeds.feedburner.com/AllDiscovermagazinecomContent?format=xml",
"http://feeds.feedburner.com/IeeeSpectrumFullText",
"http://feeds.feedburner.com/IntoMobile?format=xml",
"http://feeds.feedburner.com/KhronosorgNews",
"http://feeds.feedburner.com/Liliputing?format=xml",
"http://feeds.feedburner.com/Medgadget",
"http://feeds.feedburner.com/NanotechwebTechUpdate",
"http://feeds.feedburner.com/RedmondPie",
"http://feeds.feedburner.com/Techcrunch",
"http://feeds.feedburner.com/armdevices?format=xml",
"http://feeds.feedburner.com/cnx-software/blog?format=xml",
"http://feeds.feedburner.com/igyaan",
"http://feeds.feedburner.com/oled-info",
"http://feeds.feedburner.com/reason/AllArticles",
"http://feeds.feedburner.com/ubergizmo",
"http://feeds.feedburner.com/venturebeat/SZYF",
"http://feeds.mashable.com/Mashable",
"http://freegamer.blogspot.com/feeds/posts/default",
"http://gliden64.blogspot.com/feeds/posts/default",
"http://gpuopen.com/feed/",
"http://lwn.net/headlines/newrss",
"http://makezine.com/feed/",
"http://mobilesemi.blogspot.com/feeds/posts/default",
"http://rss.cnn.com/rss/cnn_tech.rss",
"http://rss.nytimes.com/services/xml/rss/nyt/Technology.xml",
"http://rss.slashdot.org/Slashdot/slashdot",
"http://rss.slashdot.org/Slashdot/slashdotMain",
"http://semiaccurate.com/feed/",
"http://semiengineering.com/feed/",
"http://sreweekly.com/feed/",
"http://stratechery.com/feed/",
"http://thehackernews.com/feeds/posts/default",
"http://www.androidauthority.com/feed",
"http://www.androidpolice.com/feed",
"http://www.cancelledscifi.com/feed/",
"http://www.computerweekly.com/rss/All-Computer-Weekly-content.xml",
"http://www.cringely.com/feed/",
"http://www.digitimes.com/rss/daily.xml",
"http://www.engadget.com/rss.xml",
"http://www.extremetech.com/feed",
"http://www.fark.com/fark.rss",
"http://www.fudzilla.com/?format=feed",
"http://www.jeffq.com/blog/feed/",
"http://www.lakka.tv/articles/feed.xml",
"http://www.libretro.com/index.php/feed/",
"http://www.macrumors.com/macrumors.xml",
"http://www.metafilter.com/tags/apple/rss",
"http://www.metafilter.com/tags/computers/rss",
"http://www.metafilter.com/tags/google/rss",
"http://www.metafilter.com/tags/internet/rss",
"http://www.metafilter.com/tags/technology/rss",
"http://www.metafilter.com/tags/web/rss",
"http://www.mondo2000.com/feed/",
"http://www.phdcomics.com/gradfeed.php",
"http://www.phoronix.com/phoronix-rss.php",
"http://www.pocketables.com/feed",
"http://www.sammobile.com/feed/",
"http://www.smbc-comics.com/rss.php",
"http://www.techcentral.ie/feed/",
"http://www.techradar.com/rss",
"http://www.theregister.co.uk/headlines.atom",
"http://www.theverge.com/rss/full.xml",
"http://www.tomshardware.com/feeds/rss2/all.xml",
"http://www.umpcportal.com/feed/",
"http://www.wired.com/feed/",
"http://www.xda-developers.com/feed/",
"http://www.zdnet.com/news/rss.xml",
"http://xenia.jp/feed.xml",
"https://512pixels.net/feed/",
"https://9to5google.com/feed",
"https://9to5mac.com/feed/",
"https://abcnews.go.com/abcnews/technologyheadlines",
"https://androidpctv.com/feed/",
"https://api.axios.com/feed/technology",
"https://appleinsider.com/rss/news/",
"https://atp.fm/rss",
"https://betanews.com/feed/",
"https://cloudseclist.com/feed.xml",
"https://digitechbytes.com/feed/",
"https://electrek.co/feed/",
"https://feeds.bbci.co.uk/news/technology/rss.xml",
"https://feeds.elpais.com/mrss-s/list/ep/site/english.elpais.com/section/science-tech",
"https://feeds.elpais.com/mrss-s/list/ep/site/english.elpais.com/section/technology",
"https://feeds.feedblitz.com/newatlas",
"https://feeds.feedburner.com/ausdroid/feed",
"https://feeds.feedburner.com/codinghorror",
"https://feeds.feedburner.com/ndtvnews-top-stories",
"https://feeds.feedburner.com/thenextweb",
"https://feeds.macrumors.com/MacRumors-All",
"https://feeds.npr.org/1019/rss.xml",
"https://feeds.twit.tv/twit.xml",
"https://feeds.washingtonpost.com/rss/business/technology",
"https://flipshope.com/blog/feed",
"https://futurefive.co.nz/feed",
"https://futurism.com/feed",
"https://gigaom.com/feed/?x=1",
"https://gizmodo.com/feed",
"https://gizmodo.com/rss",
"https://hackaday.com/feed/",
"https://indianexpress.com/section/technology/feed/",
"https://insiderpaper.com/feed/",
"https://knowtechie.com/feed/",
"https://krebsonsecurity.com/feed/",
"https://kubernetes.io/feed.xml",
"https://latesttechno.in/feed/",
"https://lobste.rs/rss",
"https://mobilesyrup.com/feed",
"https://moviecode.tumblr.com/rss",
"https://mshibanami.github.io/GitHubTrendingRSS/daily/all.xml",
"https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRGRqTVhZU0FtVnVHZ0pWVXlnQVAB?hl=en-US&gl=US&ceid=US%3Aen&oc=11",
"https://news969.com/feed/",
"https://nocamels.com/feed/",
"https://openrss.org/www.reuters.com/technology/",
"https://osmc.tv/rss",
"https://randomascii.wordpress.com/feed/",
"https://readwrite.com/feed/",
"https://restic.net/blog/index.xml",
"https://retropie.org.uk/feed/",
"https://rss.nytimes.com/services/xml/rss/nyt/PersonalTech.xml",
"https://rss.nytimes.com/services/xml/rss/nyt/Technology.xml",
"https://rss.politico.com/technology.xml",
"https://rthackersnews.blogspot.com/feeds/posts/default?alt=rss",
"https://soylentnews.org/index.rss",
"https://spectrum.ieee.org/feeds/feed.rss",
"https://spider760.blogspot.com/feeds/posts/default?alt=rss",
"https://stallman.org/rss/rss.xml",
"https://techcavit.com/feed/",
"https://techcrunch.com/feed/",
"https://technode.com/feed/",
"https://techviral.net/feed/",
"https://techxplore.com/rss-feed/",
"https://themarkup.org/feeds/rss.xml",
"https://thenextweb.com/feed/",
"https://tildes.net/topics.rss",
"https://time.com/tech/feed/",
"https://www.404media.co/rss/",
"https://www.aclu.org/taxonomy/channel-term/1/feed",
"https://www.androidauthority.com/feed/",
"https://www.androidheadlines.com/feed",
"https://www.antifraudnews.com/feed/",
"https://www.betechwise.com/feed/",
"https://www.bleepingcomputer.com/feed/",
"https://www.blogger.com/feeds/4457929370096894305/posts/default",
"https://www.chinatechnews.com/feed",
"https://www.cnet.com/rss/news/",
"https://www.codeofhonor.com/blog/feed",
"https://www.cultofmac.com/feed/",
"https://www.dawn.com/feeds/tech/",
"https://www.developer-tech.com/feed",
"https://www.digitaltrends.com/feed/",
"https://www.droid-life.com/feed",
"https://www.eff.org/rss/pressrelease",
"https://www.engadget.com/rss.xml",
"https://www.eweek.com/feed/",
"https://www.extremetech.com/feed",
"https://www.fastcompany.com/latest/rss?truncated=true",
"https://www.firstpost.com/commonfeeds/v1/mfp/rss/tech.xml",
"https://www.gadgetsinnepal.com.np/feed/",
"https://www.geekwire.com/feed",
"https://www.ghacks.net/feed/",
"https://www.lastweekinaws.com/feed",
"https://www.latimes.com/business/technology/rss2.0.xml",
"https://www.lighthome.in/feed/",
"https://www.macobserver.com/feed/",
"https://www.macsparky.com/feed/",
"https://www.macworld.com/en-us/feed",
"https://www.macworld.com/index.rss",
"https://www.mercurynews.com/tag/siliconbeat/feed/",
"https://www.microled-info.com/rss.xml",
"https://www.nature.com/nature.rss",
"https://www.naval-technology.com/feed/",
"https://www.newskart.com/feed",
"https://www.nextgov.com/rss/all/",
"https://www.pcmag.com/feeds/rss/latest",
"https://www.pcworld.com/index.rss",
"https://www.platformexecutive.com/feed",
"https://www.popularmechanics.com/rss/default.xml",
"https://www.quantamagazine.org/feed",
"https://www.raspberrypi.org/feed/",
"https://www.rayarena.com/feed",
"https://www.reddit.com/r/Apple/.rss",
"https://www.reddit.com/r/Google/.rss",
"https://www.reddit.com/r/gadgets/.rss",
"https://www.reddit.com/r/hardware/.rss",
"https://www.reddit.com/r/iphone/.rss",
"https://www.reddit.com/r/technology/.rss",
"https://www.relay.fm/analogue/feed",
"https://www.relay.fm/clockwise/feed",
"https://www.relay.fm/rocket/feed",
"https://www.researchsnipers.com/feed/",
"https://www.schneier.com/feed/atom",
"https://www.scmp.com/rss/36/feed",
"https://www.securityweek.com/feed/",
"https://www.servethehome.com/feed/",
"https://www.siliconrepublic.com/feed",
"https://www.slashgear.com/feed/",
"https://www.techdirt.com/techdirt_rss.xml",
"https://www.techfeeddata.com/feed",
"https://www.techinasia.com/feed",
"https://www.techjuice.pk/feed/",
"https://www.techmeme.com/feed.xml",
"https://www.technews.city/feeds/posts/default?alt=rss",
"https://www.technewsworld.com/perl/syndication/rssfull.pl",
"https://www.technologydrift.com/feed/",
"https://www.technologyreview.com/feed",
"https://www.techpout.com/feed/",
"https://www.techrepublic.com/rssfeeds/articles/?feedType=rssfeeds&sort=latest",
"https://www.techspot.com/backend.xml",
"https://www.theblackweb.in/feed/",
"https://www.theguardian.com/uk/technology/rss",
"https://www.theverge.com/rss/frontpage",
"https://www.theverge.com/rss/index.xml",
"https://www.vox.com/rss/technology/index.xml",
"https://www.wired.com/feed/rss",
"https://www.wired.com/feed/tag/ai/latest/rss",
"https://www.youtube.com/feeds/videos.xml?user=CNETTV",
"https://www.youtube.com/feeds/videos.xml?user=LinusTechTips",
"https://www.youtube.com/feeds/videos.xml?user=TheVerge",
"https://www.youtube.com/feeds/videos.xml?user=marquesbrownlee",
"https://www.youtube.com/feeds/videos.xml?user=unboxtherapy",
"https://xkcd.com/rss.xml",
],
"Travel": [
"http://rss.cnn.com/rss/cnn_travel.rss",
"https://rss.nytimes.com/services/xml/rss/nyt/Travel.xml",
"https://thepointsguy.com/feed/",
"https://www.adventure-journal.com/feed/",
"https://www.cntraveler.com/feed/rss",
"https://www.euronews.com/rss?level=vertical&name=travel",
"https://www.latimes.com/travel/rss2.0.xml",
"https://www.lonelyplanet.com/blog/feed/atom/",
"https://www.sfgate.com/rss/feed/travel-news-and-features-520.php",
"https://www.theguardian.com/travel/rss",
"https://www.thehindu.com/life-and-style/travel/feeder/default.rss",
],
"USA": [
"http://dailysignal.com//feed/",
"http://feeds.feedburner.com/Davidthompson",
"http://feeds.foxnews.com/foxnews/national",
"http://rss.cnn.com/rss/cnn_allpolitics.rss",
"http://rss.cnn.com/rss/edition_us.rss",
"http://rss.slashdot.org/Slashdot/slashdotPolitics",
"http://www.marketwatch.com/rss/topstories/",
"http://www.metafilter.com/tags/us/rss",
"http://www.metafilter.com/tags/uspolitics/rss",
"http://www.newyorker.com/services/rss/feeds/everything.xml",
"http://www.slate.com/articles/news_and_politics.fulltext.all.10.rss",
"http://www.slate.com/articles/news_and_politics/politics.teaser.all.10.rss/",
"https://abcnews.go.com/abcnews/politicsheadlines",
"https://abcnews.go.com/abcnews/usheadlines",
"https://api.axios.com/feed/politics",
"https://feeds.elpais.com/mrss-s/list/ep/site/english.elpais.com/section/usa",
"https://feeds.feedburner.com/Popehat",
"https://feeds.nbcnews.com/msnbc/public/news",
"https://feeds.npr.org/1014/rss.xml",
"https://feeds.washingtonpost.com/rss/national",
"https://feeds.washingtonpost.com/rss/rss_fact-checker",
"https://feeds.washingtonpost.com/rss/rss_the-fix",
"https://fivethirtyeight.com/features/feed/",
"https://justthenews.com/rss.xml",
"https://nypost.com/politics/feed/",
"https://nypost.com/us-news/feed/",
"https://openrss.org/apnews.com/politics",
"https://openrss.org/apnews.com/us-news",
"https://openrss.org/www.axios.com",
"https://openrss.org/www.inquirer.com/politics/",
"https://pjmedia.com/news-and-politics/feed",
"https://politicalwire.com/feed/",
"https://prospect.org/api/rss/content.rss",
"https://quillette.com/tag/politics/rss",
"https://reason.com/feed/",
"https://reason.com/volokh/atom.xml",
"https://rss.csmonitor.com/feeds/usa",
"https://rss.nytimes.com/services/xml/rss/nyt/Politics.xml",
"https://rss.nytimes.com/services/xml/rss/nyt/US.xml",
"https://status451.com/feed/",
"https://theconversation.com/us/articles.atom",
"https://theconversation.com/us/politics/articles.atom",
"https://thehill.com/homenews/campaign/feed/",
"https://thehill.com/homenews/feed/",
"https://thehill.com/homenews/media/feed/",
"https://thehill.com/lobbying/feed/",
"https://thehill.com/regulation/feed/",
"https://theintercept.com/feed/",
"https://time.com/politics/feed",
"https://time.com/us/feed",
"https://www.allsides.com/rss/news",
"https://www.alternet.org/feeds/feed.rss",
"https://www.astralcodexten.com/feed",
"https://www.boston.com/tag/politics/feed/",
"https://www.cbsnews.com/latest/rss/politics",
"https://www.chicagotribune.com/news/politics/feed/",
"https://www.compactmag.com/rss/",
"https://www.latimes.com/politics/rss2.0.xml",
"https://www.lemonde.fr/united-states/rss_full.xml",
"https://www.nationalreview.com/corner/feed/",
"https://www.nationalreview.com/feed/",
"https://www.pbs.org/newshour/feeds/rss/politics",
"https://www.pewresearch.org/feed/",
"https://www.propublica.org/feeds/propublica/main",
"https://www.reddit.com/r/AmericanPolitics/.rss",
"https://www.reddit.com/r/NeutralPolitics/.rss",
"https://www.reddit.com/r/politics/.rss",
"https://www.riskhedge.com/rss",
"https://www.rollingstone.com/politics/feed/",
"https://www.salon.com/feed/",
"https://www.scmp.com/rss/322262/feed",
"https://www.seattletimes.com/nation/feed/",
"https://www.spiked-online.com/topic/usa/feed/",
"https://www.theatlantic.com/feed/best-of/",
"https://www.themarshallproject.org/rss/recent",
"https://www.thenation.com/feed/?post_type=article",
"https://www.vox.com/rss/politics/index.xml",
"https://www.washingtonexaminer.com/section/politics/feed/",
"https://www.yahoo.com/news/rss/politics",
"https://www.yahoo.com/news/rss/us",
"https://www.youtube.com/feeds/videos.xml?channel_id=UCDRIjKy6eZOvKtOELtTdeUA",
],
"Web Comics": [
"http://nedroid.com/feed/atom/",
"http://www.harkavagrant.com/rssfeed.php",
"http://www.marycagle.com/rss.php",
"http://www.threepanelsoul.com/rss.php",
"https://killsixbilliondemons.com/feed/",
"https://www.foxtrot.com/feed/",
"https://xkcd.com/atom.xml",
],
"World": [
"http://tass.com/rss/v2.xml",
"https://abcnews.go.com/abcnews/internationalheadlines",
"https://acleddata.com/feed/",
"https://aljazeera.com/xml/rss/all.xml",
"https://allafrica.com/tools/headlines/rdf/latest/headlines.rdf",
"https://en.mercopress.com/rss/",
"https://feeds.a.dj.com/rss/RSSOpinion.xml",
"https://feeds.a.dj.com/rss/RSSWorldNews.xml",
"https://feeds.bbci.co.uk/news/world/rss.xml",
"https://feeds.elpais.com/mrss-s/list/ep/site/english.elpais.com/section/international",
"https://feeds.elpais.com/mrss-s/pages/ep/site/english.elpais.com/portada",
"https://feeds.feedburner.com/ndtvnews-world-news",
"https://feeds.npr.org/1004/rss.xml",
"https://feeds.washingtonpost.com/rss/world",
"https://foreignpolicy.com/category/world-brief/feed/",
"https://foreignpolicy.com/feed/",
"https://jacobin.com/feed/",
"https://japantoday.com/category/world/feed",
"https://meduza.io/rss/en/all",
"https://michaelwest.com.au/feed/",
"https://novaramedia.com/category/articles/feed/",
"https://novaramedia.com/feed/",
"https://openrss.org/apnews.com/world-news",
"https://openrss.org/www.reuters.com/world/",
"https://restofworld.org/feed/latest",
"https://rss.csmonitor.com/feeds/all",
"https://rss.dw.com/rdf/rss-en-all",
"https://rss.dw.com/rdf/rss-en-world",
"https://rss.nytimes.com/services/xml/rss/nyt/World.xml",
"https://thespectator.com/feed/",
"https://theweek.com/feeds.xml",
"https://time.com/world/feed",
"https://www.abc.net.au/news/feed/45910/rss.xml",
"https://www.al-monitor.com/rss",
"https://www.allsides.com/blog",
"https://www.allsides.com/rss/news",
"https://www.arabnews.com/taxonomy/term/3/feed",
"https://www.boston.com/tag/world-news/feed/",
"https://www.cbsnews.com/latest/rss/world",
"https://www.compactmag.com/rss/",
"https://www.dawn.com/feeds/world/",
"https://www.economist.com/asia/rss.xml",
"https://www.economist.com/britain/rss.xml",
"https://www.economist.com/china/rss.xml",
"https://www.economist.com/europe/rss.xml",
"https://www.economist.com/international/rss.xml",
"https://www.economist.com/middle-east-and-africa/rss.xml",
"https://www.economist.com/the-americas/rss.xml",
"https://www.euronews.com/rss?level=vertical&name=news",
"https://www.firstpost.com/commonfeeds/v1/mfp/rss/world.xml",
"https://www.foreignaffairs.com/rss.xml",
"https://www.france24.com/en/rss",
"https://www.ft.com/rss/home/international",
"https://www.ft.com/world?format=rss",
"https://www.globalissues.org/news/feed",
"https://www.lemonde.fr/en/rss/une.xml",
"https://www.lemonde.fr/opinion/rss_full.xml",
"https://www.mintpressnews.com/feed/",
"https://www.newarab.com/rss",
"https://www.pbs.org/newshour/feeds/rss/world",
"https://www.pewresearch.org/feed/",
"https://www.politico.eu/feed/",
"https://www.reddit.com/r/UpliftingNews/.rss",
"https://www.reddit.com/r/inthenews/.rss",
"https://www.reddit.com/r/truenews/.rss",
"https://www.reddit.com/r/worldnews/.rss",
"https://www.rferl.org/api/zbqiml-vomx-tpeqkmy",
"https://www.rfi.fr/en/international/rss",
"https://www.rt.com/rss/",
"https://www.rt.com/rss/news/",
"https://www.scmp.com/rss/5/feed",