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 | |
| # /// script | |
| # requires-python = "==3.12.*" | |
| # dependencies = [ | |
| # "mlx-audio>=0.3.0", | |
| # "mlx", | |
| # "misaki[en]<0.9", | |
| # "num2words", | |
| # "spacy", | |
| # "espeakng-loader", |
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 | |
| # kk — thin client for the kokorod daemon, with auto-launch. | |
| # | |
| # Sends a speak request over /tmp/kokoro.sock. If the daemon isn't | |
| # running, launches it in the background and waits for the socket to | |
| # come up before sending. | |
| # | |
| # Usage: | |
| # kk "Hello, world." | |
| # echo "text" | kk |
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 | |
| # Bonusly CLI — send/check Bonusly bonuses from the terminal. | |
| # | |
| # Usage: | |
| # bonusly balance # show giving balance | |
| # bonusly users [query] # search/list users | |
| # bonusly send <amount> <user> <message> [#tag] # send bonus (confirms) | |
| # bonusly history [limit] # recent bonuses you received | |
| # | |
| # Token: read from $BONUSLY_API_TOKEN; falls back to `fnox get BONUSLY_API_TOKEN`. |
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 | |
| # Convert WebVTT to anchored markdown with HH:MM:SS audio-fragment links. | |
| require 'optparse' | |
| VERSION = '0.1.0' | |
| options = { audio: nil, output: nil, title: nil, no_audio: false } | |
| parser = OptionParser.new do |opts| |
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 | |
| # Claude Code Memory Browser — browse, search, and view the auto-memory | |
| # markdown files stored under ~/.claude/projects/*/memory/ | |
| require 'bundler/inline' | |
| gemfile do | |
| source 'https://rubygems.org' |
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 | |
| # | |
| # gh-action-trace — Find all direct and transitive uses of GitHub Actions in an org. | |
| # | |
| # Traces the full dependency chain: repos that directly reference target actions, | |
| # repos that call shared/reusable workflows containing those actions, and external | |
| # shared workflows that wrap them. Reports pinning status (SHA/tag/branch) for each. | |
| # | |
| # Requires: gh (GitHub CLI), jq, base64 | |
| # |
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 | |
| input=$(cat) | |
| # --- Configuration --- | |
| PACE_AHEAD_THRESHOLD=10 # Show warning when this many % ahead of expected pace | |
| PACE_BEHIND_THRESHOLD=25 # Show nudge when this many % behind expected pace | |
| USAGE_ALWAYS_SHOW=90 # Always show usage when actual % >= this value | |
| # --- Parse input JSON --- | |
| current_dir=$(echo "$input" | jq -r '.workspace.current_dir') |
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: |
NewerOlder