diff options
author | mms <michal@sapka.me> | 2023-11-18 23:54:01 +0100 |
---|---|---|
committer | mms <michal@sapka.me> | 2023-11-18 23:54:01 +0100 |
commit | e04a1390335602a53031f1083b4bf784c54a80ce (patch) | |
tree | 491108a12504c81350f2c41bc9641f71f750d945 | |
parent | 01fa8ffafee92e0ddc1c723f97f4fb3d33ca8b20 (diff) |
feat: funnies
-rw-r--r-- | content/funnies.md | 27 | ||||
-rw-r--r-- | layouts/_default/index.html | 1 | ||||
-rwxr-xr-x | upload-funnies.sh | 4 |
3 files changed, 32 insertions, 0 deletions
diff --git a/content/funnies.md b/content/funnies.md new file mode 100644 index 0000000..c53546c --- /dev/null +++ b/content/funnies.md @@ -0,0 +1,27 @@ +--- +title: "Funnies" +category: "funny" +type: special +abstract: Funny and amusing thingies +date: 2023-11-18T23:22:22+01:00 +draft: false +--- +The following is a curated collection of things I found funny or amusing. +I have not created any of those, so everything under Funnies is not under the main site license. + +I am sure not all (or any) will be considered funny by anyone else, so those things are funny to *me* and me alone. + +Unless stated otherwise, any item is SFW. + +I will upload new things every few weeks/months, but this part of my site is RSS unfriendly. +If you want, just come back every so often and see if there is a new funny! + +### Funnies archives + +└── [funnies](/funnies/c/) + └── [2023](/funnies/c/2023) [current] + +### Tech stuff for nerds + +It's just a directory with auto indexing enabled. I upload new data using rsync(1). + diff --git a/layouts/_default/index.html b/layouts/_default/index.html index 3e7f1e6..1dde174 100644 --- a/layouts/_default/index.html +++ b/layouts/_default/index.html @@ -16,6 +16,7 @@ Hey! I'm Michał Sapka, a computer programmer living in Kraków, Poland. This we <nav> <P> ✦ <a href="/star-trek/home/"><b>Star Trek fan site</b>: my little shrine to the greatest american Sci-Fi that has ever graced our screens.</a> </p> + <P> ♠ <a href="/funnies/"><b>Funnies</b>: A small, curated collection of things I found funny or ammusing.</a> </p> <p> ♥ <a href="/site/info/"><b>Site info</b> : you can find site uptates, metrics, statics, and legal thingies here.</a></p> </nav> diff --git a/upload-funnies.sh b/upload-funnies.sh new file mode 100755 index 0000000..6c683c5 --- /dev/null +++ b/upload-funnies.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env sh + +rsync -rtvzP ~/funnies/ mms@michal.sapka.me:/var/www/htdocs/funnies/2023/$(date +%F) +rm ~/funnies/* |