diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-02-06 15:24:55 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-02-06 15:24:55 +0100 |
| commit | 537ccd14634c1736c03d487388bd9d2278af4493 (patch) | |
| tree | 9f0909e2f6b4726e6d1fe5f9a3a83c214ed9a805 /bin | |
| parent | 7171c3e198cfe88986447c1fe927615322cd33ee (diff) | |
| download | mitjafelicijan.com-537ccd14634c1736c03d487388bd9d2278af4493.tar.gz | |
Updated webring content
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/webring.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/webring.rb b/bin/webring.rb index f556bb0..05537a2 100644 --- a/bin/webring.rb +++ b/bin/webring.rb | |||
| @@ -8,7 +8,7 @@ summary_max_length = 320 | |||
| 8 | feeds = [ | 8 | feeds = [ |
| 9 | "https://blog.regehr.org/feed", | 9 | "https://blog.regehr.org/feed", |
| 10 | "https://www.neilhenning.dev/index.xml", | 10 | "https://www.neilhenning.dev/index.xml", |
| 11 | "https://drewdevault.com/feed.xml", | 11 | "https://drewdevault.com/blog/index.xml", |
| 12 | "https://offbeatpursuit.com/blog/index.rss", | 12 | "https://offbeatpursuit.com/blog/index.rss", |
| 13 | "https://mirzapandzo.com/rss.xml", | 13 | "https://mirzapandzo.com/rss.xml", |
| 14 | "https://journal.valeriansaliou.name/rss/", | 14 | "https://journal.valeriansaliou.name/rss/", |
| @@ -66,9 +66,9 @@ feeds.each do |feed_url| | |||
| 66 | puts "Summary: #{summary}" | 66 | puts "Summary: #{summary}" |
| 67 | puts | 67 | puts |
| 68 | rescue OpenURI::HTTPError => e | 68 | rescue OpenURI::HTTPError => e |
| 69 | puts "Failed to fetch #{url}: #{e.message}" | 69 | puts "Failed to fetch #{feed_url}: #{e.message}" |
| 70 | rescue SimpleRSSError => e | 70 | rescue SimpleRSSError => e |
| 71 | puts "Failed to parse #{url}: #{e.message}" | 71 | puts "Failed to parse #{feed_url}: #{e.message}" |
| 72 | end | 72 | end |
| 73 | end | 73 | end |
| 74 | 74 | ||
