#!/bin/sh fetch() { case "$2" in http://sigusr2.net*) curl -L --max-redirs 0 -H "User-Agent:" -f -s -m 15 \ "$2" 2>/dev/null | sed 's/THEDATE.*//;s/>\/\//>http:\/\/sigusr2.net\//' ;; http*) curl -L --max-redirs 0 -H "User-Agent:" -f -s -m 15 \ "$2" 2>/dev/null ;; gemini*) # https://git.bvnf.space/hurl/ hurl "$2" ;; esac } feeds () { feed "alexander cobleigh" "https://cblgh.org/all.xml" feed "ash" "https://catgirl.ai/log/atom.xml" feed "begriffs" "https://begriffs.com/atom.xml" feed "ben o neill" "https://benoneill.xyz/rss.xml" feed "byron torres" "https://torresjrjr.com/archive/index.xml" feed "cem keylan" "https://cemkeylan.com/rss.xml" feed "chris wellons" "https://nullprogram.com/feed/" feed "david vázquez" "https://davazp.net/feed.xml" feed "dcz" "https://dcz_self.gitlab.io/atom.xml" feed "drew devault" "https://drewdevault.com/blog/index.xml" feed "erzadel" "https://erzadel.net/feed.xml" feed "Ghost Letters" "https://blog.ghostletters.xyz/index.xml" feed "grimgrains" "https://grimgrains.com/links/rss.xml" feed "hmbrg" "https://hmbrg.xyz/rss.xml" feed "hugo landau" "https://www.devever.net/~hl/articles.feed" feed "hund" "https://hund.tty1.se/feed.xml" feed "hundred rabbits" "https://100r.co/links/rss.xml" feed "icyphox" "https://icyphox.sh/blog/feed.xml" feed "john ankarstrom" "http://ankarstrom.se/~john/articles/feed.xml" feed "jbauer" "https://www.paritybit.ca/feed.xml" feed "julia evans" "https://jvns.ca/atom.xml" feed "june" "https://text.causal.agency/feed.atom" feed "leah" "https://vimuser.org/feed.xml" feed "liw" "https://blog.liw.fi/index.rss" feed "LOW<-TECH magazine" "https://solar.lowtechmagazine.com/feeds/all-en.atom.xml" feed "martin" "gemini://gemini.clehaxze.tw/atom.xml" feed "noocsharp" "https://nihaljere.xyz/words/atom.xml" feed "OpenBSD Webzine" "https://webzine.puffy.cafe/atom.xml" feed "palm93" "https://heathens.club/~palm93/blog/rss.xml" feed "peter saint-andré" "https://stpeter.im/atom.xml" feed "phoebos" "gemini://gemini.bvnf.space/blog.rss" feed "robert heaton" "https://robertheaton.com/feed.xml" feed "roman zolotarev" "https://rgz.ee/rss.xml" feed "russ cox" "https://research.swtch.com/feed.atom" feed "sigrid" "https://ftrv.se/posts.rss" feed "SIGUSR2" "http://sigusr2.net/rss.xml" feed "solene" "https://dataswamp.org/~solene/rss.xml" feed "susam's blog" "https://susam.net/blog/feed.xml" feed "susam's maze" "https://susam.net/maze/wall/feed.xml" feed "unblogmas" "https://unblogmas.ar/rss.xml" }