Skip to content

Instantly share code, notes, and snippets.

View dixson3's full-sized avatar

James Dixson dixson3

  • Yoshiko Studios
  • Seattle, WA
View GitHub Profile
@dixson3
dixson3 / BOOTSTRAP.md
Last active January 16, 2026 19:41
Gas Town Project Bootstrap - Complete crew infrastructure template for multi-agent development

Gas Town Project Bootstrap

Version: 1.2.0 Date: 2026-01-16

This file contains everything needed to bootstrap a Gas Town project with full crew infrastructure. A Mayor can read this file and set up a new or existing project with the same collaboration capabilities.


Table of Contents

sudo find . -xdev -type f | cut -d "/" -f 2 | sort --buffer-s ize=2G | uniq -c | sort -n
@dixson3
dixson3 / workspace.sh
Created January 10, 2014 19:11
Create and manage a case-sensitive disk-image on OSX. This is great when you have a need to work with case-sensitive repos on a mac.
#!/bin/bash
# where to store the sparse-image
WORKSPACE=~/Documents/workspace.dmg.sparseimage
create() {
hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 60g -volname workspace ${WORKSPACE}
}
detach() {