about summary refs log tree commit diff
path: root/users/sterni/emacs/subscriptions.el
diff options
context:
space:
mode:
authorsterni <sternenseemann@systemli.org>2021-08-19T14·19+0200
committersterni <sternenseemann@systemli.org>2021-08-24T12·13+0000
commit58b9a53d5c0d7ccf050d55795bb3261f477acdf1 (patch)
treea6a448d08361cac81cbe2c89bcc40bd3d0362856 /users/sterni/emacs/subscriptions.el
parent559ee9467bbbba0794891edee7aa5fcd2c4cbccc (diff)
feat(users/sterni): add emacs configuration r/2755
Change-Id: Icbdb52ba5ea51e8594eb46c5f0740e4f7c353be4
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3381
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to '')
-rw-r--r--users/sterni/emacs/subscriptions.el78
1 files changed, 78 insertions, 0 deletions
diff --git a/users/sterni/emacs/subscriptions.el b/users/sterni/emacs/subscriptions.el
new file mode 100644
index 0000000000..07ba5b2bc3
--- /dev/null
+++ b/users/sterni/emacs/subscriptions.el
@@ -0,0 +1,78 @@
+;;; elfeed subscriptions
+(setq elfeed-feeds
+      `((,(with-temp-buffer
+            (insert-file-contents
+             (concat (getenv "HOME")
+                     "/.config/secrets/github-private-atom"))
+            (buffer-string))
+         dashboard)
+        ("https://repology.org/maintainer/sternenseemann%40systemli.org/feed-for-repo/nix_unstable/atom" dashboard releases)
+        ("http://hundimbuero.blogspot.com/feeds/posts/default?alt=rss" blog cool-and-nice)
+        ("gopher://text.causal.agency/0feed.atom" blog)
+        ("http://xsteadfastx.org/feed/" blog cool-and-nice)
+        ("https://hannes.robur.coop/atom" blog)
+        ("https://stevelosh.com/rss.xml" blog)
+        ("https://blog.benjojo.co.uk/rss.xml" blog)
+        ("https://leahneukirchen.org/blog/index.atom" blog cool-and-nice)
+        ("https://leahneukirchen.org/trivium/index.atom" blog links cool-and-nice)
+        ("https://tazj.in/feed.atom" blog cool-and-nice)
+        ("https://alyssa.is/feed.xml" blog cool-and-nice)
+        ("https://eta.st/feed.xml" blog cool-and-nice)
+        ("https://spectrum-os.org/git/www/atom/bibliography.html" links blog)
+        ("https://rachelbythebay.com/w/atom.xml" blog)
+        ("http://evrl.com/feed.xml" blog)
+        ("https://vulns.xyz/feed.xml" blog)
+        ("https://linuxrocks.online/@dnkl.rss" releases)
+        ("https://www.german-foreign-policy.com/?type=9818" news)
+        ("https://niedzejkob.p4.team/rss.xml" blog)
+        ("https://grahamc.com/feed/" blog)
+        ("https://michael.stapelberg.ch/feed.xml" blog)
+        ("https://kazu-yamamoto.hatenablog.jp/feed" blog)
+        ("https://bodil.lol/rss.xml" blog)
+        ("http://blog.nullspace.io/feed.xml" blog)
+        ("https://blog.kingcons.io/rss.xml" blog)
+        ("http://jaspervdj.be/rss.xml" blog)
+        ("https://christine.website/blog.rss" blog)
+        ("https://drewdevault.com/feed.xml" blog)
+        ("https://www.imperialviolet.org/iv-rss.xml" blog)
+        ("https://latacora.micro.blog/feed.xml" blog)
+        ("https://22gato.tumblr.com/rss" pictures cool-and-nice)
+        ("https://theprofoundprogrammer.com/rss" blog)
+        ("https://wiki.openlab-augsburg.de/_feed" openlab)
+        ("http://shitopenlabsays.tumblr.com/rss" openlab)
+        ("http://suckless.org/atom.xml" releases)
+        ("https://kristaps.bsd.lv/lowdown/atom.xml" releases)
+        ("https://www.tweag.io/rss.xml" blog)
+        ("http://planet.haskell.org/atom.xml" planet blog)
+        ("http://0pointer.net/blog/index.atom" blog)
+        ("https://emacsninja.com/feed.atom" blog)
+        ("https://emacshorrors.com/feed.atom" blog)
+        ("http://therealmntmn.tumblr.com/rss" blog)
+        ("http://blog.duangle.com/feeds/posts/default" blog)
+        ("http://blog.johl.io/atom.xml" blog)
+        ("http://blog.z3bra.org/rss/feed.xml" blog)
+        ("http://ccc.de/de/rss/updates.xml" news)
+        ;; ("http://fabienne.us/feed/" blog) ; database error
+        ("http://feeds.feedburner.com/baschtcom" blog)
+        ("http://ffaaaffaffaffaa.tumblr.com/rss" pictures)
+        ("http://fnordig.de/feed.xml" blog)
+        ("http://fotografiona.tumblr.com/rss" pictures)
+        ("https://grandhotel-cosmopolis.org/de/feed" news)
+        ("http://guteaussicht.org/rss" pictures)
+        ("http://konvergenzfehler.de/feed/" blog)
+        ("https://markuscisler.com/feed.xml" blog)
+        ("http://n00bcore.de/feed/" podcast)
+        ("http://spacethatneverwas.tumblr.com/rss" pictures)
+        ("http://theresa.someserver.de/blog/?feed=rss2" blog)
+        ("http://www.frumble.de/blog/feed/" blog)
+        ("http://www.plomlompom.de/PlomRogue/plomwiki.php?action=Blog_Atom" blog)
+        ("http://www.whvrt.de/rss" pictures)
+        ("http://www.windytan.com/feeds/posts/default" blog)
+        ("https://echtsuppe.wordpress.com/feed/" blog defunct)
+        ("https://mgsloan.com/feed.xml" blog)
+        ("https://notes.sterni.lv/atom.xml" me)
+        ("http://arduina.net/feed/" defunct blog)
+        ("https://anchor.fm/s/94bb000/podcast/rss" podcast)))
+        ;; http://www.wollenzin.de/feed/ ;_;
+
+(provide 'subscriptions)