EVERYTHIANG. EVERYWHERE. ALL. AT. ONCE.
Jes Olson j3s@c3f.net
Sat, 01 Apr 2023 16:19:52 -0700
5 files changed,
32 insertions(+),
72 deletions(-)
M
feed/feed.go
→
feed/feed.go
@@ -8,42 +8,18 @@ "github.com/SlyMarbo/rss"
) var lovelyFeedList = []string{ - "http://antirez.com/rss", "https://100r.co/links/rss.xml", "https://andrewkelley.me/rss.xml", "https://begriffs.com/atom.xml", - "https://blog.burntsushi.net/index.xml", - "https://blog.jse.li/index.xml", - "https://blog.tildes.net/all.atom.xml", - "https://coderanger.net/atom.xml", "https://cyberia.club/blog/blog.xml", "https://davebucklin.com/feed.xml", - "https://drewdevault.com/feed.xml", - "https://emersion.fr/blog/rss.xml", - "https://emilydamstra.com/feed", "https://facklambda.dev/atom.xml", - "https://frame.work/blog.rss", - "https://georgerrmartin.com/notablog/feed", - "https://go.dev/blog/feed.atom", - "https://harelang.org/blog/index.xml", - "https://herman.bearblog.dev/feed/", + "https://icyphox.sh/blog/feed.xml", "https://katherine.cox-buday.com/rss.xml", "https://kattraxler.github.io/feed.xml", - "https://linuxwit.ch/feed.xml", - "https://matrix.org/blog/feed", - "https://mrkaran.dev/atom.xml", - "https://rodarmor.com/feed/feed.xml", "https://sanine.net/rss.xml", "https://sequentialread.com/rss", - "https://sourcehut.org/blog/index.xml", "https://spencerkrum.com/index.xml", - "https://staffeng.com/rss", - "https://thephd.dev/feed.xml", - "https://tilde.team/~kiedtl/atom.xml", - "https://words.filippo.io/rss/", - "https://www.bitquabit.com/index.xml", - "https://www.namecoin.org/feed.rss", - "https://www.ryanprior.com/posts/index.xml", } func GetAllFeeds() []rss.Feed {
M
main.go
→
main.go
@@ -258,18 +258,9 @@ fmt.Fprintf(w, `<!doctype html>
<html lang=en> <head> <meta charset=utf-8> -<title>j3s's rss feeds</title> +<title>feeds have moved!!</title> </head> -<body> -<table> -<tbody>`) - - posts := feed.SortItems(data.Feeds) - for _, p := range posts { - fmt.Fprintf(w, "<tr><td>") - fmt.Fprintf(w, `<a href="%s">%s</a>`, p.Link, p.Title) - fmt.Fprintf(w, "</tr></td>") - } +<p> j3s's feeds have moved to <a href="https://vore.website/j3s">vore.website</a>`) } func randomRotationDegrees() int {
M
static/style.css
→
static/style.css
@@ -32,6 +32,17 @@ margin: 0 auto;
padding: 0; } +li { + list-style: none; + padding-left: 1em; + text-indent: -1em; +} + +li:before { + content: "āļ"; + padding-right: 5px; +} + #header { font-family: monospace;
M
templates/index.html
→
templates/index.html
@@ -1,30 +1,26 @@
{{- define "title" }}j3s.sh{{- end }} {{- define "body" }} -<pre>welcome, internet stranger +<p>welcome, internet stranger please get comfy and stay awhile :3 - - -</pre> - -<pre>perhaps you will find the scrolling skulls amusing?</pre> +<p> -> da scrolling skullz <marquee><pre> *whispers* hello friend hack the planet! đ đĄ it's a unix system. i know this. we're all pilgrims and strangers, and nobody knows what the fuck they're doing. never feel certain. sureness is sin. feel good. pride. confidence. effortless. present. feel bad. doubt. anxiety. potential. past. it's you. it's us. we'll make it. of course. we all must make it. because someday it'll be over. like a great big dream. i hope we can wake up together. and laugh at our efforts completely gone. and gaze into each others eyes for eternity. i want so badly to see you again. đđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđđ </pre></marquee> -<pre> - - - - - - - - -ah, enough of the skulls then. - -may i offer you a selection of our finest quotes?</pre> +<p> -> some posts from my friendz +{{- range $feed := .Feeds }} +<li> +<a href="{{ (index .Items 0).Link }}">{{ (index .Items 0).Title }}</a> + {{- if $feed.Title }} + <small> {{ $feed.Title }}</small> + {{- else if $feed.Description }} + <small> {{ $feed.Description }}</small> + {{- end }} +</li> +{{- end }} +<p> -> jes's quote/poem selection <details> <summary>when you need hope and feel lost</summary> <pre>unless someone like you cares a whole awful lot,@@ -96,22 +92,4 @@ <pre>
-ah good, you're still here! -this next item is my favorite. - -the latest posts from my friends -around the internet:</pre> -<details> - <summary>posts from my friends</summary> -{{- range $feed := .Feeds }} -<li> - <a href="{{ (index .Items 0).Link }}">{{ (index .Items 0).Title }}</a> - {{- if $feed.Title }} - <small> | {{ $feed.Title }}</small> - {{- else if $feed.Description }} - <small> | {{ $feed.Description }}</small> - {{- end }} -</li> -{{- end }} -</details> {{- end }}