Parse blood lab PDFs into structured JSON. You can use this as a command in Claude Code, or run the python script if Claude Code is not installed. The python script will call the Anthropic API directly.
# Install dependencies
pip install anthropic| #!/usr/bin/env python3 | |
| """ | |
| Download all images from markdown files and update references for Hugo migration. | |
| """ | |
| import os | |
| import re | |
| import sys | |
| from pathlib import Path | |
| from urllib.parse import urlparse, unquote |
| #!/usr/bin/env bash | |
| # Simple CLI for OpenAI Sora 2 video generation. | |
| # Requirements: bash, curl, jq | |
| # Usage examples at bottom. | |
| set -euo pipefail | |
| # Load environment variables from .env file if it exists | |
| if [[ -f "$(dirname "$0")/.env" ]]; then | |
| set -a |
A UserPromptSubmit hook for Claude Code that generates concise project summaries in your Obsidian vault when you type obsidian-summary.
When you type obsidian-summary during a Claude Code session, Claude will:
| FROM node:18-bullseye | |
| # Install tooling | |
| RUN apt-get update && \ | |
| DEBIAN_FRONTEND=noninteractive apt-get install -y \ | |
| git \ | |
| ca-certificates \ | |
| bash && \ | |
| rm -rf /var/lib/apt/lists/* |
A pragmatic, script-based migration tool to move personal YouTube data between two Google accounts using the official YouTube Data API v3.
This exists because Google does not provide a first-class way to migrate user-level YouTube data (subscriptions, playlists, likes) between accounts, especially when Brand Accounts are not an option.
The script is designed to be:
Great for Paperless users that have printer that scan to a network folder. Quickly scanning a document and getting the link to its PDF is now super fast and low effort!
Mount the local /scripts directory as a volume in your docker-compose.yml for the webserver container:
| #!/usr/bin/env bash | |
| # Simple CLI for OpenAI Sora 2 video generation. | |
| # Requirements: bash, curl, jq | |
| # Usage examples at bottom. | |
| set -euo pipefail | |
| API_BASE="${OPENAI_API_BASE:-https://api.openai.com}" | |
| API_KEY="YOUR_API_KEY" | |
| MODEL="${MODEL:-sora-2}" # or "sora-2-pro" |
| #!/bin/bash | |
| # Required parameters: | |
| # @raycast.schemaVersion 1 | |
| # @raycast.title Prompt my prompt | |
| # @raycast.mode silent | |
| # Optional parameters: | |
| # @raycast.icon 🤖 | |
| # @raycast.packageName Prompt Tools |