Posts

Showing posts with the label notes

Notes to myself.

Using a blog to keep miscellaneous notes is a wonderful idea.  They should be always there. #---------------------------- # original install ls -l /var/log/installer #----------------------------- # uptime uptime #----------------------------- # Quicknote (goes into .bash_history) cat > filename <<EOF #--------------------------------- # Quick append (goes into .bash_history) cat >> filename <<EOF #-------------------------------- #Gif to avi convert test.gif old%02d.jpg ffmpeg -r 25 -i old%02d.jpg -y -an new.avi #--------------------------------- # Strip music mplayer -ao pcm:fast:file=batmanpiano.mp3 -vo null -vc null Batmanpiano.flv #---------------------------------- # get screen size $ fullscreen=$(xwininfo -root | grep 'geometry' | awk '{print $2;}') $ echo $fullscreen 1280x768+0+0 #---------------------------------- # put picures in frame montage Inputfiles outputfile #---------------------------------- ...