Skip to content

Instantly share code, notes, and snippets.

@submtd
submtd / jimothy-fact-sheet.md
Created July 19, 2026 16:52
Jimothy the Raccoon: Complete Fact Sheet (July 2026) — verified facts, expert commentary, internet response, and community theories

JIMOTHY: COMPLETE FACT SHEET

Compiled July 19, 2026 — five days into the phenomenon. Sources at the end.


1. IDENTITY

@submtd
submtd / README.md
Last active July 8, 2026 17:57
Claude Code status line: dir/git + model + color-coded Context/Usage bars

Claude Code status line

A single-file status line for Claude Code showing:

myproject git:(main) ✗  Claude Opus 4.8
Context ████████░░░░░░░░░░░░  42%   Usage ██████████████████░░  91% ↻2h14m
  • Directory + git branchrobbyrussell-style: cyan directory basename, green git:(branch), red when the working tree is dirty.
@submtd
submtd / gist:d679481ff7d772a8197e87f1d5b88f09
Created January 23, 2022 16:57
0xfD79312E82Ef5D6511C2c85389C82F1DE72E53Af
0xfD79312E82Ef5D6511C2c85389C82F1DE72E53Af
@submtd
submtd / php-setup.sh
Last active April 21, 2019 23:10
php setup
#!/bin/bash
sudo apt-get update && \
sudo apt-get install -y \
mysql-client \
php7.2-bcmath \
php7.2-cli \
php7.2-common \
php7.2-curl \
php7.2-json \
@submtd
submtd / setup.sh
Last active November 1, 2021 22:07
Ubuntu 18.04 PHP Local Development
#!/bin/bash
sudo add-apt-repository -y ppa:ondrej/php
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt update
sudo apt install -y mysql-server mysql-client nginx redis-server nodejs pkg-config sqlite3 git curl postgresql-client mercurial zip bash-completion xvfb gtk2-engines-pixbuf xfonts-cyrillic xfonts-100dpi xfonts-75dpi xfonts-base xfonts-scalable imagemagick x11-apps \
sudo apt-get install -y \
@submtd
submtd / setup-ldap-client.sh
Created February 8, 2018 18:42 — forked from shichao-an/setup-ldap-client.sh
Setup OpenLDAP client server with SSH access
#!/bin/bash
# vim: softtabstop=4 shiftwidth=4 expandtab fenc=utf-8 spell spelllang=en cc=120
set -e
# Check Ubuntu release
[ "$(lsb_release -sc)" = "trusty" ] || {
echo 'This script should be run on Ubuntu 14.04.' >&2
exit 1
}