Skip to content

Instantly share code, notes, and snippets.

View Maddimax's full-sized avatar

Marcus Tillmanns Maddimax

View GitHub Profile
@Maddimax
Maddimax / buildtst.sh
Created September 23, 2024 07:10
Ninja: Build all targets starting with tst_
ninja -t targets all | grep "^tst_" | cut -d ':' -f1 | xargs ninja
@Maddimax
Maddimax / timelaps.sh
Created September 1, 2024 09:50
Mount an smb folder and combine all files inside into a timelaps movie
#!/bin/sh
MOUNTDIR=$(mktemp -d)
WORKDIR=$(mktemp -d)
mkdir -p $MOUNTDIR
# Mount the folder that contains your jpegs. Example: server-name/mount-name/some/folder/inside
mount_smbfs //Guest:@$1 $MOUNTDIR