Skip to content

Instantly share code, notes, and snippets.

View prateekmedia's full-sized avatar

Prateek SU prateekmedia

View GitHub Profile
@prateekmedia
prateekmedia / ios_screenshot.sh
Last active September 16, 2025 11:37
Screenshots utility
#!/bin/bash
# Final iPhone Screenshot Script
# Usage: ./iphone_screenshot.sh [output_path]
OUTPUT_PATH="${1:-screenshot.png}"
echo "📱 Taking iPhone screenshot..."
# Record timestamp before taking screenshot
@prateekmedia
prateekmedia / clean-git-worktrees.sh
Last active March 22, 2026 11:51
Cleanup build artifacts across worktrees
#!/usr/bin/env bash
set -euo pipefail
scan_dirs=(target build node_modules .dart_tool)
usage() {
local scan_dir
cat <<'EOF'