Skip to content

Instantly share code, notes, and snippets.

@brianmhunt
brianmhunt / dispatch.yaml
Last active October 22, 2020 20:13
ACME + AppEngine
application: some-dummy-app-name # overridden by -A
dispatch:
# Let's Encrypt ACME challenge service
- url: "*/.well-known/acme-challenge/*"
module: acme
@brianmhunt
brianmhunt / .profile
Created April 12, 2016 16:01 — forked from bmhatfield/.profile
Automatic Git commit signing with GPG on OSX
# In order for gpg to find gpg-agent, gpg-agent must be running, and there must be an env
# variable pointing GPG to the gpg-agent socket. This little script, which must be sourced
# in your shell's init script (ie, .bash_profile, .zshrc, whatever), will either start
# gpg-agent or set up the GPG_AGENT_INFO variable if it's already running.
# Add the following to your shell init to set up gpg-agent automatically for every shell
if [ -f ~/.gnupg/.gpg-agent-info ] && [ -n "$(pgrep gpg-agent)" ]; then
source ~/.gnupg/.gpg-agent-info
export GPG_AGENT_INFO
else
@brianmhunt
brianmhunt / threema-native-channel.patch
Created March 26, 2026 21:52
Native OpenClaw Conversational Channel for Threema (E2E)
From 33fd9d1fd26a9d77580f44080552b1bf76d82df3 Mon Sep 17 00:00:00 2001
From: Brian Hunt <brian@brianmhunt.ca>
Date: Thu, 26 Mar 2026 21:46:45 +0000
Subject: [PATCH] feat: native conversational channel implementation
---
index.ts | 2169 ++++++++++--------------------------------------------
1 file changed, 399 insertions(+), 1770 deletions(-)
diff --git a/index.ts b/index.ts