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
| {"schemaVersion": 1, "label": "Clones", "message": "811", "color": "blue", "namedLogo": "github", "logoColor": "white"} |
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 | |
| # Pure Bash implementation of envsubst. | |
| # Usage: ./envsubst.sh [SHELL-FORMAT] | |
| # self-ref | |
| # https://gist.githubusercontent.com/vroomfondel/7ef185d8d6d726fdf720ad0f4ef23619/raw/envsubst.sh | |
| # per curl with cache-busting query-arg | |
| # curl -L https://gist.githubusercontent.com/vroomfondel/7ef185d8d6d726fdf720ad0f4ef23619/raw/envsubst.sh?cache_bust=$(date +%s) |
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 to compare K3s kubeconfig from remote server with local ~/.kube/config | |
| and optionally update local credentials for a specific context. | |
| """ | |
| import argparse | |
| import subprocess | |
| import sys | |
| from pathlib import Path |
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
| { | |
| "2026-01-19 00:00:00+00:00": { | |
| "count": 0, | |
| "uniques": 0 | |
| }, | |
| "2026-01-20 00:00:00+00:00": { | |
| "count": 0, | |
| "uniques": 0 | |
| }, | |
| "2026-01-21 00:00:00+00:00": { |
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
| {"schemaVersion": 1, "label": "Clones", "message": "779", "color": "blue", "namedLogo": "github", "logoColor": "white"} |
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
| {"schemaVersion": 1, "label": "Clones", "message": "513", "color": "blue", "namedLogo": "github", "logoColor": "white"} |
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
| {"schemaVersion": 1, "label": "Clones", "message": "691", "color": "blue", "namedLogo": "github", "logoColor": "white"} |
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
| {"schemaVersion": 1, "label": "Clones", "message": "444", "color": "blue", "namedLogo": "github", "logoColor": "white"} |
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 PreToolUse hook for permission decisions. | |
| Registered in ~/.claude/settings.json as a PreToolUse hook. Claude Code calls | |
| this script via stdin (JSON) before every tool invocation. The script decides | |
| whether to auto-allow, block, or defer to the normal permission prompt. | |
| == Decision priority == | |
| 1. Read-only tools (Read, Glob, Grep, WebSearch, WebFetch) → always allowed |
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
| {"schemaVersion": 1, "label": "Clones", "message": "445", "color": "blue", "namedLogo": "github", "logoColor": "white"} |