From e68cacf15c36007df514ad24e3c67ea66cf4d514 Mon Sep 17 00:00:00 2001 From: askiiart Date: Tue, 10 Oct 2023 10:13:11 -0500 Subject: [PATCH] Update site, fix scripts, block more AIs --- blog/marlin-boot-animations.html | 2 +- feed.xml | 10 +++++----- generate-rss.sh | 4 +--- index.html | 17 +++++------------ index.md | 10 ++-------- md2html.sh | 13 +++++++------ packet.pdf | Bin 223183 -> 0 bytes portfolio.html | 2 +- resume.html | 2 +- robots.txt | 23 ++++++++++++++++++++++- stack.html | 22 ++++++++++------------ stack.md | 16 +++++++--------- style.css | 4 ++++ template.html | 2 +- til/using-json-with-docker-compose.html | 2 +- wishlist.html | 2 +- 16 files changed, 69 insertions(+), 62 deletions(-) delete mode 100755 packet.pdf diff --git a/blog/marlin-boot-animations.html b/blog/marlin-boot-animations.html index 1468bf0..e262b8a 100755 --- a/blog/marlin-boot-animations.html +++ b/blog/marlin-boot-animations.html @@ -527,6 +527,6 @@ diff --git a/feed.xml b/feed.xml index 12f0149..5067c62 100644 --- a/feed.xml +++ b/feed.xml @@ -5,22 +5,22 @@ askiiart.net The feed for askiiart.net, I guess https://askiiart.net - Mon, 09 Oct 2023 15:27:37 +0000 + Tue, 10 Oct 2023 15:10:14 +0000 My Stack https://askiiart.net/stack.html - Marlin Boot Animations - https://askiiart.net/blog/marlin-boot-animations.html + Using JSON with docker compose + https://askiiart.net/til/using-json-with-docker-compose.html askiiart's site https://askiiart.net/index.html - Using JSON with docker compose - https://askiiart.net/til/using-json-with-docker-compose.html + Marlin Boot Animations + https://askiiart.net/blog/marlin-boot-animations.html diff --git a/generate-rss.sh b/generate-rss.sh index 5aa623b..b360bd1 100755 --- a/generate-rss.sh +++ b/generate-rss.sh @@ -14,6 +14,4 @@ find . -name "*.html" | while read -r item; do TITLE=$(grep -m 1 -oP '(?<=^# ).*' ${item}.md | cat) printf "\n \n ${TITLE}\n https://askiiart.net/${item}.html\n " >>feed.xml done -printf "\n\n\n" >>feed.xml - -find . \( ! -regex './md2html.sh' \) -type f | xargs sed -i 's/language-/language-/g' +printf "\n\n\n" >>feed.xml \ No newline at end of file diff --git a/index.html b/index.html index 8e39259..8d3591e 100755 --- a/index.html +++ b/index.html @@ -9,12 +9,11 @@

askiiart's site

-

I'm a hobby programmer and co-founder and vice president of +

I'm a hobby programmer, and co-founder and vice president of the TCCD - CompSci and Coding Club. This is my site.

-

See my resume - here!

+ CompSci and Coding Club. I do stuff sometimes. This is my + site.

Pages

@@ -114,7 +108,6 @@

Other/Meta

-

If you like what you see here, a donation would be nice.

Software

-

To view this page in markdown, replace the .html in the URL with .md. If this is the root page (askiiart.net), get the markdown version of it at index.md. Source code here and here.

+

code (mirror) rss

diff --git a/stack.md b/stack.md index 89f7f6c..bf9330c 100755 --- a/stack.md +++ b/stack.md @@ -12,16 +12,15 @@ - PSU: Corsair RM750x - UPS: CyberPower CP1500PFCLCD - Case: Some obscure thing from Cybertron (now CLX Gaming) -- GPU: Integrated Intel UHD 750 +- iGPU: Intel UHD 750 ## Software -- OS: Unraid 6.11.5 -- Docker installed natively, but I might move it to a Debian VM -- Storage: 3x 4TB, 1x 8TB parity drive, 512GB cache drive, running off a 32GB USB drive - - Equivalent to RAID-5 - - 12TB of capacity available - - Can lose any one drive without losing any data. +- OS: Debian 12 (Bookworm) +- Basically everything runs in Docker, may move to Podman. +- Storage: 3x 4TB, 1x 8TB parity drive, 512GB cache drive, boots off 120GB SSD. + - Using SnapRAID + mergerfs. + - ~12TB of storage usable. - [PC Part Picker Link](https://pcpartpicker.com/user/Cheap_Fleet/saved/pR82kL) ## Website @@ -30,11 +29,10 @@ - Behind Caddy as a reverse proxy - Written in markdown, then converted to HTML using pandoc. - Script for this [here](https://git.askiiart.net/askiiart/askiiart-net/src/branch/main/md2html.py) - - pandoc is one of the very few things I don't have in Docker (yet) - Syntax highlighting using [`prism.js`](https://prismjs.com) - [In a git repo](https://git.askiiart.net/askiiart/askiiart-net) ## Docker registry - Currently just redirecting to [Docker Hub](https://hub.docker.com/u/askiiart), using the Caddy config from [here](https://httptoolkit.com/blog/docker-image-registry-facade/) ([direct link to Caddyfile](https://github.com/httptoolkit/docker-registry-facade/blob/main/Caddyfile)) -- I'll probably set up a proper self-hosted registry later, but I haven't gotten to it yet. +- I'll probably set up a proper self-hosted registry later, but I haven't gotten to it yet. And I've only got 2.5 MBps up, so that can probably wait until Docker does something dumb. diff --git a/style.css b/style.css index 5e58ebf..0657bf1 100755 --- a/style.css +++ b/style.css @@ -61,4 +61,8 @@ wrap { body { max-width: none } +} + +footer { + text-align: center; } \ No newline at end of file diff --git a/template.html b/template.html index eb15661..b93b3d4 100755 --- a/template.html +++ b/template.html @@ -12,6 +12,6 @@
-

To view this page in markdown, replace the .html in the URL with .md. If this is the root page (askiiart.net), get the markdown version of it at index.md. Source code here and here.

+

code (mirror) rss

diff --git a/til/using-json-with-docker-compose.html b/til/using-json-with-docker-compose.html index 1302b53..f4e025d 100644 --- a/til/using-json-with-docker-compose.html +++ b/til/using-json-with-docker-compose.html @@ -42,6 +42,6 @@
-

To view this page in markdown, replace the .html in the URL with .md. If this is the root page (askiiart.net), get the markdown version of it at index.md. Source code here and here.

+

code (mirror) rss

diff --git a/wishlist.html b/wishlist.html index ee26a07..00575b8 100644 --- a/wishlist.html +++ b/wishlist.html @@ -30,6 +30,6 @@