├── README.md ├── feeds.list ├── list ├── screenshot_galleries.list └── simple_feed_finder.sh /README.md: -------------------------------------------------------------------------------- 1 | # List of nixers.net user sites 2 | 3 | See 4 | [the wiki](https://github.com/nixers-projects/sites/wiki/List-of-nixers.net-user-sites). 5 | 6 | Please add your site or update the wiki if a site dies or moves. 7 | 8 | Add your site and feed links to the files in this repo. 9 | -------------------------------------------------------------------------------- /feeds.list: -------------------------------------------------------------------------------- 1 | https://www.betoissues.com/atom.xml 2 | http://purestench.blogspot.com/feeds/posts/default 3 | https://www.kaashif.co.uk/feeds/all.atom.xml 4 | https://sanctum.geek.nz/arabesque/feed/ 5 | https://venam.nixers.net/blog/feed.xml 6 | https://tiuxo.com/blog/index.xml 7 | http://feeds.xero.nu/rss/blog/newest 8 | https://rocx.rocks/feed.atom.xml 9 | https://www.uninformativ.de/blog/feeds/en.atom 10 | https://bouncepaw.github.io/feed.xml 11 | https://ols.wtf/feed.xml 12 | https://seninha.org/feed.xml 13 | https://srp.life/index.xml 14 | https://seirdy.one/atom.xml 15 | -------------------------------------------------------------------------------- /list: -------------------------------------------------------------------------------- 1 | https://www.betoissues.com 2 | http://andrew.harrison.nu 3 | https://bouncepaw.github.io 4 | https://dragons.rocks 5 | http://purestench.blogspot.com 6 | http://charliethe.ninja 7 | https://eyenx.ch 8 | https://sanctum.geek.nz/arabesque/ 9 | http://greduan.com/ 10 | http://icetimux.com 11 | http://josuah.net/ 12 | https://www.kaashif.co.uk 13 | https://blog.mrtnrdl.de 14 | http://neeasade.net 15 | https://rocx.rocks 16 | http://s0lll0s.me 17 | https://slothkrew.com/ 18 | http://strangequark.tk 19 | http://techieagnostic.com 20 | https://tiuxo.com 21 | http://u2620.net 22 | http://venam.nixers.net/blog 23 | http://www.mort.coffee/ 24 | http://xero.nu 25 | http://blog.xero.nu 26 | http://code.xero.nu 27 | http://zidhuss.tech 28 | https://www.uninformativ.de 29 | https://mcol.xyz 30 | https://ols.wtf 31 | https://seninha.org 32 | https://srp.life 33 | https://seirdy.one/ 34 | -------------------------------------------------------------------------------- /screenshot_galleries.list: -------------------------------------------------------------------------------- 1 | venam https://venam.nixers.net/blog/scrot.html 2 | mcol https://mcol.xyz/screenshots.html 3 | movq https://www.uninformativ.de/desktop/ 4 | pyratebeard https://pyratebeard.net/scrots/ 5 | z3bra http://pub.z3bra.org/img/wm/nx.html 6 | l0bster https://l0bster.ru/scr0t/index.html 7 | ramiferous https://codeberg.org/pfr/NetBSD/raw/branch/master/home/Pictures/dumps/index.html 8 | eyenx https://pub.eyenx.ch/scrots.html 9 | -------------------------------------------------------------------------------- /simple_feed_finder.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | while read a; do 4 | curl -L "$a" | awk '/(atom|rss)\+xml/' 5 | done < list 6 | --------------------------------------------------------------------------------