chore: update default feeds 99beb422
Steve Simkins · 2026-07-05 22:53 1 file(s) · +19 −9
static/app.js +19 −9
5 5
// site's /favicon.ico.
6 6
const EXAMPLE_FEEDS = [
7 7
  {
8 -
    title: "Bubbles",
9 -
    url: "https://bubbles.town/feed",
10 -
    favicon: "https://bubbles.town/static/favicon-32.png",
8 +
    title: "NYT Top Stories",
9 +
    url: "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml",
10 +
    favicon: "https://www.nytimes.com/favicon.ico",
11 +
  },
12 +
  {
13 +
    title: "NPR",
14 +
    url: "https://feeds.npr.org/1002/rss.xml",
15 +
    favicon: "https://media.npr.org/chrome/favicon/favicon-180x180.png"
11 16
  },
12 17
  {
13 18
    title: "Hacker News",
15 20
    favicon: "https://news.ycombinator.com/y18.svg",
16 21
  },
17 22
  {
18 -
    title: "Jared Henderson",
19 -
    url: "https://www.youtube.com/feeds/videos.xml?channel_id=UC2Kyj04yISmHr1V-UlJz4eg",
20 -
    favicon: "https://www.youtube.com/favicon.ico",
23 +
    title: "NASA Images",
24 +
    url: "https://www.nasa.gov/feeds/iotd-feed/",
25 +
    favicon: "https://www.nasa.gov/wp-content/plugins/nasa-hds-core-setup/assets/favicons/apple-touch-icon-57x57.png"
21 26
  },
22 27
  {
23 -
    title: "NYT Top Stories",
24 -
    url: "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml",
25 -
    favicon: "https://www.nytimes.com/favicon.ico",
28 +
    title: "Bubbles",
29 +
    url: "https://bubbles.town/feed",
30 +
    favicon: "https://bubbles.town/static/favicon-32.png",
31 +
  },
32 +
  {
33 +
    title: "Jared Henderson",
34 +
      url: "https://www.youtube.com/feeds/videos.xml?channel_id=UC2Kyj04yISmHr1V-UlJz4eg",
35 +
      favicon: "https://www.youtube.com/favicon.ico",
26 36
  },
27 37
];
28 38