This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -i input.mov -filter_complex "fps=5,scale=300:-1:flags=lanczos,split[s0][s1];[s0]palettegen=max_colors=64[p];[s1][p]paletteuse=dither=bayer" -loop 1 output.gif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# locally | |
eploy_to=~/html/3 | |
# remove all Thumbs.db (if browsed with a Windows Explorer over sftp) | |
./no-thumbsdb | |
# SCSS changed? | |
# Building an extended Hugo can be a pain on some systems... | |
echo SCSS... | |
source_css_dir=themes/forty/assets/sass |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
if [ `whoami` != "postgres" ]; then | |
echo You are not postgres! | |
exit | |
fi | |
if [ "$1" = "" ]; then | |
echo "Usage:" | |
echo "$0 [server|client] [cn]" |