-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfeeds.json
More file actions
6554 lines (6554 loc) · 335 KB
/
Copy pathfeeds.json
File metadata and controls
6554 lines (6554 loc) · 335 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": [
{
"url": "http://news.google.com/news?cf=all&hl=en&pz=1&ned=us&topic=h&num=3&output=rss",
"title": "Google <b>News</b>",
"link": "https://news.google.com/",
"description": "Comprehensive up-to-date <b>news</b> coverage, aggregated from sources all over the <br>\nworld by Google <b>News</b>.",
"tags": [
"news",
"google"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://news.google.com/"
},
{
"url": "http://feeds.feedburner.com/foxnews/latest",
"title": "Fox <b>News</b> - Breaking <b>News</b> Updates | Latest <b>News</b> Headlines ...",
"link": "http://www.foxnews.com/",
"description": "Offers worldwide <b>news</b> coverage, analysis, show profiles, broadcast schedules, <br>\nteam biographies, and email <b>news</b> alerts.",
"tags": [
"news",
"world news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.foxnews.com/"
},
{
"url": "http://feeds.abcnews.com/abcnews/topstories",
"title": "ABC <b>News</b>: Breaking <b>News</b> & Latest Headlines",
"link": "http://abcnews.go.com/",
"description": "Get breaking national and world <b>news</b>, broadcast video coverage, and exclusive <br>\ninterviews. Find the top <b>news</b> online at ABC <b>News</b>.",
"tags": [
"news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://abcnews.go.com/"
},
{
"url": "http://www.npr.org/rss/rss.php?id=1001",
"title": "<b>News</b>: U.S. and World <b>News</b> Headlines : NPR",
"link": "http://www.npr.org/sections/news/",
"description": "US National Public Radio audio broadcast and text <b>news</b> stories and <br>\ncommentaries.",
"tags": [
"news",
"world news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.npr.org/sections/news/"
},
{
"url": "http://www.cnet.com/rss/all/",
"title": "Technology <b>News</b> - CNET <b>News</b> - CNET",
"link": "http://www.cnet.com/news/",
"description": "CNET <b>news</b> editors and reporters provide top technology <b>news</b>, with investigative <br>\nreporting and in-depth coverage of tech issues and events.",
"tags": [
"news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.cnet.com/news/"
},
{
"url": "http://www.salon.com/feed/",
"title": "<b>News</b> - Salon.com",
"link": "http://www.salon.com/category/news/",
"description": "WATCH: Gary Johnson schools Fox <b>News</b>' Eric Bolling on Black Lives Matter. <br>\nThe Fox <b>News</b> host cited crime rates to argue that "blacks are being treated more<br>\n ...",
"tags": [
"news",
"entertainment"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.salon.com/category/news/"
},
{
"url": "https://www.reddit.com/r/news/.rss",
"title": "All <b>news</b>, US and international. - Reddit",
"link": "https://www.reddit.com/r/news/",
"description": "If your post doesn't fit, consider finding an appropriate <b>news</b> article on that story to <br>\nsubmit instead, or submitting yours to lower moderation subreddits:.",
"tags": [
"news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.reddit.com/r/news/"
},
{
"url": "http://feeds.nydailynews.com/nydnrss",
"title": "Breaking, Local and National <b>News</b>, Sports & Entertainment - NY ...",
"link": "http://www.nydailynews.com/news",
"description": "Find <b>news</b> from around the U.S., the world and New York's five boroughs as well <br>\nas entertainment, sports and photo galleries at nydailynews.com.",
"tags": [
"news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.nydailynews.com/news"
},
{
"url": "http://www.msnbc.com/feeds/latest",
"title": "MSNBC — Breaking <b>News</b>, Top Stories, & Show Clips",
"link": "http://www.msnbc.com/",
"description": "Breaking <b>news</b> and in-depth analysis of the headlines, as well as commentary <br>\nand informed perspectives from The Rachel Maddow Show, Morning Joe & more.",
"tags": [
"news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.msnbc.com/"
},
{
"url": "http://www.mtv.com/news/feed/",
"title": "Movies News - MTV - MTV.com",
"link": "http://www.mtv.com/news/movies/",
"description": "The Jungle Book Director Explains How The <b>Film</b> Was Initially Much Darker. Jon <br>\nFavreau also speaks to MTV News about easter eggs and that Jamie Dornan ...",
"tags": [
"news",
"film",
"celebrity",
"music",
"movies"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.mtv.com/news/movies/"
},
{
"url": "http://feeds.abcnews.com/abcnews/internationalheadlines",
"title": "International <b>News</b> | <b>World News</b> - ABC <b>News</b>",
"link": "http://abcnews.go.com/International",
"description": "Get the latest international <b>news</b> and events from Asia, Europe, the Middle East, <br>\nand more. See <b>world news</b> photos and videos at ABCNews.",
"tags": [
"world news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://abcnews.go.com/International"
},
{
"url": "https://www.reddit.com/r/worldnews/.rss",
"title": "<b>World News</b> - Reddit",
"link": "https://www.reddit.com/r/worldnews/",
"description": "<b>Worldnews</b> Rules. Disallowed submissions. US internal <b>news</b>/US politics; <br>\nEditorialized titles; Misleading titles; Editorials, opinion, analysis; Feature stories<br>\n ...",
"tags": [
"world news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.reddit.com/r/worldnews/"
},
{
"url": "https://www.theguardian.com/world/rss",
"title": "<b>World news</b> and comment from the Guardian | The Guardian",
"link": "https://www.theguardian.com/world",
"description": "Latest <b>World news news</b>, comment and analysis from the Guardian, the <b>world's</b> <br>\nleading liberal voice.",
"tags": [
"world news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.theguardian.com/world"
},
{
"url": "http://feeds.reuters.com/reuters/worldNews",
"title": "<b>World News</b> | Reuters.com",
"link": "http://www.reuters.com/news/world",
"description": "Find late breaking <b>world news</b> from every corner of the globe at Reuters.com, <br>\nyour online source for international <b>news</b> coverage.",
"tags": [
"world news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.reuters.com/news/world"
},
{
"url": "http://www.dailymail.co.uk/news/worldnews/index.rss",
"title": "<b>World News</b> - Latest International Headlines, Pictures and Videos ...",
"link": "http://www.dailymail.co.uk/news/worldnews/index.html",
"description": "Get the latest <b>world news</b> and international headlines with in-depth analysis, <br>\npictures and videos from the Daily Mail Online and Mail on Sunday.",
"tags": [
"world news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.dailymail.co.uk/news/worldnews/index.html"
},
{
"url": "http://www.express.co.uk/posts/rss/78/foreignnews",
"title": "<b>World News</b> | Breaking <b>World News</b> and Pictures | Daily Express",
"link": "http://www.express.co.uk/news/world",
"description": "Get the latest <b>World news</b> and international <b>news</b> from Express.co.uk. Breaking <br>\nUS, Europe, China and African <b>news</b>.",
"tags": [
"world news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.express.co.uk/news/world"
},
{
"url": "http://feeds.huffingtonpost.com/huffingtonpost/raw_feed",
"title": "<b>World News</b> - Huffington Post",
"link": "http://www.huffingtonpost.com/news/world-news/",
"description": "<b>World News</b> ... Dr. Majid Rafizadeh | Posted 08.20.2016 | <b>World</b> ... Globalization <br>\nis the trend of the day; it is the progression by which the <b>world</b> is becoming ...",
"tags": [
"world news",
"entertainment",
"lifestyle",
"beauty",
"sports",
"technology",
"science"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.huffingtonpost.com/news/world-news/"
},
{
"url": "http://globalnews.ca/category/world/feed/",
"title": "<b>World News</b> | International Headlines - Breaking <b>World News</b>",
"link": "http://globalnews.ca/world/",
"description": "Global <b>News World</b> - breaking international <b>news</b> & current <b>world news</b> headlines<br>\n; international money <b>news</b> and business <b>news</b> on GlobalNews.ca.",
"tags": [
"world news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://globalnews.ca/world/"
},
{
"url": "http://www.usnews.com/rss/usnews",
"title": "<b>U.S. News</b> & World Report: News, Rankings and Analysis on Politics ...",
"link": "http://www.usnews.com/",
"description": "<b>US News</b> is a recognized leader in college, grad school, hospital, mutual fund, <br>\nand car rankings. Track elected officials, research health conditions, and find ...",
"tags": [
"us news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.usnews.com/"
},
{
"url": "http://www.usnews.com/rss/education/best-graduate-schools",
"title": "Best Graduate Schools | Top Graduate Programs | <b>US News</b> Education",
"link": "http://www.usnews.com/best-graduate-schools",
"description": "Find the best graduate program for you using the <b>US News</b> Best Graduate <br>\nSchools rankings.",
"tags": [
"us news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.usnews.com/best-graduate-schools"
},
{
"url": "http://www.usnews.com/rss/us-news-information",
"title": "Rankings - <b>US News</b>",
"link": "http://www.usnews.com/rankings",
"description": "Since 1983, <b>U.S. News</b> has been providing education rankings and helping <br>\nparents and students find the perfect school. No matter what level of education <br>\nyou ...",
"tags": [
"us news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.usnews.com/rankings"
},
{
"url": "http://www.usnews.com/rss/education",
"title": "<b>US News</b> Education | Best Colleges | Best Graduate Schools ...",
"link": "http://www.usnews.com/education",
"description": "<b>US News</b> Education provides rankings of over 1400 best colleges and <br>\nuniversities and hundreds of best graduate school programs. Learn how to pay <br>\nfor college ...",
"tags": [
"us news",
"education"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.usnews.com/education"
},
{
"url": "http://www.usnews.com/rss/education/best-graduate-schools/top-business-schools",
"title": "Top MBA Programs | Best Business Schools Resources | <b>US News</b> ...",
"link": "http://www.usnews.com/best-graduate-schools/top-business-schools",
"description": "Earning an MBA or another master's degree in business can help prospective <br>\nstudents advance their careers in the public and private sectors. <b>U.S. News</b> ...",
"tags": [
"us news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.usnews.com/best-graduate-schools/top-business-schools"
},
{
"url": "http://www.usnews.com/rss/education/online-education",
"title": "Online Degrees | Online Programs | Get a degree Online | <b>US News</b> ...",
"link": "http://www.usnews.com/education/online-education",
"description": "<b>U.S. News</b> evaluated more than 1,200 programs to identify the best. The <b>U.S.</b> <br>\n<b>News</b> University Directory can find online programs that meet your criteria in a <br>\nfew ...",
"tags": [
"us news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.usnews.com/education/online-education"
},
{
"url": "http://www.usnews.com/rss/education/best-graduate-schools/top-law-schools",
"title": "Top Law Schools - <b>US News</b>",
"link": "http://www.usnews.com/best-graduate-schools/top-law-schools",
"description": "Law school rankings and resources to help you find the best law school for you. <br>\nAdmissions, tuition, and financial aid data on top law schools.",
"tags": [
"us news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.usnews.com/best-graduate-schools/top-law-schools"
},
{
"url": "http://www.usnews.com/rss/education/best-graduate-schools/top-medical-schools",
"title": "Best Medical Schools | Top Medical Schools | <b>US News</b> Best ...",
"link": "http://www.usnews.com/best-graduate-schools/top-medical-schools",
"description": "See the top ranked medical schools in primary care and research and find the <br>\nbest medical school for you at <b>US News</b>.",
"tags": [
"us news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.usnews.com/best-graduate-schools/top-medical-schools"
},
{
"url": "http://www.usnews.com/rss/money",
"title": "Money - <b>US News</b>",
"link": "http://money.usnews.com/",
"description": "The latest business <b>news</b> and financial <b>news</b> on the market and economy. Get <br>\nfinancial advice to wisely invest and manage your personal finances to pay for ...",
"tags": [
"us news",
"money"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://money.usnews.com/"
},
{
"url": "http://www.usnews.com/rss/education/best-graduate-schools/top-education-schools",
"title": "Top Education Schools | Best Education Programs | <b>US News</b> - US ...",
"link": "http://www.usnews.com/best-graduate-schools/top-education-schools",
"description": "See the top ranked education departments and find the best education school for <br>\nyou at <b>US News</b>.",
"tags": [
"us news"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.usnews.com/best-graduate-schools/top-education-schools"
},
{
"url": "http://feeds.reuters.com/reuters/businessNews",
"title": "<b>Business</b> News & Financial News | Reuters",
"link": "http://www.reuters.com/finance?lc=int_mb_1001",
"description": "<b>Business</b> news & Financial news from Reuters.com.",
"tags": [
"finance",
"business"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.reuters.com/finance?lc=int_mb_1001"
},
{
"url": "http://www.cnbc.com/id/10000664/device/rss",
"title": "<b>Finance</b> - CNBC.com",
"link": "http://www.cnbc.com/finance/",
"description": "Latest investing news and <b>finance</b> headlines straight from Wall Street.",
"tags": [
"finance"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.cnbc.com/finance/"
},
{
"url": "http://www.forbes.com/financing/feed2/",
"title": "Forbes - <b>Financing</b> Information and <b>Financing</b> News - Forbes.com",
"link": "http://www.forbes.com/financing/",
"description": "Forbes is a leading source for reliable news and updated analysis on <b>Financing</b>. <br>\nRead the breaking <b>Financing</b> coverage and top headlines on Forbes.com.",
"tags": [
"finance"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.forbes.com/financing/"
},
{
"url": "http://www.ft.com/rss/home/us",
"title": "US Political, <b>Financial</b> & Business News | FT.com - <b>Financial</b> Times",
"link": "http://www.ft.com/home/us",
"description": "The latest US and international business, <b>finance</b>, economic and political news, <br>\ncomment and analysis from the <b>Financial</b> Times on FT.com.",
"tags": [
"finance"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.ft.com/home/us"
},
{
"url": "http://feedproxy.google.com/clusterstock?format=xml",
"title": "<b>Finance</b> - Business Insider",
"link": "http://www.businessinsider.com/clusterstock",
"description": "1 day ago <b>...</b> The FTSE 100 has opened flat on Friday, down 0.36 points or 0.01% to 6868.60. <br>\nAccendo Markets' Augustin Eden and Mike van Dulken write ...",
"tags": [
"finance"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.businessinsider.com/clusterstock"
},
{
"url": "https://www.reddit.com/r/finance/.rss",
"title": "<b>Financial</b> news and views - Reddit",
"link": "https://www.reddit.com/r/finance/",
"description": "Welcome to r/<b>Finance</b> - a place to discuss multiple facets of corporate and ... be <br>\nand does not constitute <b>financial</b> advice, investment advice, trading advice or any<br>\n ...",
"tags": [
"finance"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.reddit.com/r/finance/"
},
{
"url": "http://rss.cnn.com/rss/money_topstories.rss",
"title": "CNNMoney - Business, financial and personal finance news",
"link": "http://money.cnn.com/",
"description": "Cash exodus from these <b>money</b> market funds · The problem with putting all ... <br>\nIncome Plan that Makes Your <b>Money</b> Last Thru Retirement. Profits Run. Click <br>\nHere.",
"tags": [
"finance",
"money",
"stocks"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://money.cnn.com/"
},
{
"url": "http://rss.cnn.com/rss/money_pf.rss",
"title": "Personal <b>Finance</b> Advice and <b>Financial</b> News - CNNMoney",
"link": "http://money.cnn.com/pf/",
"description": "<b>Financial</b> news and personal <b>financial</b> advice on retirement planning, college <br>\nsaving, taxes, mortgages, autos, real estate, investing and more.",
"tags": [
"finance"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://money.cnn.com/pf/"
},
{
"url": "http://www.oecd.org/finance/index.xml",
"title": "<b>Finance</b> - OECD",
"link": "http://www.oecd.org/finance/",
"description": "Data and research on <b>finance</b> including <b>financial</b> markets, monetary issues, <br>\ninsurance, private pensions, sovereign debt, public debt management and <br>\n<b>financial</b> ...",
"tags": [
"finance"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.oecd.org/finance/"
},
{
"url": "https://www.entrepreneur.com/topic/finance.rss",
"title": "<b>Finance</b> News & Topics - Entrepreneur",
"link": "https://www.entrepreneur.com/topic/finance",
"description": "The latest news, videos, and discussion topics on <b>Finance</b>.",
"tags": [
"finance"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.entrepreneur.com/topic/finance"
},
{
"url": "http://feeds2.feedburner.com/businessinsider",
"title": "<b>Business</b> Insider",
"link": "http://www.businessinsider.com/",
"description": "<b>Business</b> Insider is a fast-growing <b>business</b> site with deep financial, media, tech, <br>\nand other industry verticals. Launched in 2007, the site is now the largest ...",
"tags": [
"business"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.businessinsider.com/"
},
{
"url": "http://www.forbes.com/business/feed2/",
"title": "Forbes - <b>Business</b> Information and <b>Business</b> News - Forbes.com",
"link": "http://www.forbes.com/business/",
"description": "Forbes is a leading source for reliable news and updated analysis on <b>Business</b>. <br>\nRead the breaking <b>Business</b> coverage and top headlines on Forbes.com.",
"tags": [
"business"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.forbes.com/business/"
},
{
"url": "http://business.usa.gov/rss.xml",
"title": "BusinessUSA",
"link": "http://business.usa.gov/",
"description": "Official <b>business</b> portal of the U.S. government, providing guides and resources <br>\nthat help <b>businesses</b> comply with <b>business</b> laws and government regulations.",
"tags": [
"business"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://business.usa.gov/"
},
{
"url": "http://www.nytimes.com/services/xml/rss/nyt/Business.xml",
"title": "<b>Business</b> and Financial News - The New York Times",
"link": "http://www.nytimes.com/pages/business/index.html",
"description": "Find breaking news & <b>business</b> news on Wall Street, media & advertising, <br>\ninternational <b>business</b>, banking, interest rates, the stock market, currencies & <br>\nfunds.",
"tags": [
"business"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.nytimes.com/pages/business/index.html"
},
{
"url": "http://time.com/business/feed/",
"title": "<b>Business</b> | TIME",
"link": "http://time.com/business/",
"description": "The latest news and commentary from TIME on domestic and global <b>business</b>, <br>\nthe economy, technology, personal finance, banking, marketing, management ...",
"tags": [
"business"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://time.com/business/"
},
{
"url": "https://www.theguardian.com/us/business/rss",
"title": "<b>Business</b> and finance news from Guardian US | The Guardian",
"link": "https://www.theguardian.com/us/business",
"description": "Includes breaking news and online share prices plus analysis and comment, <br>\nmarket indicators, Explained background features and links to Special Reports.",
"tags": [
"business"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.theguardian.com/us/business"
},
{
"url": "http://www.latimes.com/business/rss2.0.xml",
"title": "<b>Business</b> News - Los Angeles Times",
"link": "http://www.latimes.com/business/",
"description": "National and international <b>business</b> news. Find stock updates, the latest trends in <br>\ntechnology, real estate news and the latest on the economy.",
"tags": [
"business"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.latimes.com/business/"
},
{
"url": "http://rss.cnn.com/rss/money_latest.rss",
"title": "<b>Business</b> News and Financial News - CNNMoney",
"link": "http://money.cnn.com/news/",
"description": "Breaking <b>business</b> news and financial news on U.S. and international companies <br>\nfrom CNNMoney.",
"tags": [
"business"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://money.cnn.com/news/"
},
{
"url": "https://www.sba.gov/taxonomy/term/49/feed",
"title": "Starting & Managing a <b>Business</b> | The U.S. Small <b>Business</b> - SBA.gov",
"link": "https://www.sba.gov/starting-managing-business",
"description": "Resources from the United States Small <b>Business</b> Administration cover planning, <br>\nfinance, marketing, employment, taxes, and legal issues.",
"tags": [
"business"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.sba.gov/starting-managing-business"
},
{
"url": "https://www.entrepreneur.com/topic/marketing.rss",
"title": "<b>Marketing</b> News & Topics - Entrepreneur",
"link": "https://www.entrepreneur.com/topic/marketing",
"description": "The latest news, videos, and discussion topics on <b>Marketing</b>.",
"tags": [
"marketing"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.entrepreneur.com/topic/marketing"
},
{
"url": "http://feeds.marketingland.com/mktingland",
"title": "<b>Marketing</b> Land | Digital <b>Marketing</b> & Martech News, Tactics ...",
"link": "http://marketingland.com/",
"description": "Digital <b>marketing</b> and technology news covering Martech, Social, Search, Mobile, <br>\nDisplay & Programmatic Advertising, Retail, Email, Video, Analytics + CMO ...",
"tags": [
"marketing"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://marketingland.com/"
},
{
"url": "http://feeds.feedburner.com/BDTermOfTheDay",
"title": "What is <b>marketing</b>? definition and meaning - BusinessDictionary.com",
"link": "http://www.businessdictionary.com/definition/marketing.html",
"description": "Definition of <b>marketing</b>: The management process through which goods and <br>\nservices move from concept to the customer. It includes the coordination of four ...",
"tags": [
"marketing",
"culture"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.businessdictionary.com/definition/marketing.html"
},
{
"url": "http://blog.hubspot.com/marketing/rss.xml",
"title": "HubSpot Blogs | <b>Marketing</b>",
"link": "http://blog.hubspot.com/marketing",
"description": "HubSpot's <b>Marketing</b> Blog – attracting over 2 million monthly readers – covers <br>\neverything you need to know to master inbound <b>marketing</b>.",
"tags": [
"marketing"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://blog.hubspot.com/marketing"
},
{
"url": "http://contentmarketinginstitute.com/feed/",
"title": "CMI: Content <b>Marketing</b> Strategy, Research, "How-To" Advice",
"link": "http://contentmarketinginstitute.com/",
"description": "Content <b>Marketing</b> Institute (CMI): Our mission is to advance the practice of <br>\ncontent <b>marketing</b>, through online education, print, and in-person events.",
"tags": [
"marketing",
"marketing"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://contentmarketinginstitute.com/"
},
{
"url": "http://rss.marketingprofs.com/marketingprofs/daily",
"title": "MarketingProfs: <b>Marketing</b> Professionals, Modern <b>Marketing</b> Tools",
"link": "http://www.marketingprofs.com/",
"description": "Our <b>marketing</b> professionals are your one stop source for tools, training, <br>\nstrategies, articles, online seminars, and much more. Visit MarketingProfs today.",
"tags": [
"marketing"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.marketingprofs.com/"
},
{
"url": "https://www.marketingweek.com/feed/",
"title": "<b>Marketing</b> Week",
"link": "https://www.marketingweek.com/",
"description": "<b>Marketing</b> Week is a leading UK magazine for <b>marketing</b> jobs, <b>marketing</b> news, <br>\nopinion and information. Covering advertising, media, pr, online <b>marketing</b> ...",
"tags": [
"marketing"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.marketingweek.com/"
},
{
"url": "http://feeds.mashable.com/Mashable",
"title": "<b>Marketing</b> - Mashable",
"link": "http://mashable.com/category/marketing/",
"description": "<b>Marketing</b> is the way companies interact with consumers to create relationships <br>\nthat are beneficial to both parties. Businesses use <b>marketing</b> to identify their ...",
"tags": [
"marketing",
"entertainment",
"food",
"lifestyle",
"diy",
"cars",
"beauty",
"soccer",
"tech",
"gadgets",
"android",
"iphone",
"iOS",
"gaming",
"yahoo",
"google",
"apple",
"photography"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://mashable.com/category/marketing/"
},
{
"url": "http://www.marketingdonut.co.uk/rss.xml",
"title": "<b>Marketing</b> Donut: Small business <b>marketing</b> — free advice, tools and ...",
"link": "http://www.marketingdonut.co.uk/",
"description": "<b>Marketing</b> advice and resources for small businesses (SMEs) to set <b>marketing</b> <br>\nobjectives, plan <b>marketing</b> strategy and <b>marketing</b> mix, promote their business <br>\nand ...",
"tags": [
"marketing"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.marketingdonut.co.uk/"
},
{
"url": "http://www.forbes.com/sites/laurashin/feed/",
"title": "44 Ways To Make More <b>Money</b> - Forbes",
"link": "http://www.forbes.com/sites/laurashin/2015/02/26/44-ways-to-make-more-money/",
"description": "Feb 26, 2015 <b>...</b> The best way to improve your <b>money</b> situation is to earn more. Here are 44 <br>\ntechniques to try.",
"tags": [
"money"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.forbes.com/sites/laurashin/2015/02/26/44-ways-to-make-more-money/"
},
{
"url": "http://www.jumsoft.com/feed/",
"title": "<b>Money</b> - Jumsoft",
"link": "http://www.jumsoft.com/money/",
"description": "<b>Money</b> presents a powerful, comprehensive, and intuitive system designed to <br>\nhelp you control your financial life. Oversee your account balances, keep budgets<br>\n, ...",
"tags": [
"money"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.jumsoft.com/money/"
},
{
"url": "https://www.theguardian.com/us/money/rss",
"title": "<b>Money</b> | The Guardian",
"link": "https://www.theguardian.com/us/money",
"description": "US <b>money</b> blog Why a surging stock market isn't making ordinary investors happy<br>\n. Published: 8:00 AM 6 · Why a surging stock market isn't making ordinary ...",
"tags": [
"money"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.theguardian.com/us/money"
},
{
"url": "https://www.usa.gov/taxonomy/term/10863/feed",
"title": "Unclaimed <b>Money</b> from the Government | USAGov",
"link": "https://www.usa.gov/unclaimed-money",
"description": "If the government owes you <b>money</b> and you do not collect it, then it's unclaimed. <br>\nThis also applies to banks, credit unions, pensions, and other sources.",
"tags": [
"money"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.usa.gov/unclaimed-money"
},
{
"url": "https://www.usa.gov/taxonomy/term/10854/feed",
"title": "<b>Money</b> and Shopping | USAGov",
"link": "https://www.usa.gov/money",
"description": "Learn about consumer issues, taxes, unclaimed <b>money</b>, buying from the <br>\ngovernment, and more more.",
"tags": [
"money"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.usa.gov/money"
},
{
"url": "https://xkcd.com/atom.xml",
"title": "xkcd: <b>Money</b>",
"link": "https://xkcd.com/980/",
"description": "Image URL (for hotlinking/embedding): http://imgs.xkcd.com/comics/<b>money</b>.png. <br>\n<b>Money</b> all of it ((this transcription is only reproducing text visible on the front ...",
"tags": [
"money",
"audiophile",
"xkcd",
"xkcd"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://xkcd.com/980/"
},
{
"url": "http://www.thefreedictionary.com/_/WoD/rss.aspx",
"title": "<b>Money</b> financial definition of <b>money</b>",
"link": "http://financial-dictionary.thefreedictionary.com/money",
"description": "Definition of <b>money</b> in the Financial Dictionary - by Free online English dictionary <br>\nand encyclopedia. What is <b>money</b>? Meaning of <b>money</b> as a finance term.",
"tags": [
"money"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://financial-dictionary.thefreedictionary.com/money"
},
{
"url": "http://www.mrmoneymustache.com/feed/",
"title": "Mr. <b>Money</b> Mustache — Early Retirement through Badassity",
"link": "http://www.mrmoneymustache.com/",
"description": "We have a lot of fun here, even as we continuously improve our lives and <br>\nbecome more wealthy. So you'll want to follow along. You can get the articles by <br>\nemail ...",
"tags": [
"money"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.mrmoneymustache.com/"
},
{
"url": "http://www.forbes.com/stocks/feed2/",
"title": "Forbes - <b>Stocks</b> Information and <b>Stock</b> News - Forbes.com",
"link": "http://www.forbes.com/stocks/",
"description": "Forbes is a leading source for reliable news and updated analysis on <b>Stocks</b>. <br>\nRead the breaking <b>Stocks</b> coverage and top headlines on Forbes.com.",
"tags": [
"stocks"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.forbes.com/stocks/"
},
{
"url": "http://articlefeeds.nasdaq.com/nasdaq/categories?category=Stocks",
"title": "<b>Stocks</b> - <b>Stock</b> Trading - <b>Stock</b> Investing - NASDAQ.com",
"link": "http://www.nasdaq.com/investing/stocks.aspx",
"description": "<b>Stocks</b> - Learn about <b>stock</b> trading and investing at NASDAQ.com.",
"tags": [
"stocks"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.nasdaq.com/investing/stocks.aspx"
},
{
"url": "http://www.investors.com/category/market-trend/stock-market-today/feed/",
"title": "<b>Stock</b> Market Today | <b>Stock</b> News & <b>Stock</b> Market Analysis - IBD",
"link": "http://www.investors.com/category/market-trend/stock-market-today/",
"description": "<b>Stocks</b> fell across the board Wednesday as a sell-off in gold, silver and crude oil <br>\n... <b>Stocks</b> Extend Losses; Lockheed Down On F-35 Concerns; Miners Drop.",
"tags": [
"stocks"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.investors.com/category/market-trend/stock-market-today/"
},
{
"url": "http://www.timothysykes.com/feed/",
"title": "What are Penny <b>Stocks</b>? How to Get Started with Penny <b>Stocks</b>",
"link": "http://www.timothysykes.com/penny-stocks/",
"description": "I've been penny <b>stock</b> trading for more than fifteen years, and in that time, I've <br>\nturned $12,415 of my bar mitzvah money into more than $4.2 million in trading ...",
"tags": [
"stocks"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.timothysykes.com/penny-stocks/"
},
{
"url": "https://www.reddit.com/r/stocks/.rss",
"title": "<b>Stocks</b> - Investing and trading for all - Reddit",
"link": "https://www.reddit.com/r/stocks/",
"description": "Almost any post related to <b>stocks</b> and investment is welcome on /r/<b>stocks</b>. ... <br>\nDisclose any open positions when discussing a particular <b>stock</b> or financial ...",
"tags": [
"stocks"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.reddit.com/r/stocks/"
},
{
"url": "https://foxonstocks.com/feed",
"title": "Fox on <b>Stocks</b>",
"link": "https://foxonstocks.com/",
"description": "PokemonGo Doubles Nintendo <b>Stock</b> Price · But… it may drop by 13% tomorrow · <br>\nGo to the profile of Rachel Fox · Rachel Fox. Jul 19. The Stigma Against DIY ...",
"tags": [
"stocks"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://foxonstocks.com/"
},
{
"url": "https://www.nytimes.com/svc/collections/v1/publish/http://www.nytimes.com/topic/subject/stocks-and-bonds/rss.xml",
"title": "<b>Stocks</b> and Bonds - The New York Times",
"link": "http://www.nytimes.com/topic/subject/stocks-and-bonds",
"description": "Articles and videos from The NY Times on investing in <b>stocks</b> and bonds, <br>\nincluding information on how to read <b>stock</b> quotes, the definitions of the different <br>\ntypes ...",
"tags": [
"stocks"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.nytimes.com/topic/subject/stocks-and-bonds"
},
{
"url": "http://economictimes.indiatimes.com/rssfeeds/2146842.cms",
"title": "<b>Stocks</b> - The Economic Times",
"link": "http://economictimes.indiatimes.com/markets/stocks",
"description": "Why you should pray for a correction in the domestic <b>stock</b> market ASAP. Signs of <br>\n... Heads up! FIIs going light on these 20 <b>stocks</b>; is it time to book profit?",
"tags": [
"stocks"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://economictimes.indiatimes.com/markets/stocks"
},
{
"url": "http://economictimes.indiatimes.com/rssfeeds/2146843.cms",
"title": "<b>Stocks</b> in News, Top <b>Stocks</b> Analysis & News on Top <b>Stocks</b>",
"link": "http://economictimes.indiatimes.com/markets/stocks/news",
"description": "News - <b>Stocks</b> - Markets - The Economic Times. ... Energy <b>stocks</b> boost Wall <br>\nStreet; Walmart at 14-month high. Aug 19, 2016, 01:57 AM IST. The Dow Jones ...",
"tags": [
"stocks"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://economictimes.indiatimes.com/markets/stocks/news"
},
{
"url": "http://www.forbes.com/economics-finance/feed2/",
"title": "<b>Economics</b> Information and <b>Economics</b> News - Forbes.com",
"link": "http://www.forbes.com/economics-finance/",
"description": "It's a sad truth that the details of money and monetary policy attract more than <br>\ntheir fair share of loons among the different little corners of <b>economics</b>.",
"tags": [
"economics"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.forbes.com/economics-finance/"
},
{
"url": "http://economics.gmu.edu/feed",
"title": "<b>Economics</b>",
"link": "http://economics.gmu.edu/",
"description": "<b>Economics</b> There couldn't be a better or more appropriate time to study <br>\n<b>economics</b>. An essential tool for understanding the complexities of modern...",
"tags": [
"economics"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://economics.gmu.edu/"
},
{
"url": "https://www.theguardian.com/business/economics/rss",
"title": "<b>Economics</b> | Business | The Guardian",
"link": "https://www.theguardian.com/business/economics",
"description": "UK <b>economic</b> indicators defy Brexit fears. Data from manufacturers .... <b>Economics</b> <br>\nviewpoint No economy is even close to achieving its personal best. Larry Elliott ...",
"tags": [
"economics"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.theguardian.com/business/economics"
},
{
"url": "https://economics.uchicago.edu/rss.xml",
"title": "University of Chicago Department of <b>Economics</b> | The University of ...",
"link": "https://economics.uchicago.edu/",
"description": "Graduate and undergraduate studies in Chicago's well-known <b>economics</b> <br>\ndepartment.",
"tags": [
"economics"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://economics.uchicago.edu/"
},
{
"url": "http://econ.columbia.edu/events/feed",
"title": "Columbia University - <b>Economics</b>",
"link": "http://econ.columbia.edu/",
"description": "Nationally ranked undergraduate and graduate programs. Faculty list, <br>\nadmissions information, course descriptions, announcements, discussion papers, <br>\nand ...",
"tags": [
"economics"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://econ.columbia.edu/"
},
{
"url": "http://rss.sciencedirect.com/publication/science/271682",
"title": "<b>Economics</b> Letters - ScienceDirect.com",
"link": "http://www.sciencedirect.com/science/journal/01651765",
"description": "The online version of <b>Economics</b> Letters at ScienceDirect.com, the world's <br>\nleading platform for high quality peer-reviewed full-text journals.",
"tags": [
"economics"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.sciencedirect.com/science/journal/01651765"
},
{
"url": "http://www.cnbc.com/id/20910258/device/rss",
"title": "<b>Economic</b> News - CNBC.com",
"link": "http://www.cnbc.com/economy/",
"description": "Find the <b>economic</b> latest news and headlines, as well as blogs and video from <br>\nCNBC.com.",
"tags": [
"economics"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.cnbc.com/economy/"
},
{
"url": "https://economics.indiana.edu/",
"title": "Department of <b>Economics</b> - Indiana University Bloomington",
"link": "https://economics.indiana.edu/",
"description": "Indiana University Bloomington Department of <b>Economics</b>.",
"tags": [
"economics"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://economics.indiana.edu/"
},
{
"url": "https://www.umass.edu/economics/rss.xml",
"title": "Department of <b>Economics</b> | UMass Amherst",
"link": "https://www.umass.edu/economics/",
"description": "Welcome. Welcome to the Department of <b>Economics</b> at UMass Amherst. Our <br>\ndepartment is committed to advancing, teaching, and applying social science to ...",
"tags": [
"economics"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.umass.edu/economics/"
},
{
"url": "https://www.reddit.com/r/Economics/.rss",
"title": "<b>Economics</b> - Reddit",
"link": "https://www.reddit.com/r/Economics/",
"description": "/r/GoodEconomics: The mission of GE is to serve as a repository for good <br>\n<b>economics</b> comments from Reddit. Comments providing an in depth <b>economic</b> <br>\nanalysis ...",
"tags": [
"economics"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.reddit.com/r/Economics/"
},
{
"url": "http://feeds2.feedburner.com/slashfilm",
"title": "/<b>Film</b> | Blogging the Reel World",
"link": "http://www.slashfilm.com/",
"description": "The latest movie and television news, reviews, trailers and opinions.",
"tags": [
"film"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.slashfilm.com/"
},
{
"url": "https://www.sxsw.com/feed/",
"title": "<b>Film</b> Archives - SXSW",
"link": "https://www.sxsw.com/category/film/",
"description": "This Thursday, August 25, marks the SXSW Early Deadline for <b>film</b> submissions. <br>\nIf your <b>film</b> isn't quite ready, don't worry. […] By Matt Katte, 08/22/2016.",
"tags": [
"film",
"music"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.sxsw.com/category/film/"
},
{
"url": "https://www.theguardian.com/us/film/rss",
"title": "<b>Film</b> - The Guardian",
"link": "https://www.theguardian.com/us/film",
"description": "Latest <b>Film</b> news, comment and analysis from the Guardian, the world's leading <br>\nliberal voice.",
"tags": [
"film"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.theguardian.com/us/film"
},
{
"url": "http://variety.com/feed/",
"title": "<b>Film</b> | Variety",
"link": "http://variety.com/v/film/",
"description": "<b>Film's</b> movers and shakers read Variety. SUBSCRIBE TODAY. Alexander Payne, <br>\nTomas Alfredson <b>films</b> tap. <b>Film</b>; 08.24.16 | 06:10PM PT ...",
"tags": [
"film",
"film",
"giant bomb"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://variety.com/v/film/"
},
{
"url": "http://deadline.com/feed/",
"title": "<b>Film</b> | Deadline",
"link": "http://deadline.com/v/film/",
"description": "<b>Film</b> news that is up-to-the-minute. Get breaking <b>Film</b> information and an <br>\nunfiltered, no-holds-barred analysis of <b>Film</b>-related events.",
"tags": [
"film"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://deadline.com/v/film/"
},
{
"url": "https://tribecafilm.com/feed.xml",
"title": "Tribeca <b>Film</b> Festival",
"link": "https://tribecafilm.com/festival/",
"description": "Francis Ford Coppola Explained His Current "<b>Film</b> Student" Mentality at Tribeca <br>\n2016 · BROAD CITY's Abbi & Ilana Set the Record Straight on the Relationship ...",
"tags": [
"film"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://tribecafilm.com/festival/"
},
{
"url": "http://www.filmcomment.com/feed/",
"title": "<b>Film</b> Comment: Home",
"link": "http://www.filmcomment.com/",
"description": "Founded in 1962, <b>Film</b> Comment magazine features reviews and analysis of <br>\nmainstream, art-house, and avant-garde filmmaking from around the world.",
"tags": [
"film"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.filmcomment.com/"
},
{
"url": "http://www.independent.co.uk/arts-entertainment/films/rss",
"title": "<b>Films</b> | Culture | The Independent",
"link": "http://www.independent.co.uk/arts-entertainment/films",
"description": "Offers news, reviews, interviews and features from the British newspaper. Check <br>\nsummaries of new <b>films</b> this week and new releases on video.",
"tags": [
"film"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.independent.co.uk/arts-entertainment/films"
},
{
"url": "http://www.movies.com/rss-feeds/movie-news-rss",
"title": "New <b>Movies</b> | <b>Movie</b> Trailers | <b>Movie</b> Times | Reviews | <b>Movies</b>.com",
"link": "http://www.movies.com/",
"description": "Your ultimate source for new <b>movies</b>. From <b>movie</b> trailers and reviews to <b>movie</b> <br>\ntimes and tickets, <b>Movies</b>.com has everything you need to know about <b>movies</b> ...",
"tags": [
"movies"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.movies.com/"
},
{
"url": "https://www.yahoo.com/movies/rss",
"title": "Yahoo <b>Movies</b>",
"link": "https://www.yahoo.com/movies/",
"description": "Showtimes, trailers, reviews, articles, interviews, news, and gossip.",
"tags": [
"movies",
"yahoo"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.yahoo.com/movies/"
},
{
"url": "https://www.yahoo.com/movies/showtimes/rss",
"title": "Yahoo <b>Movies</b>",
"link": "https://www.yahoo.com/movies/showtimes/",
"description": "Looking for an exciting career, young Bobby Dorfman leaves New York for the <br>\nglitz and glamour of 1930s Hollywood. After landing a job with his uncle, Bobby ...",
"tags": [
"movies"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=https://www.yahoo.com/movies/showtimes/"
},
{
"url": "https://www.nytimes.com/svc/collections/v1/publish/http://www.nytimes.com/section/movies/rss.xml",
"title": "<b>Movies</b> - The New York Times - NYC",
"link": "http://www.nytimes.com/section/movies",
"description": "<b>Movie</b> reviews, nationwide showtimes, new releases, <b>movie</b> news and ticket <br>\npurchase.",
"tags": [
"movies"
],
"icon": "http://s2.googleusercontent.com/s2/favicons?domain=http://www.nytimes.com/section/movies"
},
{
"url": "https://www.reddit.com/r/movies/.rss",
"title": "<b>Movie</b> News and Discussion - Reddit",