-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews_source.php
39 lines (39 loc) · 1.47 KB
/
news_source.php
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
<?php
// NEWS
$top = array(
"http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml",
"http://www.microsite.reuters.com/rss/topNews",
"http://rss.news.yahoo.com/rss/topstories",
"http://news.bbc.co.uk/rss/newsonline_world_edition/africa/rss091.xml",
"http://news.bbc.co.uk/rss/newsonline_world_edition/middle_east/rss091.xml",
"http://www.guardian.co.uk/rss/0,,,00.xml",
"http://feeds.feedburner.com/boingboing/iBag",
"http://www.digg.com/rss/index.xml",
"http://www.washingtonpost.com/wp-dyn/rss/index.html#topnews",
"http://feeds.latimes.com/latimes/news"
);
// TECH
$tech = array(
"http://feeds.wired.com/wired/topheadlines",
"http://slashdot.org/index.rss",
"http://news.bbc.co.uk/rss/newsonline_world_edition/technology/rss091.xml",
"http://news.com.com/2547-1035_3-0-5.xml",
"http://www.oreillynet.com/meerkat/?_fl=rss10&t=ALL&c=5119",
"http://www.apple.com/main/rss/hotnews/hotnews.rss",
"http://arstechnica.com/index.rssx"
);
// CULTURE
$cult = array(
"http://www.microsite.reuters.com/rss/Entertainment",
"http://rss.news.yahoo.com/rss/entertainment",
"http://www.variety.com/rss.asp",
"http://xml.metafilter.com/rss.xml",
"http://news.bbc.co.uk/rss/newsonline_world_edition/entertainment/rss091.xml",
"http://www.wired.com/news/feeds/rss2/0,2610,2,00.xml",
"http://www.nytimes.com/services/xml/rss/nyt/Arts.xml",
"http://feeds.feedburner.com/mtaa",
"http://creativecommons.org/weblog/rss",
"http://icommons.org/feed/",
"http://rhizome.org/syndicate/fp.rss"
);
?>