Skip to content

Instantly share code, notes, and snippets.

View paragdangui's full-sized avatar

paragdangui paragdangui

View GitHub Profile
@paragdangui
paragdangui / gist:5ba45f2ec7fc374d891dcb2ad0924a31
Created June 27, 2026 16:54
Codex Reset Expiration info script
PYTHON_BIN=""
for candidate in /opt/homebrew/bin/python3 /usr/local/bin/python3 /usr/bin/python3 python3; do
if command -v "$candidate" >/dev/null 2>&1; then
PYTHON_BIN="$(command -v "$candidate")"
break
fi
done
if [[ -z "$PYTHON_BIN" ]]; then