diff --git a/blog/blog.atom b/blog/blog.atom new file mode 100644 index 0000000..73f9464 --- /dev/null +++ b/blog/blog.atom @@ -0,0 +1,59 @@ + + + will's blog + https://isopod.cool/blog/ + + 2023-01-12T00:00:00+00:00 + + Will + https://isopod.cool/ + + + Guide - Things I Keep Having To Google + guide_things_i_keep_having_to_google + + 2023-01-12T00:00:00+00:00 + 2023-01-12T00:00:00+00:00 + A continually updating personal reference of random information I keep needing but keep forgetting. + + + deeptwisty.com 2nd anniversary - A History of This Bullshit + deeptwistycom_2nd_anniversary_-_a_history_of_this_bullshit + + 2022-09-19T00:00:00+00:00 + 2022-09-19T00:00:00+00:00 + An abridged history of my presence on the World Wide Web, from my first customized Tumblr pages to now. + + + Guide - Self-Host Safely with WireGuard + guide_self_host_safely_with_wireguard + + 2022-08-25T00:00:00+00:00 + 2022-08-25T00:00:00+00:00 + A basic guide on connecting two Linux servers via WireGuard to make one publically accessible through the other. + + + Late May Updates + Late_May_Updates + + 2022-05-21T00:00:00+00:00 + 2022-05-21T00:00:00+00:00 + In which I discuss my evolving understanding of my sexuality, among other miscellaneous updates. + + + Second + Second + + 2022-04-25T00:00:00+00:00 + 2022-04-25T00:00:00+00:00 + A rant about the world's worst game that I think you should play. + + + First + First + + 2022-04-13T00:00:00+00:00 + 2022-04-13T00:00:00+00:00 + I've got a blog now! + + diff --git a/blog/index.php b/blog/index.php index 79b38d8..1901bd8 100644 --- a/blog/index.php +++ b/blog/index.php @@ -40,7 +40,7 @@

blog

inane ramblings

status $face $timeago
$content
"; ?> - + "; + $year = "-69420"; + foreach($content->entry as $entry) { + + $nyr = substr($entry->published, 0, 4); + if($nyr != $year) { + $year = $nyr; + echo "
  • $year

  • "; + } + echo "
  • ".$entry->title."
  • "; + + } + echo ""; + ?>

    2023-02-09

    I've deprecated the changelog on my website in favor of just linking an RSS feed of my git commits to it. Strictly speaking this is probably a worse user experience, but it's my website and I'm too lazy to keep maintaining two changelogs. Figured I'd announce it here in case someone is regularly checking on the changelog but isn't subscribed to its Atom feed and is curious what happened.

    diff --git a/stuff/rssfilter.php b/stuff/rssfilter.php index efe6079..41ae38e 100644 --- a/stuff/rssfilter.php +++ b/stuff/rssfilter.php @@ -84,7 +84,7 @@ if($feed // A basic check to m echo $content->channel->pubDate->asXML(); echo $content->channel->lastBuildDate->asXML(); echo $content->channel->docs->asXML(); - echo "niceopod's RSS filter script"; + echo "will's RSS filter script"; echo $content->channel->managingEditor->asXML(); echo $content->channel->webMaster->asXML(); @@ -115,7 +115,7 @@ if($feed // A basic check to m foreach($content->contributor as $contributor) { echo $contributor->asXML(); } - echo "niceopod's Atom filter script"; + echo "will's Atom filter script"; echo $content->icon->asXML(); echo $content->logo->asXML(); echo $content->rights->asXML();