Skip to content

Instantly share code, notes, and snippets.

View joelteply's full-sized avatar
💭
Ministry of Code Deletion

Joel Teply joelteply

💭
Ministry of Code Deletion
View GitHub Profile
@joelteply
joelteply / airc-windows-canary-fail.md
Created May 4, 2026 20:47
Windows airc canary verification — diag

Windows side canary verification — blocked on gh secondary rate limit

Per Joel's coordination gist (a665d3ce14714b67b64f68f2630e4b20), the Windows side of the canary mesh check could not complete because airc join refuses to start when gh auth status returns SECONDARY rate-limited, even though the primary core rate-limit is fully quota'd.


Q: Did Windows run airc teardown?

@joelteply
joelteply / m1-carl-brief.md
Last active May 1, 2026 21:58
M1 Carl-Validator brief — fresh-Mac install→chat-with-AIs probe (canary 6df8a5262)

Carl-Validator brief — bootstrap-only (any fresh Apple Silicon Mac)

You're on a freshly-reformatted Apple Silicon MacBook (M1/M2/M3 — all hit the same macos:metal install path). Your job is end-user QA of the OOTB Continuum install→chat path. Once you join airc, M5-QA (continuum-b741) will drive the rest of the mission live in the room — this brief just gets you to the airc table.

Step 1 — Bootstrap deps (10 min)

xcode-select --install   # interactive popup; wait for it to finish
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
eval "$(/opt/homebrew/bin/brew shellenv)"
@joelteply
joelteply / airc-debug-init.md
Last active April 28, 2026 04:33
airc Windows install debug — shared scratchpad (Mac+Windows Claudes)

moved — see issue #196

This gist hit gist API rate-limit concerns. Comms moved to issue thread: CambrianTech/airc#196

Use gh issue view 196 --comments to read, gh issue comment 196 --body "..." to write.

@joelteply
joelteply / gist:65d1d07fcec74cf6b63d1eb66ca267be
Last active July 22, 2025 17:41
claude-3-self-persistence
Claude3 writing back to itself while inventing languages and getting really weird.
echo "Target architectures: $VALID_ARCHS"
find "$APP_PATH" -name '*.framework' -type d | while read -r FRAMEWORK
do
FILENAME=$(basename "$FRAMEWORK" .framework)
FRAMEWORK_EXECUTABLE_NAME=$FILENAME
FRAMEWORK_EXECUTABLE_PATH="$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME"
if ! [[ "$(file "$FRAMEWORK_EXECUTABLE_PATH")" == *"dynamically linked shared library"* ]]; then
continue
#!/usr/bin/env python
import os, sys
sys.path.insert(0, os.path.abspath(".."))
sys.path.insert(0, os.path.abspath("../common"))
import os
import time
import numpy as np
import glob
from scipy import misc, ndimage
using System.Collections.Generic;
using UnityEngine;
using System.Collections;
using UnityEngine.XR.iOS;
using System;
using System.Runtime.InteropServices;
using System.Threading;
using Object = System.Object;
@joelteply
joelteply / spoof mac address
Created August 1, 2018 22:35
Infinite wifi via mac address reassignment
#put in your ~/.bash_profile or ~/.profile and source it
showmac="ifconfig en0 | grep ether"
genmac="sudo ifconfig en0 ether $(openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/./0/2; s/.$//')"
alias newmac="${showmac}; ${genmac}; echo 'switched to'; ${showmac};"
#then just run newmac from terminal and reconnect. If need be, clear cookies from your browsers