Skip to content

Instantly share code, notes, and snippets.

View david-kerins's full-sized avatar

David Kerins david-kerins

View GitHub Profile
@cvarjao
cvarjao / .gitignore
Last active February 27, 2024 05:29
OpenShift oc command line cheatsheet
images/
layers/
node_modules/
.cache/
manifests/
@kerma
kerma / convert_flac_to_aac.sh
Last active April 20, 2024 07:00
Convert all flac files in folder to m4a using ffmpeg and libfdk_aac
# on os x use brew to get ffmpeg with libfdk_aac
brew install ffmpeg --with-fdk-aac
# convert and use m4a as file extension
find . -name '*.flac' -exec sh -c 'ffmpeg -i "$1" -c:a libfdk_aac -b:a 320k "${1%.flac}.m4a"' _ {} \;
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active July 3, 2024 12:57
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname