Sunday, May 1, 2016

Add YouTube Channel to Your Podcast Software

Go to http://podsync.net/ and past the channel URL.

If you're not sure of the channel URL perform the following:

1) Subscribe to the channel
2) Go to your channel listing in youtube.
3) Right click and select Copy link address
4) Paste into box on podsync.net and copy the link they provider to your podcast software, I use pocketcasts.com.

Thursday, February 11, 2016

Recursive Replace Text in Files

If you ever have a need to replace text in files (including subfolders) execute the following linux command.

In the below example we wanted to replace a copyright on a group of html and php pages.
2010 - 2015 became 2010 - 2016


user@machine> find . -type f -name "*" -exec sed -i'' -e 's/2010 - 2015/2010 - 2016/g' {} +