Skip to content

Instantly share code, notes, and snippets.

@chpf
chpf / icloud-album-download.sh
Created May 31, 2023 10:41 — forked from AlexanderWillner/icloud-album-download.sh
Download entire iCloud shared albums
#!/bin/bash
# Description: Downloads Web Albums shared by Apple Photos
# Requirements: jq
# Usage: ./icloud-album-download.sh <URL> [<target folder>]
# Source: https://gist.github.com/AlexanderWillner/b8124af1979e88d4046987c953b8260f
# Author: @zneak, @WildDIC, @AlexanderWillner
if [[ -z "$1" ]]; then
echo "Syntax: $0 <URL> [<target folder>]" >&2
@chpf
chpf / createRaylibCmakeProject.py
Last active May 14, 2022 13:07
Generate a raylib cmake project
#!/usr/bin/env python
from msilib.schema import Error
import subprocess
try:
subprocess.check_output(['git', '--version'], text=True)
subprocess.check_output(['cmake', '--version'], text=True)
except:
print("install git and cmake pls")