#54CDCD In case anyone ever asks.
Archives for November 2014
WordPress Rewrite API – add_rewrite_rule to trigger an action
It’s easy to create URLs with WP that find and map to content. Making URLs that trigger an action is a bit harder. The main idea here is that I want a specific action to take place when a user clicks a link to a specific URL. Let’s say unsubscribe from a mailing list. The […]
OS X Bulk Rename Files Using Regex
brew install rename rename -v -n ‘s/NewssRadios[(d).(d{2,2})]s(.*).avi/News.Radio.S0$1E$2.$3.avi/’ *.avi -v = verbose -n = dry-run