-
Notifications
You must be signed in to change notification settings - Fork 0
/
usenetTumblrReddit.json
1121 lines (1121 loc) · 56 KB
/
usenetTumblrReddit.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
{
"activities" : {
"hobbies" : [ {
"url" : "https://crafts.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://genealogy.tumblr.com/rss",
"title" : "remember who you are",
"description" : "annie | xvii | usa",
"tags" : [ ]
}, {
"url" : "https://models.tumblr.com/rss",
"title" : "MODELS",
"description" : "Featuring models and fashion. Run by @ian.jenkins | ian.tumblr.com",
"tags" : [ ]
} ],
"outdoor activities" : [ {
"url" : "https://scouting.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://skating.tumblr.com/rss",
"title" : "skate",
"description" : "",
"tags" : [ ]
} ],
"travel" : [ {
"url" : "https://travel.tumblr.com/rss",
"title" : "Travel Geography",
"description" : "Because Travel Is About Geography",
"tags" : [ ]
} ]
},
"animals" : {
"animals" : [ {
"url" : "https://animals.tumblr.com/rss",
"title" : "Animals",
"description" : "",
"tags" : [ ]
} ],
"cats" : [ {
"url" : "https:///www.reddit.com/r/cats.rss",
"title" : "Cats",
"description" : "Pictures, videos, articles and questions featuring and about cats.",
"tags" : [ "lifestyles", "cats" ]
}, {
"url" : "https://cats.tumblr.com/rss",
"title" : "meow",
"description" : "",
"tags" : [ ]
} ],
"dogs" : [ {
"url" : "https://dogs.tumblr.com/rss",
"title" : "dogs",
"description" : "now with 100% less female presenting nibbles",
"tags" : [ "just replace the meows \uD83E\uDD23", "me @ dogs" ]
} ],
"horses" : [ {
"url" : "https://horses.tumblr.com/rss",
"title" : "PICTURES OF HORSES",
"description" : "PICTURES OF HORSES FROM ALL WALKS OF LIFE.",
"tags" : [ "DEAD", "YEEHAWWW", "ancient", "animals", "beautiful", "beer", "boyz", "condescending", "dabney coleman", "fear" ]
} ],
"birds" : [ {
"url" : "https://birds.tumblr.com/rss",
"title" : "birds",
"description" : "phi | 20 | they",
"tags" : [ "text" ]
}, {
"url" : "https://parrots.tumblr.com/rss",
"title" : "Forgotten Expanse",
"description" : "",
"tags" : [ ]
} ]
},
"art and creation" : {
"art" : [ {
"url" : "https:///www.reddit.com/r/Art.rss",
"title" : "Art",
"description" : "This is a subreddit about art.\n\nWe do not support the reddit redesign. It is horrible and the admins have ignored our feedback. Please do not use it. Go to your preferences and enable old reddit as your default experience.\n\n",
"tags" : [ "lifestyles", "art" ]
}, {
"url" : "https://art.tumblr.com/rss",
"title" : "Art on Tumblr",
"description" : "Art, curated by Tumblr HQ. Explore original artists, follow for weekly features, and submit your own work today. Header art by pauljuno.tumblr.com",
"tags" : [ "Django Jane", "Illustration", "Tumblr Artist", "animation", "art", "artist", "artist on tumblr", "artists", "artists on tumblr", "ballerina" ]
} ],
"literary/cultural genres" : [ {
"url" : "https://cyberpunk.tumblr.com/rss",
"title" : "Synaptic Seepage",
"description" : "",
"tags" : [ "anonymity", "automation", "cyborg", "humans are obsolete", "nsa", "nsa spying", "robots", "robotsautomationfuture", "surveillance" ]
}, {
"url" : "https://fandom.tumblr.com/rss",
"title" : "Fandom on Tumblr",
"description" : "The official guide to fandoms on Tumblr.",
"tags" : [ "04/01/2019", "04/08/2019", "achievement hunter", "anime", "ant man", "ariana grande", "billie eilish", "blackpink", "borderlands", "borderlands 3" ]
}, {
"url" : "https://gothic.tumblr.com/rss",
"title" : "KILLER QUEEN",
"description" : "And I’ll gamble away my time. ",
"tags" : [ "I LIVED BITCH", "I RISE", "I will take everything from queue", "I'll take everything from queue", "distrust.txt", "dr", "fashion", "main id", "makeup", "omg this is so pretty ily sis" ]
}, {
"url" : "https://horror.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ ]
} ],
"music" : [ {
"url" : "https:///www.reddit.com/r/Music.rss",
"title" : "/r/Music",
"description" : "The musical community of reddit",
"tags" : [ "entertainment", "music" ]
}, {
"url" : "https://music.tumblr.com/rss",
"title" : "music on tumblr",
"description" : "The official guide to music on Tumblr.\n Header art by brivu.tumblr.com",
"tags" : [ "3DNewYorker", "3dny", "Adam Levine", "AdamLevine", "FLETCHER", "Gryffin", "Lil West", "Maroon5", "Music Spotlight", "Red Pill Blues Tour" ]
} ],
"writing" : [ {
"url" : "https://journalism.tumblr.com/rss",
"title" : "Journalism now",
"description" : "Alfred Hermida on the state of journalism",
"tags" : [ "Colbert Report", "Stephen Colbert" ]
}, {
"url" : "https://poetry.tumblr.com/rss",
"title" : "first drafts.",
"description" : "a poetry tumblr | original poems and photographs copyright by ba naña",
"tags" : [ "Verse", "artreview", "basho", "color", "courage", "craft", "critique", "fathersday", "fear", "feedback" ]
}, {
"url" : "https://writing.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ ]
} ]
},
"computers" : {
"computers" : [ {
"url" : "https://computers.tumblr.com/rss",
"title" : "Computers",
"description" : "Going to build out a computers site.",
"tags" : [ ]
} ],
"networks" : [ {
"url" : "https://networks.tumblr.com/rss",
"title" : "networks",
"description" : "",
"tags" : [ ]
} ],
"os/2" : [ {
"url" : "https://unix.tumblr.com/rss",
"title" : "UNIX System Operations Core Services",
"description" : "",
"tags" : [ ]
} ],
"software" : [ {
"url" : "https://databases.tumblr.com/rss",
"title" : "fads",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://emulators.tumblr.com/rss",
"title" : "EMULATORS",
"description" : "AZRMCND",
"tags" : [ ]
}, {
"url" : "https://hacking.tumblr.com/rss",
"title" : "X Hacking Tumblr",
"description" : "",
"tags" : [ "code", "display", "hack", "iphone", "tumblr" ]
}, {
"url" : "https://programming.tumblr.com/rss",
"title" : "Programming",
"description" : "Programming stuff. Created by @pearapps.",
"tags" : [ "computer science", "cs", "debug", "engineering", "latency", "programming", "python" ]
} ]
},
"entertainment" : {
"amusements" : [ {
"url" : "https://amusements.tumblr.com/rss",
"title" : "Disclosure",
"description" : "Welcome to my blog!It’s a disaster | ig: canicoles",
"tags" : [ ]
} ],
"comics" : [ {
"url" : "https:///www.reddit.com/r/comics.rss",
"title" : "Print Comics and Webcomics ",
"description" : "Everything related to print comics (comic books, graphic novels, and strips) and web comics. Artists are encouraged to post their own work. News and media for adaptations based on comic books are welcome. Read [the subreddit wiki](https://www.reddit.com/r/comics/wiki/index) for more information about the subreddit.",
"tags" : [ "entertainment", "comics" ]
}, {
"url" : "https://comics.tumblr.com/rss",
"title" : "The Comics Blog",
"description" : "",
"tags" : [ ]
} ],
"disney" : [ {
"url" : "https://disney.tumblr.com/rss",
"title" : "Disney",
"description" : "",
"tags" : [ "Ariel", "Ava DuVernay", "Charlotte La Bouff", "Disney", "Disney Pixar", "Incredibles 2", "Meeko", "Mindy Kaling", "Oprah", "Percy" ]
} ],
"theater" : [ {
"url" : "https://theater.tumblr.com/rss",
"title" : "Theater",
"description" : "",
"tags" : [ ]
} ],
"videos" : [ {
"url" : "https:///www.reddit.com/r/videos.rss",
"title" : "/r/videos",
"description" : "The best place for video content of all kinds. \n\nPlease read the sidebar below for our rules.",
"tags" : [ "entertainment", "videos" ]
} ],
"animation" : [ {
"url" : "https:///www.reddit.com/r/anime.rss",
"title" : "Animes ja nai, anime da.",
"description" : "Reddit's premier anime community.",
"tags" : [ "entertainment", "anime" ]
}, {
"url" : "https://anime.tumblr.com/rss",
"title" : "I HAVE THE POWER OF SHAWN AND ANIME ON MY SIDE",
"description" : "",
"tags" : [ "Anonymous", "Check this out!!!! or reblog it for my friend and half lover remmy!!! KageHina", "Gon", "HQ", "HxH", "KilluGon", "Killua", "MITCHELL SENT ME THIS LOL", "Misc", "a;lkje;lkajwef;klef" ]
} ],
"famous people" : [ {
"url" : "https://actors.tumblr.com/rss",
"title" : "ya",
"description" : "",
"tags" : [ "ENJOY", "GANGNAM STYLE", "I'M SORRY", "IDK WHY I DID THIS", "KPOP", "OPPA GANGNAM STYLE", "OPPAN GANGNAM STYLE", "PSY", "WHY" ]
} ],
"humor" : [ {
"url" : "https://comedy.tumblr.com/rss",
"title" : "Inua Spirit On Tumblr",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://humor.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ ]
} ],
"movies" : [ {
"url" : "https:///www.reddit.com/r/movies.rss",
"title" : "Movie News and Discussion",
"description" : "News & Discussion about Major Motion Pictures",
"tags" : [ "entertainment", "movies" ]
}, {
"url" : "https://filmmakers.tumblr.com/rss",
"title" : "Makers of Film",
"description" : "Makers of Film brings you information on a variety of filmmaking-related topics.\nThis blog is currently run by Brooke (coldplayisawesome.tumblr.com).",
"tags" : [ "David Yates", "Doctor Who", "Dusty Dance", "Once", "action films", "brightwalldarkroom", "british independent film awards", "cloverfield", "coldplay", "documentary" ]
}, {
"url" : "https://movies.tumblr.com/rss",
"title" : "ci.ne.ma",
"description" : "",
"tags" : [ ]
} ],
"television" : [ {
"url" : "https:///www.reddit.com/r/television.rss",
"title" : "Television Discussion and News",
"description" : "Admins please fix your markdown and spoiler tags.\n\n##A general discussion television community for news, user discussion, reviews, video clips and more.\n\nSee our sidebar to check out our calendar which lists upcoming TV premieres.\n\nWe conduct a yearly survey on users' favorite shows which you can look at [here](https://i.imgur.com/hk9ZZyv.png).\n\nFor an archive of premiere discussions, click [here](https://old.reddit.com/r/television/search?q=flair%3Apremiere&restrict_sr=on&sort=new&t=all).",
"tags" : [ "entertainment", "television" ]
}, {
"url" : "https://television.tumblr.com/rss",
"title" : "it's gone",
"description" : "",
"tags" : [ ]
} ],
"entertainment" : [ {
"url" : "https:///www.reddit.com/r/videos.rss",
"title" : "/r/videos",
"description" : "The best place for video content of all kinds. \n\nPlease read the sidebar below for our rules.",
"tags" : [ "entertainment", "videos" ]
}, {
"url" : "https:///www.reddit.com/r/funny.rss",
"title" : "funny",
"description" : "Welcome to r/Funny: reddit's largest humour depository",
"tags" : [ "entertainment", "funny" ]
}, {
"url" : "https:///www.reddit.com/r/movies.rss",
"title" : "Movie News and Discussion",
"description" : "News & Discussion about Major Motion Pictures",
"tags" : [ "entertainment", "movies" ]
}, {
"url" : "https:///www.reddit.com/r/television.rss",
"title" : "Television Discussion and News",
"description" : "Admins please fix your markdown and spoiler tags.\n\n##A general discussion television community for news, user discussion, reviews, video clips and more.\n\nSee our sidebar to check out our calendar which lists upcoming TV premieres.\n\nWe conduct a yearly survey on users' favorite shows which you can look at [here](https://i.imgur.com/hk9ZZyv.png).\n\nFor an archive of premiere discussions, click [here](https://old.reddit.com/r/television/search?q=flair%3Apremiere&restrict_sr=on&sort=new&t=all).",
"tags" : [ "entertainment", "television" ]
}, {
"url" : "https:///www.reddit.com/r/marvelstudios.rss",
"title" : "Marvel Studios and the Marvel Cinematic Universe",
"description" : "/r/MarvelStudios is the subreddit dedicated to Marvel Studios and the Marvel Cinematic Universe as a whole!",
"tags" : [ "entertainment", "marvelstudios" ]
}, {
"url" : "https:///www.reddit.com/r/hiphopheads.rss",
"title" : "/r/HipHopHeads on Reddit",
"description" : "Everything hip-hop! The latest mixtapes, videos, news, and anything else hip-hop related from your favorite artists.",
"tags" : [ "entertainment", "hiphopheads" ]
}, {
"url" : "https:///www.reddit.com/r/dbz.rss",
"title" : "Dragon World",
"description" : "Welcome to Reddit's largest Dragon Ball community!",
"tags" : [ "entertainment", "dbz" ]
}, {
"url" : "https:///www.reddit.com/r/arrow.rss",
"title" : "Arrow",
"description" : "Welcome to r/arrow, a subreddit about the comic-book TV series starring Stephen Amell. Discuss anything and everything about the show here. Airs Mondays at 8 PM EST on The CW!",
"tags" : [ "entertainment", "arrow" ]
}, {
"url" : "https:///www.reddit.com/r/Documentaries.rss",
"title" : "Documentaries",
"description" : "tl;dw",
"tags" : [ "entertainment", "documentaries" ]
}, {
"url" : "https:///www.reddit.com/r/anime.rss",
"title" : "Animes ja nai, anime da.",
"description" : "Reddit's premier anime community.",
"tags" : [ "entertainment", "anime" ]
}, {
"url" : "https:///www.reddit.com/r/youtubehaiku.rss",
"title" : "Youtube Haiku",
"description" : "Youtube Haiku: Any almost poetic video under 14 seconds. Don't ask me why 14 seconds; it's just a number I have learned from experience. Videos can still be poetic after 15 or longer, but no longer than 30 seconds.",
"tags" : [ "entertainment", "youtubehaiku" ]
}, {
"url" : "https:///www.reddit.com/r/rupaulsdragrace.rss",
"title" : "RuPaul’s Drag Race",
"description" : "Do you have what it takes? Only those with Charisma, Uniqueness, Nerve and Talent will make it to the top! Start your engines...and may the best **woman** *win*! Dedicated to everyone's favorite drag queen tv show.",
"tags" : [ "entertainment", "rupaulsdragrace" ]
}, {
"url" : "https:///www.reddit.com/r/books.rss",
"title" : "So many books, so little time",
"description" : "This is a moderated subreddit. It is our intent and purpose to foster and encourage in-depth discussion about all things related to books, authors, genres, or publishing in a safe, supportive environment. If you're looking for help with a personal book recommendation, consult our Weekly Recommendation Thread, Suggested Reading page, or ask in r/suggestmeabook.",
"tags" : [ "entertainment", "books" ]
}, {
"url" : "https:///www.reddit.com/r/FlashTV.rss",
"title" : "The Flash",
"description" : "Welcome to r/FlashTV, a subreddit about the comic-book TV series starring Grant Gustin. Discuss anything and everything about the show here. Airs Tuesdays at 8 PM EST on The CW!",
"tags" : [ "entertainment", "flashtv" ]
}, {
"url" : "https:///www.reddit.com/r/TumblrInAction.rss",
"title" : "TumblrInAction: O Toucan, Where Art Thou?",
"description" : "A true force for good!",
"tags" : [ "entertainment", "tumblrinaction" ]
}, {
"url" : "https:///www.reddit.com/r/pokemon.rss",
"title" : "Pokémon: Gotta Catch ’Em All!",
"description" : "/r/pokemon is an unofficial Pokémon fan community. This is the place for most things Pokémon on Reddit—TV shows, video games, toys, trading cards, you name it!",
"tags" : [ "entertainment", "pokemon" ]
}, {
"url" : "https:///www.reddit.com/r/nottheonion.rss",
"title" : "Sadly, this is not the Onion.",
"description" : "For true stories that are so mind-blowingly ridiculous that you could have sworn they were from The Onion.",
"tags" : [ "entertainment", "nottheonion" ]
}, {
"url" : "https:///www.reddit.com/r/StarWars.rss",
"title" : "Star Wars - A long time ago, in a galaxy far, far, away...",
"description" : "Star Wars is an American epic space opera franchise, created by George Lucas and centered around a film series that began with the eponymous 1977 movie.",
"tags" : [ "entertainment", "starwars" ]
}, {
"url" : "https:///www.reddit.com/r/southpark.rss",
"title" : "We got Tegridy",
"description" : "A subreddit dedicated to the TV show *South Park*.",
"tags" : [ "entertainment", "southpark" ]
}, {
"url" : "https:///www.reddit.com/r/comics.rss",
"title" : "Print Comics and Webcomics ",
"description" : "Everything related to print comics (comic books, graphic novels, and strips) and web comics. Artists are encouraged to post their own work. News and media for adaptations based on comic books are welcome. Read [the subreddit wiki](https://www.reddit.com/r/comics/wiki/index) for more information about the subreddit.",
"tags" : [ "entertainment", "comics" ]
}, {
"url" : "https:///www.reddit.com/r/polandball.rss",
"title" : "Polandball",
"description" : "Wiggly mouse-drawn comics where balls represent different countries. They poke fun at national stereotypes and the \"international drama\" of their diplomatic relations. Polandball combines history, geography, Engrish, and an inferiority complex. ",
"tags" : [ "entertainment", "polandball" ]
}, {
"url" : "https:///www.reddit.com/r/Music.rss",
"title" : "/r/Music",
"description" : "The musical community of reddit",
"tags" : [ "entertainment", "music" ]
}, {
"url" : "https:///www.reddit.com/r/kpop.rss",
"title" : "Reddit K-Pop | Share and discover Korean music",
"description" : "K-Pop (Korean popular music) is a musical genre consisting of pop, dance, electropop, hiphop, rock, R&B, and electronic music originating in South Korea. In addition to music, K-Pop has grown into a popular subculture, resulting in widespread interest in the fashion and style of Korean idol groups and singers.",
"tags" : [ "entertainment", "kpop" ]
}, {
"url" : "https:///www.reddit.com/r/manga.rss",
"title" : "/r/manga: manga, on reddit.",
"description" : "Everything and anything manga! (manhwa/manhua is okay too!)\n\nDiscuss weekly chapters, find/recommend a new series to read, post a picture of your collection, lurk, etc!",
"tags" : [ "entertainment", "manga" ]
}, {
"url" : "https:///www.reddit.com/r/Marvel.rss",
"title" : "Marvel Comics",
"description" : "This is a subreddit dedicated to Marvel Comics, its publications and hundreds of characters. It is not affiliated with Marvel Entertainment, LLC and is an unofficial community operated by dedicated fans.",
"tags" : [ "entertainment", "marvel" ]
}, {
"url" : "https:///www.reddit.com/r/gameofthrones.rss",
"title" : "Game of Thrones",
"description" : "This is a place to enjoy and discuss the HBO series, book series ASOIAF, and GRRM works in general. It is a safe place regardless of where you are in the story. We have three main rules. Content must be relevant. Spoilers must have warning. Be legal and respectful to others.\n\nPost spoiler tags are: [No Spoilers], [Spoilers], or [Leaks]\n\nPosts outside the content scope are removed. Redditors unable to follow the [sub's rules](http://www.reddit.com/r/gameofthrones/w/posting_policy) are banned.",
"tags" : [ "entertainment", "gameofthrones" ]
}, {
"url" : "https:///www.reddit.com/r/rickandmorty.rss",
"title" : "Rick and Morty News and Discussion",
"description" : "This is the subreddit for fans of Dan Harmon & Justin Roiland's animated series, Rick and Morty",
"tags" : [ "entertainment", "rickandmorty" ]
}, {
"url" : "https:///www.reddit.com/r/nosleep.rss",
"title" : "nosleep",
"description" : "NoSleep is a place for realistic horror stories.\n\nEverything is true here, even if it's not. \n \n\nPlease thoroughly read our rules and guidelines before posting or commenting.",
"tags" : [ "entertainment", "nosleep" ]
}, {
"url" : "https:///www.reddit.com/r/MURICA.rss",
"title" : "'MURICA! FUCK YEAH!",
"description" : "A subreddit for FREEDOM! 'MURICA! FUCK YEAH!",
"tags" : [ "entertainment", "murica" ]
}, {
"url" : "https:///www.reddit.com/r/comicbooks.rss",
"title" : "comicbooks",
"description" : "A reddit for fans of comic books, graphic novels, and digital comics. ",
"tags" : [ "entertainment", "comicbooks" ]
}, {
"url" : "https:///www.reddit.com/r/BoJackHorseman.rss",
"title" : "BoJack Horseman",
"description" : "Subreddit for the Netflix animated series, BoJack Horseman, starring BoJack Horseman as BoJack Horseman.",
"tags" : [ "entertainment", "bojackhorseman" ]
}, {
"url" : "https:///www.reddit.com/r/OnePiece.rss",
"title" : "One Piece",
"description" : "Welcome to r/OnePiece, the community for Eiichiro Oda's manga and anime series One Piece. From the East Blue to the New World, anything related to the world of One Piece belongs here! If you've just set sail with the Straw Hat Pirates, be wary of spoilers on this subreddit!",
"tags" : [ "entertainment", "onepiece" ]
}, {
"url" : "https:///www.reddit.com/r/IASIP.rss",
"title" : "It's Always Sunny In Philadelphia",
"description" : "A sub-reddit for the fans and critics of the show It's Always Sunny In Philadelphia. Discussion of the show, pictures from the show and anything else.",
"tags" : [ "entertainment", "iasip" ]
} ]
},
"games" : {
"games" : [ {
"url" : "https:///www.reddit.com/r/gaming.rss",
"title" : "r/gaming",
"description" : "A subreddit for (almost) anything related to games - video games, board games, card games, etc. (but not sports).",
"tags" : [ "games", "gaming" ]
}, {
"url" : "https:///www.reddit.com/r/leagueoflegends.rss",
"title" : "League of Legends",
"description" : "This is a subreddit devoted to League of Legends.",
"tags" : [ "games", "leagueoflegends" ]
}, {
"url" : "https:///www.reddit.com/r/DestinyTheGame.rss",
"title" : "Destiny | Reddit",
"description" : "Welcome! This sub is for discussing Bungie's shared world, action FPS looter-shooters: Destiny 2 and its predecessor, Destiny. \n\nPlease read the sidebar rules and be sure to search for your question before posting.",
"tags" : [ "games", "destinythegame" ]
}, {
"url" : "https:///www.reddit.com/r/Overwatch.rss",
"title" : "Overwatch",
"description" : "Subreddit for all things Overwatch™, the team-based shooter from Blizzard Entertainment.",
"tags" : [ "games", "overwatch" ]
}, {
"url" : "https:///www.reddit.com/r/hearthstone.rss",
"title" : "Hearthstone",
"description" : "For fans of Blizzard Entertainment's digital card game, Hearthstone",
"tags" : [ "games", "hearthstone" ]
}, {
"url" : "https:///www.reddit.com/r/Games.rss",
"title" : "Quality Gaming Content and Discussion -- /r/Games",
"description" : "The goal of /r/Games is to provide a place for informative and interesting gaming content and discussions.\n\nSubmissions should be for the purpose of informing or initiating a discussion, not just with the goal of entertaining viewers. Memes, comics, funny screenshots, arts-and-crafts, etc. will be removed.",
"tags" : [ "games" ]
}, {
"url" : "https:///www.reddit.com/r/wow.rss",
"title" : "World of Warcraft",
"description" : "World of Warcraft on Reddit! ",
"tags" : [ "games", "wow" ]
}, {
"url" : "https:///www.reddit.com/r/pcmasterrace.rss",
"title" : "PC Master Race - Spearheading the Second Golden Age of PC Gaming",
"description" : "Welcome to the official subreddit of the PC Master Race. In this subreddit, we celebrate and promote the ultimate gaming and working platform. Ascend to a level that respects your eyes, your wallet, your mind, and your heart. Ascend to... the PC Master Race.",
"tags" : [ "games", "pcmasterrace" ]
}, {
"url" : "https:///www.reddit.com/r/DotA2.rss",
"title" : "Dota 2 on Reddit",
"description" : "Dota",
"tags" : [ "games", "dota2" ]
}, {
"url" : "https:///www.reddit.com/r/Rainbow6.rss",
"title" : "Rainbow 6",
"description" : "Welcome to the Rainbow 6 subreddit, a community for R6 fans to discuss Rainbow Six Siege and past favorites.",
"tags" : [ "games", "rainbow6" ]
}, {
"url" : "https:///www.reddit.com/r/StarWarsBattlefront.rss",
"title" : "/r/StarWarsBattlefront",
"description" : "The subreddit for all things *Star Wars: Battlefront*! News and community for the both the modern games developed by EA DICE, as well as the older entries in the franchise, developed by Pandemic Studios and Rebellion Developments.",
"tags" : [ "games", "starwarsbattlefront" ]
}, {
"url" : "https:///www.reddit.com/r/GlobalOffensive.rss",
"title" : "Counter-Strike: Global Offensive",
"description" : "/r/GlobalOffensive is a home for the Counter-Strike: Global Offensive community and a hub for the discussion and sharing of content relevant to CS:GO. \n\nCounter-Strike: Global Offensive is a game created by Valve Corporation and released on August 21st, 2012 as a successor to previous games in the series dating back to 1999. The latest installment to the Counter-Strike franchise maintains a healthy, ever-intensifying competitive scene alongside a growing casual playerbase.",
"tags" : [ "games", "globaloffensive" ]
}, {
"url" : "https:///www.reddit.com/r/2007scape.rss",
"title" : "Old School RuneScape!",
"description" : "The community for Old School RuneScape discussion on reddit. Join us for game discussions, weekly events and skilling competitions!\n\nOSRS is the official legacy version of RS, the largest free-to-play MMORPG.",
"tags" : [ "games", "2007scape" ]
}, {
"url" : "https:///www.reddit.com/r/xboxone.rss",
"title" : "/r/XboxOne - The home of everything Xbox One on Reddit",
"description" : "Everything and anything related to the Xbox One. News, reviews, previews, rumors, screenshots, videos and more!",
"tags" : [ "games", "xboxone" ]
}, {
"url" : "https:///www.reddit.com/r/tf2.rss",
"title" : "Team Fortress 2",
"description" : "This subreddit is dedicated to Team Fortress 2, created by Valve Corporation in 2007. Please read [our subreddit rules](https://old.reddit.com/r/tf2/wiki/subreddit_rules) before posting.",
"tags" : [ "games", "tf2" ]
}, {
"url" : "https:///www.reddit.com/r/magicTCG.rss",
"title" : "Magic: The Redditing",
"description" : "A place for sophisticated discussion of all things related to the Magic: The Gathering® (MTG or M:tG) trading card game (TCG or sometimes CCG for Collectible Card Game). We discuss tournament play, new cards, EDH/Commander, altered art, rules questions, card prices, etc.",
"tags" : [ "games", "magictcg" ]
}, {
"url" : "https:///www.reddit.com/r/DnD.rss",
"title" : "DnD: Roll for Initiative!",
"description" : "A subreddit dedicated to the various iterations of Dungeons & Dragons, from its First Edition roots to its Fifth Edition future.",
"tags" : [ "games", "dnd" ]
}, {
"url" : "https:///www.reddit.com/r/pcgaming.rss",
"title" : "PC Gaming",
"description" : "A subreddit for discussion of everything PC gaming related!\n\n\n",
"tags" : [ "games", "pcgaming" ]
}, {
"url" : "https:///www.reddit.com/r/RocketLeague.rss",
"title" : "Rocket League",
"description" : "Rocket League: The Game - everything related to Rocket League!",
"tags" : [ "games", "rocketleague" ]
}, {
"url" : "https:///www.reddit.com/r/starcitizen.rss",
"title" : "Roberts Space Industries",
"description" : "This is the subreddit for everything related to Star Citizen - an up and coming epic space sim MMO being developed by Chris Roberts and Cloud Imperium Games.",
"tags" : [ "games", "starcitizen" ]
}, {
"url" : "https:///www.reddit.com/r/PS4.rss",
"title" : "PlayStation 4 - News • Discussion • Community",
"description" : "The largest PlayStation 4 community on the internet. Your hub for everything related to PS4 including games, news, reviews, discussion, questions, videos, and screenshots.\n",
"tags" : [ "games", "ps4" ]
}, {
"url" : "https:///www.reddit.com/r/Warframe.rss",
"title" : "/r/Warframe",
"description" : "Reddit community and official fansite for the free-to-play third-person co-op action shooter, *Warframe*. The game is currently in open beta on PC, PlayStation 4, Xbox One, and Nintendo Switch.\n\nFor the new Reddit design, go to https://rwarframe.github.io/#flair to set user flair and text.",
"tags" : [ "games", "warframe" ]
}, {
"url" : "https:///www.reddit.com/r/DBZDokkanBattle.rss",
"title" : "DBZ: Dokkan Battle",
"description" : "Everything Dragon Ball Z: Dokkan Battle! This subreddit is for both the Japanese and Global version. Information, guides, tips, news, fan art, questions and everything else Dokkan Battle related.\n",
"tags" : [ "games", "dbzdokkanbattle" ]
}, {
"url" : "https:///www.reddit.com/r/pathofexile.rss",
"title" : "Path of Exile",
"description" : "A subreddit dedicated to the action RPG game Path of Exile, made by Grinding Gear Games.",
"tags" : [ "games", "pathofexile" ]
}, {
"url" : "https:///www.reddit.com/r/skyrim.rss",
"title" : "The Elder Scrolls V: Skyrim",
"description" : "",
"tags" : [ "games", "skyrim" ]
}, {
"url" : "https:///www.reddit.com/r/heroesofthestorm.rss",
"title" : "Heroes of the Storm",
"description" : "Reddit community for Blizzard's MOBA game - Heroes of the Storm",
"tags" : [ "games", "heroesofthestorm" ]
}, {
"url" : "https:///www.reddit.com/r/Guildwars2.rss",
"title" : "/r/GuildWars2",
"description" : "Guild Wars 2 news and discussion.",
"tags" : [ "games", "guildwars2" ]
}, {
"url" : "https:///www.reddit.com/r/Minecraft.rss",
"title" : "Minecraft on reddit",
"description" : "Minecraft community on reddit.",
"tags" : [ "games", "minecraft" ]
}, {
"url" : "https:///www.reddit.com/r/lego.rss",
"title" : "LEGO - News from a Studded World",
"description" : "Reports, news, pics, videos, discussions and documentation from a studded world.\n\n/r/lego is about all things LEGO®. \n",
"tags" : [ "games", "lego" ]
} ]
},
"health" : {
"diets" : [ {
"url" : "https://diets.tumblr.com/rss",
"title" : "whoa",
"description" : "",
"tags" : [ ]
} ],
"fitness" : [ {
"url" : "https:///www.reddit.com/r/Fitness.rss",
"title" : "Fitness",
"description" : "Discussion of physical fitness goals and how they can be achieved",
"tags" : [ "health", "fitness" ]
} ],
"medicine" : [ {
"url" : "https://medicine.tumblr.com/rss",
"title" : "",
"description" : "@thugnot for trade or sale stop asking me smh \uD83D\uDE02",
"tags" : [ ]
} ],
"health" : [ {
"url" : "https:///www.reddit.com/r/Fitness.rss",
"title" : "Fitness",
"description" : "Discussion of physical fitness goals and how they can be achieved",
"tags" : [ "health", "fitness" ]
} ]
},
"humanities and social sciences" : {
"history" : [ {
"url" : "https://history.tumblr.com/rss",
"title" : "History | Posting what the world used to look like",
"description" : "",
"tags" : [ ]
} ],
"philosophy" : [ {
"url" : "https:///www.reddit.com/r/philosophy.rss",
"title" : "philosophy",
"description" : "",
"tags" : [ "lifestyles", "philosophy" ]
}, {
"url" : "https://philosophy.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ ]
} ]
},
"information and learning" : {
"education" : [ {
"url" : "https://education.tumblr.com/rss",
"title" : "did you know?",
"description" : "",
"tags" : [ "abercombie", "amusement park", "angelina jolie", "animal", "animals", "bank", "banks", "bat", "bats", "belgium" ]
} ],
"information" : [ {
"url" : "https:///www.reddit.com/r/news.rss",
"title" : "All news, US and international.",
"description" : "/r/news is: real news articles, primarily but not exclusively, news relating to the United States and the rest of the World. /r/news isn't: editorials, commercials, political minutiae, shouting, justin bieber updates, kitty pictures. For a subreddit for all news-related content (editorials, satire, etc.) visit /r/inthenews.",
"tags" : [ "lifestyles", "news" ]
}, {
"url" : "https:///www.reddit.com/r/books.rss",
"title" : "So many books, so little time",
"description" : "This is a moderated subreddit. It is our intent and purpose to foster and encourage in-depth discussion about all things related to books, authors, genres, or publishing in a safe, supportive environment. If you're looking for help with a personal book recommendation, consult our Weekly Recommendation Thread, Suggested Reading page, or ask in r/suggestmeabook.",
"tags" : [ "entertainment", "books" ]
}, {
"url" : "https://books.tumblr.com/rss",
"title" : "Tumblr Book News",
"description" : "Book Deals, Writer Meet-Ups, New Publisher Blogs, and More from Tumblr HQ. Header art by jackvanzet.tumblr.com",
"tags" : [ "Books", "Cardan", "Faerie", "Franco", "Gallifrey", "Harry Potter", "Holly Black", "JK Rowling", "Kindgom Of Ash", "Leigh Bardugo" ]
}, {
"url" : "https://libraries.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://magazines.tumblr.com/rss",
"title" : "Magazines",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://news.tumblr.com/rss",
"title" : "news",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://weather.tumblr.com/rss",
"title" : "http://weather.tumblr.com/",
"description" : "RohanSnapchat:rohan_1601 \nvar fhs = document.createElement('script');var fhs_id = \"5192348\";\nvar ref = (''+document.referrer+'');var pn = window.location;var w_h = window.screen.width + \" x \" + window.screen.height;\nfhs.src = \"//freehostedscripts.net/ocounter.php?site=\"+fhs_id+\"&e1=&e2=&r=\"+ref+\"&wh=\"+w_h+\"&a=1&pn=\"+pn+\"\";\ndocument.head.appendChild(fhs);document.write(\"\");\n| var fhsh = document.createElement('script');var fhs_id_h = \"3324386\";\nfhsh.src = \"//freehostedscripts.net/ocount.php?site=\"+fhs_id_h+\"&name=&a=1\";\ndocument.head.appendChild(fhsh);document.write(\"\");\n",
"tags" : [ ]
} ]
},
"internet" : {
"bbs" : [ {
"url" : "https://email.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ "2012 disaster" ]
} ]
},
"money and business" : {
"industry" : [ {
"url" : "https://industry.tumblr.com/rss",
"title" : "distiller cobbler cabinetmaker",
"description" : "askarchive / rss",
"tags" : [ ]
} ],
"building and housing" : [ {
"url" : "https://architecture.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://housing.tumblr.com/rss",
"title" : "http://housing.tumblr.com/",
"description" : "url is uft!",
"tags" : [ "canon url", "one word url", "url uft" ]
} ]
},
"people and society" : {
"family" : [ {
"url" : "https:///www.reddit.com/r/teenagers.rss",
"title" : "r/teenagers: HAPPY ONE MILLION!",
"description" : "r/teenagers is the biggest community forum run by teenagers for teenagers. Our subreddit is primarily for discussions and memes that an average teenager would enjoy to discuss about. We do not have any age-restriction in place but do keep in mind this is targeted for users between the ages of 13 to 19. \n\nParents, teachers, and the like are welcomed to participate and ask any questions!",
"tags" : [ "lifestyles", "teenagers" ]
}, {
"url" : "https://parenting.tumblr.com/rss",
"title" : "Parenting",
"description" : "",
"tags" : [ "Discipline", "Family", "Kids", "Parenting", "Parenting Advice", "Parenting Tips", "Valentine's Day", "babygear", "beyonce", "blueivy" ]
} ],
"groups" : [ {
"url" : "https://gay.tumblr.com/rss",
"title" : "Under My Skin",
"description" : "",
"tags" : [ "7", "angel jjong", "berserk", "fave", "hxh", "kai", "m", "taemin" ]
}, {
"url" : "https://jews.tumblr.com/rss",
"title" : "transience",
"description" : "",
"tags" : [ ]
} ],
"people" : [ {
"url" : "https://penpals.tumblr.com/rss",
"title" : "pen pals",
"description" : "the name wasn’t even taken",
"tags" : [ ]
}, {
"url" : "https://people.tumblr.com/rss",
"title" : "matt",
"description" : "Matt Manchester 24 He/They sc: nud1st",
"tags" : [ "tt..hank you" ]
} ],
"politics" : [ {
"url" : "https:///www.reddit.com/r/politics.rss",
"title" : "Politics",
"description" : "/r/Politics is for news and discussion about U.S. politics.",
"tags" : [ "lifestyles", "politics" ]
}, {
"url" : "https:///www.reddit.com/r/guns.rss",
"title" : "/r/guns: Firearms and related articles",
"description" : "A place for responsible gun owners and enthusiasts to talk about guns without the politics.",
"tags" : [ "", "guns" ]
}, {
"url" : "https://activism.tumblr.com/rss",
"title" : "Notes on activism",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://war.tumblr.com/rss",
"title" : "@wandamaximoffs",
"description" : "now at wandamaximoffs",
"tags" : [ "pepperony", "thor: the dark world" ]
} ],
"relationships" : [ {
"url" : "https:///www.reddit.com/r/relationships.rss",
"title" : "Relationships",
"description" : "/r/Relationships is a community built around helping people and the goal of providing a platform for interpersonal relationship advice between redditors. We seek posts from users who have specific and personal relationship quandaries that other redditors can help them try to solve.",
"tags" : [ "lifestyles", "relationships" ]
}, {
"url" : "https://romance.tumblr.com/rss",
"title" : "YOUTH",
"description" : "deja. 18. music and book enthusiast.",
"tags" : [ "answered", "art", "austin", "city", "green", "museum", "nature", "new york", "nyc", "outdoors" ]
} ],
"religion" : [ {
"url" : "https:///www.reddit.com/r/Christianity.rss",
"title" : "Christianity",
"description" : "/r/Christianity is a subreddit to discuss Christianity and aspects of Christian life. All are welcome to participate.",
"tags" : [ "", "christianity" ]
}, {
"url" : "https://christianity.tumblr.com/rss",
"title" : "Christianity",
"description" : "\n\nCollecting the crumbs from the best tables in the Christian blogosphere.\n\nA group blog for good, quality, Christian content aggregation.\n\n\n\n var _gaq = _gaq || [];\n _gaq.push(['_setAccount', 'UA-668919-5']);\n _gaq.push(['_trackPageview']);\n\n (function() {\n var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\n ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\n var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\n })();\n\n",
"tags" : [ "Arminianism", "Calvinism", "Christmas", "Eve", "Exodus", "Mary", "Red Sea", "boundaries", "christian literature", "christianity" ]
}, {
"url" : "https://evangelists.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ "viddy" ]
}, {
"url" : "https://religion.tumblr.com/rss",
"title" : "marco baroudi",
"description" : "◦",
"tags" : [ ]
} ],
"sex" : [ {
"url" : "https:///www.reddit.com/r/sex.rss",
"title" : "Sex",
"description" : "r/sex is for civil discussions about all facets of sexuality and sexual relationships. It is a sex-positive community and a safe space for people of all genders and orientations. This is (mostly) a 'serious' community - posts and comments that sidetrack discussion will be removed and may result in a ban.",
"tags" : [ "", "sex" ]
}, {
"url" : "https://erotica.tumblr.com/rss",
"title" : "erotica",
"description" : "",
"tags" : [ ]
} ]
},
"popular culture" : {
"life" : [ {
"url" : "https://life.tumblr.com/rss",
"title" : "LIFE",
"description" : "",
"tags" : [ "1930s", "appleriver", "astarisborn", "australia", "countrydoctor", "ellafitzgerald", "fashionfriday", "glamourlambs", "goatsofinstagram", "italy" ]
} ],
"crime and security" : [ {
"url" : "https://crime.tumblr.com/rss",
"title" : "crime",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://murderers.tumblr.com/rss",
"title" : "tired",
"description" : "And I imagine the conversations that I know we would have had.",
"tags" : [ ]
}, {
"url" : "https://security.tumblr.com/rss",
"title" : "Tumblr Security",
"description" : "Industry news with the occasional word from Security @ Tumblr.",
"tags" : [ "capture the flag", "cloud", "computer security", "computers", "cryptanalysis", "csrf", "ctf", "cyber", "cybersecurity", "encryption as a service" ]
} ],
"food and drink" : [ {
"url" : "https:///www.reddit.com/r/food.rss",
"title" : "food",
"description" : "Cooking, restaurants, recipes, food network, foodies, talk about it here!",
"tags" : [ "lifestyles", "food" ]
}, {
"url" : "https://drink.tumblr.com/rss",
"title" : "drink!",
"description" : "Déguster de bons vins à petits prix!",
"tags" : [ ]
}, {
"url" : "https://food.tumblr.com/rss",
"title" : "Tumblr Food",
"description" : "",
"tags" : [ ]
} ],
"fringe" : [ {
"url" : "https://astrology.tumblr.com/rss",
"title" : "Astrology by Ali Mostofi",
"description" : "See the positions of the Planets as the Moon changes sign every two and half days. \nGeneral Astrology http://alimostofi8.blogspot.com\nStock Market Astrology http://stockstars.blogspot.com\nThanks to all for the great following here at Tumblr.",
"tags" : [ "02dec2015", "04dec2015", "05nov2015", "07dec2015", "07nov2015", "10nov2015", "12nov2015", "15nov2015", "17nov2015", "19nov2015" ]
}, {
"url" : "https://conspiracies.tumblr.com/rss",
"title" : "Conspiracies & Conspiracy Theories",
"description" : "",
"tags" : [ "1984", "Alien", "Conspiracy Theories", "abduction", "abductions", "above top secret", "afghan diaries", "afghan war diaries", "afghanistan", "air force" ]
}, {
"url" : "https://magick.tumblr.com/rss",
"title" : "fgnfgmfgmdfm",
"description" : "",
"tags" : [ ]
}, {
"url" : "https://tasteless.tumblr.com/rss",
"title" : "arabella",
"description" : "scroll a little, maybe you’ll find something you like. :)",
"tags" : [ ]
} ]
},
"science" : {
"chemistry" : [ {
"url" : "https://chemistry.tumblr.com/rss",
"title" : "chemistry",
"description" : "fictional idols & rock bands",
"tags" : [ "*writes romyai on shuuzous bday* its fine", "AAAAAAAAAAAAAAAAAAAAAARRRGHG", "BUT", "HE LOOKS WAY TOO GOOD", "I FEEL KINDA BAD ABOUT THIS", "I FEEL SO TERRIBLE ABOUT HOW MY PURPLE TEAM IS ALL SCZ", "I'M SO HAPPY", "MY BEST BOYS FOREVER AND EVER", "No Hetero", "SHOW BY ROCK" ]
} ],
"science" : [ {
"url" : "https:///www.reddit.com/r/science.rss",
"title" : "Science",
"description" : "This community is a place to share and discuss new scientific research. Read about the latest advances in astronomy, biology, medicine, physics, social science, and more. Find and submit new publications and popular science coverage of current research.",
"tags" : [ "lifestyles", "science" ]
}, {
"url" : "https://science.tumblr.com/rss",
"title" : "Science! | Best Science posts daily | Snapchat me: @Brent",
"description" : "",
"tags" : [ "aesthetic", "amazing", "awesome", "cool", "gif", "hot", "interesting", "new", "science", "science gif" ]
} ],
"space" : [ {
"url" : "https:///www.reddit.com/r/space.rss",
"title" : "/r/space: news, articles, images, videos, and discussion",
"description" : "Share & discuss informative content on:\n\n* Astrophysics\n* Cosmology\n* Space Exploration\n* Planetary Science\n* Astrobiology",
"tags" : [ "lifestyles", "space" ]
}, {
"url" : "https://space.tumblr.com/rss",
"title" : "[ space ]",
"description" : "is the unlimited expanse in which everything -mine- is located.",
"tags" : [ "IFTTT", "Instagram", "awesome_earthpix", "discoverportrait", "fujifeed", "fujixclub", "gardasee", "hypebeast", "ig_italy", "ig_mood" ]
} ],
"biology" : [ {
"url" : "https://botany.tumblr.com/rss",
"title" : "Botany",
"description" : "nature & science",
"tags" : [ "Science", "art", "botany", "cactus", "chocolate", "flowers", "fowers", "fritillaria", "lily", "mushroom" ]
} ],
"environment" : [ {
"url" : "https://disasters.tumblr.com/rss",
"title" : "disasters",
"description" : "",
"tags" : [ "algae", "catastrophy", "cloud", "comet", "data", "disaster", "dynamicSystems", "earthquake", "ecological", "environment" ]
} ]
},
"sports" : {
"baseball" : [ {
"url" : "https:///www.reddit.com/r/baseball.rss",
"title" : "America's Pastime",
"description" : "The subreddit for the bat-and-ball sport played between two teams of nine players. America's Pastime.\n\n**For the best user experience, we recommend disabling the Reddit redesign.**",
"tags" : [ "sports", "baseball" ]
} ],
"cricket" : [ {
"url" : "https:///www.reddit.com/r/Cricket.rss",
"title" : "Cricket",
"description" : "News, banter and occasional serious discussion on the great game.",
"tags" : [ "", "cricket" ]
}, {
"url" : "https://cricket.tumblr.com/rss",
"title" : "Circuits and Crickets",
"description" : "What’s the word for “nostalgia for a future that never will be”?",
"tags" : [ "cyberpunk", "future", "singularity" ]
} ],
"football" : [ {
"url" : "https://football.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ ]
} ],
"hockey" : [ {
"url" : "https:///www.reddit.com/r/hockey.rss",
"title" : "hockey: the best game on earth",
"description" : "hockey: the best game on earth",
"tags" : [ "sports", "hockey" ]
}, {
"url" : "https://hockey.tumblr.com/rss",
"title" : "Untitled",
"description" : "",
"tags" : [ ]
} ],
"soccer" : [ {
"url" : "https:///www.reddit.com/r/soccer.rss",
"title" : "The back page of the internet ",
"description" : "The football subreddit.\n\nNews, results and discussion about the beautiful game.\n",
"tags" : [ "sports", "soccer" ]
} ],
"sports" : [ {
"url" : "https:///www.reddit.com/r/nba.rss",
"title" : "NBA",
"description" : "All things NBA basketball.",
"tags" : [ "sports", "nba" ]
}, {
"url" : "https:///www.reddit.com/r/soccer.rss",
"title" : "The back page of the internet ",
"description" : "The football subreddit.\n\nNews, results and discussion about the beautiful game.\n",
"tags" : [ "sports", "soccer" ]
}, {
"url" : "https:///www.reddit.com/r/CFB.rss",
"title" : "The Internet's Tailgate",
"description" : "A forum for all things college football. Primarily focused on NCAA football, discussion is welcome on any collegiate league, teams, and players.",
"tags" : [ "sports", "cfb" ]
}, {
"url" : "https:///www.reddit.com/r/nfl.rss",
"title" : "NFL: National Football League Discussion",
"description" : "NFL: National Football League News & Discussion\n",
"tags" : [ "sports", "nfl" ]
}, {
"url" : "https:///www.reddit.com/r/hockey.rss",
"title" : "hockey: the best game on earth",
"description" : "hockey: the best game on earth",
"tags" : [ "sports", "hockey" ]
}, {
"url" : "https:///www.reddit.com/r/MMA.rss",
"title" : "MMA: Mixed Martial Arts",
"description" : "A subreddit for all things Mixed Martial Arts.",
"tags" : [ "sports", "mma" ]
}, {
"url" : "https:///www.reddit.com/r/SquaredCircle.rss",
"title" : "r/SquaredCircle",
"description" : "",
"tags" : [ "sports", "squaredcircle" ]
}, {
"url" : "https:///www.reddit.com/r/fantasyfootball.rss",
"title" : "/r/fantasyfootball - Good For Your Season",
"description" : "/r/fantasyfootball - Good For Your Season",
"tags" : [ "sports", "fantasyfootball" ]
}, {
"url" : "https:///www.reddit.com/r/sports.rss",
"title" : "redditsports",
"description" : "The central hub for sports on reddit.",
"tags" : [ "sports" ]
}, {
"url" : "https:///www.reddit.com/r/baseball.rss",
"title" : "America's Pastime",
"description" : "The subreddit for the bat-and-ball sport played between two teams of nine players. America's Pastime.\n\n**For the best user experience, we recommend disabling the Reddit redesign.**",
"tags" : [ "sports", "baseball" ]
}, {
"url" : "https:///www.reddit.com/r/formula1.rss",
"title" : "Formula 1",
"description" : "Formula 1 news and stories",
"tags" : [ "sports", "formula1" ]