old headshot of Tobias Weingartner

Toby “Nutty Swiss” Weingartner


Blog Reboot

Created 2024-12-01

Over the last 20+ years, I’ve attempted to keep a personal web site going. This has met with mixed success (ok, ok, basically none). Over the years, this blog and web site have evolved from being raw HTML, to a Hugo based static site, to using various hosting options (Google sites, Medium, etc). I’ve also dabled in writing shorter form things on Twitter, LinkedIn, Threads, etc. In the end, all these platform left something to be desired.

As a recent change in my life (cancer diagnosis) has necessitated a few changes in my daily life, I needed a project (like yeah, right) to keep me busy and distracted while I was recovering.

Along with wanting a platform where I could write up my thoughts, I’ve had ideas on how to present some of the content that I’ve not really seen elsewhere. Many of my ideas were sparked by platforms and services that I’ve had the privilege to use during my various work stints. My many years as a Unix Systems Administrator, the time at Twitter, Doordash, and Google, have given me an interesting set of insights. I’m hoping that over time, I’ll be able to make some of these ideas come to fruition here.

In order to be able to do this, I needed my own method of processing and publishing my content. At the same time, I really didn’t want to re-invent everything. Here were some of my wants and wishes:

My first attempt was to use the awesome Caddy and its built-in support for publishing Markdown files. I’ve known the author of Caddy, Matt Holt, since the days he started the project, and knew that I’d be in good hands if this fit my needs. Unfortunately, the built-in Markdown support was insufficient for my needs. I might have been able to submit a pull request to add the functionality that I was looking for. However, due to some other issues (unrelated to Caddy), I decided to take my inspiration from Caddy and build my own Markdown to HTML converter using the same Markdown parser.

At the current time, I’ve implemented a simple, minimal, CLI to generate and publish a web site into a set of static assets. I use Goldmark with Chroma and a custom extension to process any Markdown files within directory tree to HTML files alongside the Markdown files. A preliminary version of this CLI has been published to github.com/nuttyswiss/ktw. This really needs a better name… suggestions welcome. With this, I can now generate and publish a new version of my blog by doing:

1go run github.com/nuttyswiss/ktw/cmd/web -s ~/work/tepid generate
2go run github.com/nuttyswiss/ktw/cmd/web -s ~/work/tepid publish

A simple YAML config file keeps it all sorted:

1# Config for web CLI (go install github.com/nuttyswiss/web/cli/web@latest)
2site: "tepid.org"
3root: "sftp://host.example.com/home/weingart/htdocs"
4dir: "htdocs"
5templates:
6  - "about.tmpl"
7  - "article.tmpl"
8  - "blog.tmpl"

As alluded to in README#future-work, there is a lot left to do before this resembles any sort of semi-polished piece of work. But, as an MVP for myself, it meets the bar for barely acceptable.