Posts from 2025

CodeMash 2026

Published:

I am beyond excited to be speaking at CodeMash 2026 this year! My talk: Model Context Protocol: A Systems Integration Perspective was accepted.

Abstract

Model Context Protocol (MCP) is everywhere these days. It’s often presented as a revolutionary new paradigm that’s going to replace everything, but at its core, it’s simply another interface for fetching data and performing remote actions—like REST or RPC. This session reframes MCP through a systems integration lens, demonstrating how to integrate it with your existing systems rather than replacing them entirely.

Read more...

Tags: CodeMash, MCP

ODROID H4 Ultra NAS Upgrade

Published:

Way back in 2015, I built a NAS. I’d had a “NAS” before, but it was old/spare parts cobbled together to approximate a NAS. This was the first NAS I built, where I bought parts specifically to make a NAS.

I remember doing some research, but ultimately just deciding to go with this wonderful guide from Brian C Moses. It was not the most powerful box, but it did what I needed and I got about 10 years out of it, so I’d say it was a success.

Read more...

Tags: nas, odroid, self-hosting

Moved Site to Hugo

Published:

After a long time of using Python & Flask as the base for my site, I’ve switched over to Hugo. My site doesn’t change very often, so this move makes a lot of sense. It’s easier to host and no more Python updates to keep up with.

The move was pretty easy. I created a new Hugo project and copied all my static resources from the old site to the /static directory of my Hugo project. Then I took my Python Jinja2 templates layout and used it for the base of my default layout in Hugo (i.e. baseof.html). I was then able to add content for the pages of my site, and lastly copy over the posts that I wanted to keep.

Read more...

Tags: website