Writings

Articles & Writeups

Thoughts on software development, and everything in between.

How to connect the Hermes Desktop App to a Remote Hermes Backend (the clean way)
Guides3 Jun 2026

How to connect the Hermes Desktop App to a Remote Hermes Backend (the clean way)

Run the Hermes agent on an always-on machine and drive it from the native desktop app. No tunnels, no proxy. The exact flags, the token to persist, and secure Tailscale access.

#Development #AI #LLM
Block Clankers: A GitHub Action That Auto-Blocks Bot PR Spam
Development15 May 2026

Block Clankers: A GitHub Action That Auto-Blocks Bot PR Spam

A small GitHub Action that auto-syncs your block list against a community-maintained registry of spam bot accounts. Fork it, drop in a token, and never deal with a "fix typo" PR from a brand-new account again.

#Development #Tutorial #github
The best coding LLM setup I've discovered (so far)
Development6 Feb 2026

The best coding LLM setup I've discovered (so far)

My current LLM coding setup and how to replicate it. After testing various tools and workflows, I've landed on Claude Code with MCP tools like Serena for intelligent code navigation and Context7 for live documentation lookups. I cover why context management matters, how custom skills improve output quality, and the most important habit most developers miss — telling the AI when it's wrong.

#Development #AI #LLM
Making your documentation AI-Friendly: A Practical Guide
Guides8 Jun 2025

Making your documentation AI-Friendly: A Practical Guide

I've been working with AI and web scraping for a while now, and I want to share some practical tips on how to make your documentation more AI-friendly. Instead of trying to block all bots (which never really works), let's focus on creating structured, reliable channels for beneficial AI while keeping the bad actors out.

#AI #Documentation #Tutorial
Reverse engineering Reolink cameras for custom scenes and modes with Home Automation
Reverse Engineering30 Apr 2022

Reverse engineering Reolink cameras for custom scenes and modes with Home Automation

The Reolink app allows you to create “scenes” or modes to set a “Home” or “Away” profile, turning on/off motion alert notifications. However when using an NVR you only have the option to set it for all cameras, not camera specific.

#Reverse Engineering #Hacking
Reverse engineering a private API with MITM Proxy
Reverse Engineering20 Aug 2020

Reverse engineering a private API with MITM Proxy

Developers can often struggle to find the data they need for their personal projects due to certain services locking down their API’s. So I wanted to show you a way you can get the data you need.

#Reverse Engineering #Hacking #API
Generating dynamic images on the fly for Email Marketing
Development2 Jul 2020

Generating dynamic images on the fly for Email Marketing

I was recently tasked to find a lightweight method to generate dynamic images on the fly for Email Campaigns. Sure we could use third-party solutions to do just that but for a fee. These are great services but being a developer I wanted to see if I could build my own that fits my needs.

#Email #Marketing #Development