Skip to content

Instantly share code, notes, and snippets.

@codecreate-dev
codecreate-dev / mount-music-partition.txt
Created June 23, 2020 19:05
mount bind partition to home user Music
sudo mount --bind /media/peter/Music /home/peter/Music
@codecreate-dev
codecreate-dev / .htaccess
Created June 10, 2020 17:31
Force download of files - media
<FilesMatch "\.(mov|mp3|pdf|mp4|avi|wmv)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
# fails on iPhone but not iPad - any ideas for iPhones?
@codecreate-dev
codecreate-dev / mp4-cover-image-create.sh
Created June 9, 2020 23:10
Create image covers from mp4 vids in a for loop
for vid in *.mp4; do ffmpeg -i $vid -codec mjpeg -ss 4 -vframes 1 -q:v 1 ./covers/$vid.jpg; done
@codecreate-dev
codecreate-dev / php-apache-restart.sh
Created June 8, 2020 15:36
Restart PHP FPM and Apache
sudo service php7.4-fpm restart && sudo systemctl restart apache2