Skip to content

Instantly share code, notes, and snippets.

View bdmorin's full-sized avatar
👁️‍🗨️
the horrors persist, but so do l

Brian bdmorin

👁️‍🗨️
the horrors persist, but so do l
View GitHub Profile
flowchart TD
    A[Officeholder wants to run for another office] --> B{What office do they currently hold?}

    B --> C[Federal Office\ne.g. US Representative\nUS Senator]
    B --> D[State Office\ne.g. TX State Rep\nCA Assembly Member]

    C --> E{What are they running for?}
    D --> F{What are they running for?}
@bdmorin
bdmorin / output-styles-analysis.md
Created March 5, 2026 21:42
Claude Code Output Styles — Analysis of keep-coding-instructions behavior

Claude Code Output Styles — Analysis of Brian Claridge's CISO Implementation

What Output Styles Do

Output styles directly modify Claude Code's system prompt. From the official docs:

  • All output styles strip the "efficient output" instructions (be concise, etc.)
  • Custom output styles additionally strip the coding instructions (test verification, tool usage guidance, security patterns) — unless keep-coding-instructions: true is set in frontmatter
  • The custom style content gets appended to the end of what remains of the system prompt
  • Periodic reminders fire during conversation to reinforce the style

MuninnDB Shakedown Report

Date: 2026-03-04 Version: dev (built from source, commit HEAD) Platform: darwin/arm64 (Apple Silicon), Go 1.26.0 Evaluator: Claude Opus 4.6 + Brian Morin


Executive Summary

The Von Neumann Dark Factory

A Mental Model for Autonomous Software Manufacturing

Mapping self-replicating systems from fiction to your factory architecture.


The Source Material

import marimo
__generated_with = "0.14.15"
app = marimo.App(width="medium")
@app.cell
def __():
import marimo as mo
import json
@bdmorin
bdmorin / gist:6f0810da09baec40b5acba3d86008943
Created May 9, 2025 13:10
Host Blocks for LittleSnitch
127.0.0.0.1 ingest.sentry.io
@bdmorin
bdmorin / color-test.txt
Created December 30, 2024 22:53
ghostty terminal torture results
https://github.com/termstandard/colors
perl ./color-spaces.pl
https://share.cleanshot.com/0msn6Rz6
24-bit-color.sh
https://share.cleanshot.com/vd4rfdF9
#!/usr/bin/env fish
# Strict Mode and Tracing
set -e
set -u
if set -q TRACE; and test "$TRACE" = 1
set -x
end
# Help Message
@bdmorin
bdmorin / fml.py
Created August 5, 2024 14:05
fml - first middle last
#!/usr/bin/env python3
# cat life.txt | fml.py -n 10
import sys
import argparse
def process_stream(n):
lines = []
for line in sys.stdin:
@bdmorin
bdmorin / tgx.py
Last active January 8, 2025 12:07
torrentgalaxy rss manager
import re
import sqlite3
import click
import json
import os
def remove_periods(text):
return re.sub(r'\.+', ' ', text).strip()
def lowercase_sanitize(value):