1
2
3
4
5
6
export const rssFeeds = {
["Aaron Renn"]:
"https://rss.app/feeds/sXGQmX9eRkOQusyV.xml",
["Redeemed Zoomer"]: "https://rss.app/feeds/prOlTeXzctIONSlB.xml",
["Michael Foster"]: "https://rss.app/feeds/ziyAnTCvYbFnT3MN.xml",
};

A list of RSS feeds that I subscribe to.

1
2
3
4
5
6
export const rssFeeds = {
["Robin Rendle"]: "http://robinrendle.com/feed.xml",
["Sean Voisen"]: "https://sean.voisen.org/atom.xml",
/*["Tom MacWright Micro"]: "https://macwright.com/micro/atom.xml",
["Val Town Blog"]: "https://blog.val.town/rss.xml"*/
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const rssFeeds = [
"https://anchor.fm/s/dd6922b4/podcast/rss", // devtools.fm
"https://chriscoyier.net/feed/",
"https://dannyguo.com/blog/feed.xml",
"https://feed.syntax.fm/rss",
"https://www.inkandswitch.com/index.xml",
"https://jakelazaroff.com/rss.xml",
"https://joshwcomeau.com/rss.xml",
"https://jvns.ca/atom.xml",
"https://kwon.nyc/index.xml",
"https://macwright.com/rss.xml",
"https://maggieappleton.com/rss.xml",
"https://manuelmoreale.com/feed/rss",
"https://petemillspaugh.com/rss.xml",
"https://robinrendle.com/feed.xml",
"https://stevekrouse-blogrss.web.val.run/", // val.town blog
"https://xkcd.com/rss.xml",
];
1
Next