paulgorman.org

< ^ txt

Wed Oct 14 07:46:26 EDT 2015 Went to bed a few minutes after ten, and woke up a few minutes after seven. Slept well. High of fifty-eight today. Drizzle before eleven o'clock, then partly sunny. Goals: Work: - Wifi at Tyner home Done. They're blanketed in wifi. Also answered questions about phones and security system. - Talk to Gary about cameras and security systems. Vendors? Training Central staff? Done. The sites will pool their own talent to get it done, and IT will advise and possibly procure. Home: - Read more K&R Not much. - Learn about git rebase - At some point we need to integrate changes from one branch into another (e.g. from our working/feature branch into the main or development branch). - We can do that either with `git merge` or `git rebase`. - With the rebase command, you can take all the changes that were committed on one branch and replay them on another one. $ git checkout experiment $ git rebase master First, rewinding head to replay your work on top of it... Applying: added staged command http://git-scm.com/book/ch3-6.html http://infinitemonkeys.influitive.com/a-simple-explanation-for-git-rebase/ https://utcc.utoronto.ca/~cks/space/blog/programming/WhyILikeGit *** I should probably clean up and revise my git notes. *** - Put some mp3's on a thumb drive (ogg's seemed to crash the infotainment system several times, although it might be the crappy usb stick I was using....) Done. I really need to spend some time reorganizing and renaming my music. Yes... no problems playing mp3's from a different thumb drive. - Look at putting together an encounter builder for 5e Nope. - Read more Gilgamesh I took a walk after I got home. Nice day, but a little too cool to go without a jacket. Still loving my car. Threw it in sports mode on the way home. Fun. Maybe I'm more of a car guy than I though? Transcode all flac's in a folder to mp3? #!/bin/bash for f in *.flac; do ffmpeg -n -i "$f" -codec:a libmp3lame -q:a 4 "${f[@]/%flac/mp3}" done for f in *.flac; do ffmpeg -n -i "$f" -codec:a libmp3lame -q:a 4 "${f[@]/%flac/mp3}"; done

< ^ txt