Skip to content

Instantly share code, notes, and snippets.

View shchuko's full-sized avatar
🇦🇲

Vladislav Yaroshchuk shchuko

🇦🇲
View GitHub Profile
@shchuko
shchuko / apple-quick-time-mov-to-mp4.sh
Last active May 11, 2025 16:05
Group album photos processing
#!/bin/bash
set -e
mkdir -p out-mov-1
for file in *.MOV; do
if [[ -f "$file" ]]; then
outfile="out-mov-1/${file%.*}.mp4"
echo "Converting $file -> $outfile"

demo-service-181-git

Общая инфа

Не забываем установить параметры гита, чтобы гитхаб вас детектил:

git config --global user.name "Petya Petya"
git config --global user.email "petya@petya.pt"