personal-website

source for my personal website regexghost.com
git clone https://git.regexghost.com/personal-website.git
Log | Files | Refs | README

commit 1b863b5988c6da46bcc99c17d2dd538e540ea1c0
parent 4bf4ec5fa3719c159089813c9301f8dea952d085
Author: regexghost <dev@regexghost.com>
Date:   Tue, 25 Aug 2026 14:39:46 +0100

build.sh script in root dir, renamed other one to make.sh

Diffstat:
Abuild.sh | 21+++++++++++++++++++++
Mother/media-watched.md | 2++
Rscripts/build.sh -> scripts/make.sh | 0
3 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/build.sh b/build.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +pushwebsite () { + rsync -arvc --delete "$1" racknerd:/var/www/personal-website/ +} + +case "$1" in + b*) + ./scripts/make.sh + ;; + p*) + pushwebsite /tmp/personal-website/build/ + ;; + f*) + ./scripts/make.sh + pushwebsite /tmp/personal-website/build/ + ;; + *) + echo "Usage: case [build|push]" + ;; +esac diff --git a/other/media-watched.md b/other/media-watched.md @@ -17,6 +17,8 @@ Links provided only when something lives on the internet (so not for TV shows, b ## August 2026 +* \c-yellow Fallout 4 Survival, But My Health is Draining \c-off - MAGOOdog - [link](https://www.youtube.com/watch?v=ckqlkoCGPAA) +* \c-magenta SUN KISS \c-off - TUIDE * \c-yellow Can You Beat Fallout 4 While Only Healing With Goulish \c-off - MAGOOdog - [video](https://www.youtube.com/watch?v=cJUc_jCWjms) * \c-yellow Terrifying Discoveries in Racing Games \c-off - The Stash - [video link](https://www.youtube.com/watch?v=NJTnffYX0ho) * \c-magenta mosi mosi? (LEESOL Remix) \c-off - sasane diff --git a/scripts/build.sh b/scripts/make.sh