Before starting, check the git history to determine if this is a follow-up review:
git log --oneline -10 | grep -i "Co-Authored-By: Claude"| #!/usr/bin/env python3 | |
| """ | |
| Human quality transcripts from audio files using | |
| AssemblyAI for transcription and Google's Gemini for enhancement. | |
| Requirements: | |
| - AssemblyAI API key (https://www.assemblyai.com/) | |
| - Google API key (https://aistudio.google.com/) | |
| - Python packages: assemblyai, google-generativeai, pydub |
| #!/bin/bash | |
| set -euo pipefail | |
| # Definition of colors for terminal output | |
| readonly RED_COLOR="\e[31m" | |
| readonly GREEN_COLOR="\e[32m" | |
| readonly YELLOW_COLOR="\e[33m" | |
| readonly BLUE_COLOR="\e[34m" | |
| readonly MAGENTA_COLOR="\e[35m" |
| #!/bin/bash | |
| readonly RED_COLOR="\e[31m" | |
| readonly GREEN_COLOR="\e[32m" | |
| readonly YELLOW_COLOR="\e[33m" | |
| readonly RESET_COLOR="\e[0m" | |
| readonly APP_DIR="$HOME/Applications" | |
| readonly ICON_DIR="$HOME/.local/share/icons" | |
| readonly ICON_URL="https://cursor.sh/brand/icon.svg" |
| #!/bin/bash | |
| #Creates an animated thumbnail of a video clip | |
| #This script uses scene cuts instead of fixed time intervals, and does not work well for videos with few/infrequent scene cuts | |
| if [ -z "$1" ];then echo "Usage: <Video Files...> [outputs to same dir as input]" &>2;exit 1;fi | |
| numOfScenes=8 #max number of scenes | |
| sceneLength=1.5 #length of each scene in seconds | |
| sceneDelay=1.7 #time (seconds) after a frame cut to start scene (to avoid transition effects) | |
| for i;do |
| # Instruction + template repo: https://github.com/FedericoPonzi/rust-ci | |
| # Search and replace <YOUR_BINARY_NAME> with your binary name. | |
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| tags: |
ℹ️ Enable iCloud end-to-end encryption:
System settings → Apple ID → iCloud → Set Advanced Data Protection to On.System settings → Apple ID → iCloud → Disable Access iCloud Data on the Web.type StringBool = "true"|"false";
interface AnyNumber { prev?: any, isZero: StringBool };
interface PositiveNumber { prev: any, isZero: "false" };
type IsZero<TNumber extends AnyNumber> = TNumber["isZero"];
type Next<TNumber extends AnyNumber> = { prev: TNumber, isZero: "false" };
type Prev<TNumber extends PositiveNumber> = TNumber["prev"];