This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Address Form — Zip First</title> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"> | |
| <style> | |
| :root { | |
| --pico-font-size: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # chatgpt-history - CLI to access ChatGPT conversation history via Safari | |
| # | |
| # Requires: | |
| # - Safari open with a chatgpt.com tab (logged in) | |
| # - Safari > Develop > Allow JavaScript from Apple Events (enabled) | |
| # - jq installed | |
| # | |
| # Usage: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Script to watch CI status for the current branch | |
| # Usage: bin/watch-ci [interval_seconds] | |
| set -e | |
| # Default interval (in seconds) | |
| INTERVAL=${1:-10} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Outcome Engineering: The o16g Manifesto</title> | |
| <style> | |
| @page { | |
| margin: 0.5in; | |
| size: letter; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Converts a Claude Desktop JSX artifact into a standalone HTML file | |
| # that runs directly in the browser via CDN-loaded React + Babel. | |
| # | |
| # Usage: claude-jsx-to-html input.jsx [output.html] | |
| # If output is omitted, writes to input.html alongside the .jsx file. | |
| set -euo pipefail | |
| if [[ $# -lt 1 ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| # propresenter-status - Read-only ProPresenter status tool | |
| # | |
| # Queries the ProPresenter REST API to show current slide, playlist, and | |
| # presentation details. Includes service timing info. | |
| # | |
| # Usage: propresenter-status status | |
| # propresenter-status playlist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| # sermon-highlights - Extract ProPresenter screen items from a sermon document | |
| # | |
| # Accepts .pages or .docx files. For .pages files, Pages.app is used to | |
| # convert to .docx automatically. Parses yellow-highlighted text (scriptures, | |
| # pull quotes, graphics) intended for display on screen. Bible version tags | |
| # like (NKJV) immediately after highlighted scripture references are | |
| # automatically captured. Rich text formatting (bold, italic, underline) is |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Claude Code usage stats analyzer. | |
| Parses local Claude Code session data to show: | |
| - Average interactions per day | |
| - Average input/output tokens per interaction | |
| - Average tool call chain depth | |
| - Token breakdown by category (base, cache write, cache read) | |
| - Estimated API costs by model |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Scrape Claude Code /usage output via tmux. | |
| # Spawns an interactive Claude session, runs /usage, captures output, exits. | |
| # | |
| # Usage: | |
| # bin/claude-usage # Human-readable output | |
| # bin/claude-usage --json # JSON output for programmatic use | |
| # | |
| # Requires: tmux, claude CLI | |
| set -euo pipefail |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Scrape Claude Code /context output via tmux. | |
| # Resumes an existing session, runs /context, captures output, exits. | |
| # | |
| # Usage: | |
| # bin/claude-context <session-id> # Human-readable output | |
| # bin/claude-context <session-id> --json # JSON output for programmatic use | |
| # | |
| # Requires: tmux, claude CLI | |
| set -euo pipefail |
NewerOlder