<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>cdevroe.com &#187; automation</title>
	<atom:link href="http://cdevroe.com/tag/automation/feed/" rel="self" type="application/rss+xml" />
	<link>http://cdevroe.com</link>
	<description>by Colin Devroe</description>
	<lastBuildDate>Thu, 09 Feb 2012 13:49:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>	<atom:link rel='hub' href='http://cdevroe.com/?pushpress=hub'/>
<cloud domain='cdevroe.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>An even better Spotify Alfred extension</title>
		<link>http://cdevroe.com/links/johns-alfred-spotify/</link>
		<comments>http://cdevroe.com/links/johns-alfred-spotify/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 14:23:15 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[alfred]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[jeff johns]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[spotify]]></category>

		<guid isPermaLink="false">http://cdevroe.com/?p=5505</guid>
		<description><![CDATA[Jeff Johns has released an update to his Spotify Alfred extension. The man&#8217;s an addict. He has Alfred extensions for Skype, Bluetooth, Caffeine, and Screen Sharing.]]></description>
			<content:encoded><![CDATA[<p>Jeff Johns has <a href="https://github.com/phpfunk/alfred-spotify-controls">released an update to his Spotify Alfred extension</a>. The man&#8217;s an addict. He has <a href="http://phpfunk.me/#alfred">Alfred extensions for Skype, Bluetooth, Caffeine, and Screen Sharing</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/links/johns-alfred-spotify/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open a file from Terminal with Coda</title>
		<link>http://cdevroe.com/links/terminal-coda/</link>
		<comments>http://cdevroe.com/links/terminal-coda/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 16:45:53 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[coda]]></category>
		<category><![CDATA[gregory tomlinson]]></category>
		<category><![CDATA[mac-os-x]]></category>
		<category><![CDATA[macintosh]]></category>
		<category><![CDATA[panic]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://cdevroe.com/?p=3303</guid>
		<description><![CDATA[If you&#8217;re like me, you love Coda. Well, you may find the need to open a file, or set of files, from Terminal in Coda. Gregory Tomlinson has created a bash script to let you do just that. Update May 20, 2011: It turns out that Tomlinson&#8217;s website is down. So, here is a brief [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, you love <a href="http://panic.com/coda/">Coda</a>. Well, you may find the need to open a file, or set of files, from Terminal in Coda. <a href="http://gregorytomlinson.com/">Gregory Tomlinson</a> has <strike><a href="http://gregorytomlinson.com/encoded/2008/08/30/open-or-create-a-file-in-terminal-to-coda/">created a bash script to let you do just that</a></strike>.</p>
<p>Update May 20, 2011: It turns out that Tomlinson&#8217;s website is down. So, here is a brief synopsis of what you can do to add this functionality to your Mac.</p>
<ul>
<li>Open Terminal</li>
<li>In terminal, enter: open .profile</li>
<li>Add the following lines of code<br />
<code># TextMate<br />
# set path and simple shell function<br />
export TEXTMATE_PATH=/Applications/TextMate.app/Contents/Resources/mate<br />
mate () {<br />
    $TEXTMATE_PATH $1 $2 $3 $4 $5 $6<br />
}<br />
# svn for TextMate (default editor, end-of-line types)<br />
export EDITOR="$TEXTMATE_PATH -w"<br />
export LC_CTYPE=en_US.UTF-8</p>
<p># Coda<br />
# set path<br />
export CODA_PATH=/Applications/Coda.app<br />
# function roughly like 'mate .' by expanding '.' to '*.htm*'<br />
coda () {<br />
if [[ "." == $1 ]]<br />
then<br />
    open -a $CODA_PATH *.htm*<br />
else<br />
    open -a $CODA_PATH $1 $2 $3<br />
fi<br />
}</code></li>
<li>Save .profile</li>
<li>Quit Terminal</li>
<li>Restart Terminal</li>
</ul>
<p>There is also a slightly more <a href="http://www.wefoundland.com/project/command-line_coda">robust script written for Coda by Aditya Bhargava</a> that handles a few more tidbits and it is <a href="https://github.com/egonSchiele/Command-Line-Coda">available on GitHub</a>.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/links/terminal-coda/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Baker Tweet</title>
		<link>http://cdevroe.com/links/baker-tweet/</link>
		<comments>http://cdevroe.com/links/baker-tweet/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 14:00:20 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[baker tweet]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://cdevroe.com/?p=2824</guid>
		<description><![CDATA[Own a bakery? Want to notify your customers when fresh baked goodies are ready via Twitter? Look no further than Baker Tweet. A simple device that sends canned Twitter updates with the push of a button. Love it. This has me wanting to work on my own device that will update Twitter for no other [...]]]></description>
			<content:encoded><![CDATA[<p>Own a bakery? Want to notify your customers when fresh baked goodies are ready via Twitter? Look no further than <a href="http://bakertweet.com/">Baker Tweet</a>. A simple device that sends canned Twitter updates with the push of a button. Love it.</p>
<p>This has me wanting to work on my own device that will update Twitter for no other reason than to do it.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/links/baker-tweet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clean up your data with Magic/Replace</title>
		<link>http://cdevroe.com/links/magicreplace/</link>
		<comments>http://cdevroe.com/links/magicreplace/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 17:00:17 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[clean]]></category>
		<category><![CDATA[dabble db]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[magic-replace]]></category>

		<guid isPermaLink="false">http://cdevroe.com/?p=1421</guid>
		<description><![CDATA[A new tool from Dabble DB that makes it dead simple to clean up large amounts of data.]]></description>
			<content:encoded><![CDATA[<p>Although I do not do a lot of this sort of thing much any more, I remember spending many an hour in Excel fighting with various bits of data that I exported to make subtle edits to thousands of rows.Â After a little bit of experience I began to build Visual Basic scripts, or Macros, that would allow me to do these tasks in an automated fashion.</p>
<p>Boy do I with I had <a href="http://dabbledb.com/">Dabble DB</a>&#8216;s <a href="http://cleanupdata.com/">Magic/Replace</a> tool back then.</p>
<p>Magic/Replace allows you to paste a huge block of data, make as many changes as you&#8217;d like to a single or set of rows, and it will &#8220;remember&#8221; the changes you make to the data and apply those changes to the entire set of data. I know that doesn&#8217;t sound interesting but it is quite awesome.</p>
<p>Having &#8220;Magic&#8221; in the name of a product is rarely warranted. But I believe in this case it is. Â Be sure to check out the video demonstration to get the full effect of how good Magic/Replace really is.</p>
<p>Source: <a href="http://cleanupdata.com/">Magic/Replace</a>.<br />
Via: <a href="http://simonwillison.net/2008/Dec/1/magicreplace/">Simon Willison</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/links/magicreplace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poll: Should my site send Twitter notifications?</title>
		<link>http://cdevroe.com/notes/poll-publish-twitter/</link>
		<comments>http://cdevroe.com/notes/poll-publish-twitter/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 03:33:38 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[cdevroe.com]]></category>
		<category><![CDATA[justin-blanton]]></category>
		<category><![CDATA[notifications]]></category>
		<category><![CDATA[poll]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://cdevroe.com/notes/poll-publish-twitter/</guid>
		<description><![CDATA[I need your help to figure out whether or not I should update Twitter, automatically, when I update my site.]]></description>
			<content:encoded><![CDATA[<p><i>Ironically you may be reading this note because you clicked on a link from <a href="http://twitter.com/cdevroe/">my Twitter account</a>.</i></p>
<p><span class="firstletter">M</span>y site is setup to post links to Twitter, every 15 minutes, if there was a new post here on my site.  I try to add a little context by adding the category before the Twitter status (e.g. &#8220;Link:&#8221;) and I also include the title of the note so that people can choose whether or not to click the link from Twitter back to my site.</p>
<p>But I could see this getting pretty annoying for some.</p>
<p>Someone whose opinion I value, <a href="http://justinblanton.com/">Justin Blanton</a>, had said in October 2007, <a href="http://twitter.com/jblanton/statuses/330061092">on Twitter no less</a>, that he didn&#8217;t like the whole &#8220;use Twitter to link to your blog&#8221; method of letting people know when you update your site.  In some ways I agree with him but in others I find it fairly useful when I am not near Twitter to automate the process.  I&#8217;m torn.</p>
<p>This process all started when I started to post mobile photos with my iPhone.  At first they were going to Flickr and so I once Flickr updated the RSS feed for my photos, I had a script that would notify Twitter of the new photo.  Once I began to post my mobile photos here on my site, I figured I would do the same thing.</p>
<p>This slowly expanded into, what is now, a script that will post to Twitter every single time I publish something to my site.</p>
<p>So, I ask &#8211; should I continue this?  Is it annoying?  It is useful?  Should I only do it for mobile photos and nothing else?  Please let me know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/notes/poll-publish-twitter/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Mobile photos now here, more to come later</title>
		<link>http://cdevroe.com/notes/mobile-photos-here/</link>
		<comments>http://cdevroe.com/notes/mobile-photos-here/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 19:23:09 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[moblog]]></category>
		<category><![CDATA[owen-winkler]]></category>
		<category><![CDATA[pownce]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress-plugins]]></category>

		<guid isPermaLink="false">http://cdevroe.com/notes/mobile-photos-here/</guid>
		<description><![CDATA[One more step in bringing it all together is now all mobile photos that I post will be on my site exclusively, rather than on Flickr, here is how I did it and what I'll be doing later.]]></description>
			<content:encoded><![CDATA[<p><span class="firstletter">W</span>hen <a href="http://cdevroe.com/notes/photos-section/">I launched the photos section</a> last September, I knew I&#8217;d be making incremental updates to how the site handled, displayed, and aggregated them compared to normal posts.  I&#8217;ll be doing the same thing with mobile photos.</p>
<p>Starting today, mobile photos that used to show up on <a href="http://flickr.com/photos/cdevroe/">my Flickr account</a>, will now be on my site.  You can see the first one which is <a href="http://cdevroe.com/mobile/photos/viddlerhq-news/">a photo of the TVs in the lobby at ViddlerHQ</a>.  I plan on adding a new section, to the main navigation, to handle mobile photos and notes that I post while on the go &#8211; but I&#8217;ll worry about that later.  I am going to wait until I get a few mobile notes and photos up before worrying about how the site handles them.</p>
<p>Thanks to <a href="http://asymptomatic.net/" rel="friend met">Owen Winkler</a>, <a  href="http://twitter.com/ringmaster/statuses/773970528">via Twitter</a>, for hooking me up with <a href="http://www.economysizegeek.com/wp-mail/">this plugin that enhances WordPress&#8217; built-in email-to-post functionality</a>.  Now, from my iPhone, all I need to do is select a photo and email it to a special email account I&#8217;ve created, and it will be posted here on my site within 5 minutes of me emailing it.  Works like a charm.</p>
<p>As with the Photo section, all will be available through the feed &#8211; so there is no need to change subscriptions up at all.</p>
<p>I&#8217;ve also modified the way that my automated processes for notifying <a href="http://twitter.com/">Twitter</a> and <a href="http://pownce.com/">Pownce</a> of new mobile photos works. Now, both of these processes are pointed at this sites feed, rather than at Flickr.  So all links will be pointing back to here instead of there, and will be for <em>any new post</em> not just mobile photos.</p>
<p>Another big step forward in <a href="http://cdevroe.com/notes/bringing-it-together/">bringing it all together</a>.  For those taken notes, I&#8217;ll be digesting the entire strategy to bringing all of my content onto my site sometime in the future when I&#8217;m nearly done.  For now, <a href="http://cdevroe.com/feed/">subscribe to my feed</a>, if you&#8217;d like the play-by-play of how I&#8217;m experimenting with this.</p>
<p>Next up?  Links. (But probably not for a few days.)</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/notes/mobile-photos-here/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Powncing your Flickr photos automagically</title>
		<link>http://cdevroe.com/notes/pownce-flickr/</link>
		<comments>http://cdevroe.com/notes/pownce-flickr/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 04:00:59 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[pownce]]></category>

		<guid isPermaLink="false">http://cdevroe.com/notes/pownce-flickr/</guid>
		<description><![CDATA[Introducing a free PHP script that will automatically post your Flickr photos to Pownce.  I'm calling this little baby Powncer.]]></description>
			<content:encoded><![CDATA[<p><span class="firstletter">T</span>he moment I saw how <a href="http://pownce.com/">Pownce</a> handled links to <a href="http://flickr.com/">Flickr</a> photos (here is <a href="http://pownce.com/cdevroe/notes/1434015/">my first Flickr photo that I Pownced</a>) I knew I had to modify <a href="http://blog.mozmonkey.com/2008/flickr-twitter-mashup-twickr/">a script that I found</a> and had modified for <a href="http://twitter.com/">Twitter</a>. The script would automatically &#8220;tweet&#8221; when I posted a photo to Flickr <a href="http://cdevroe.com/notes/mobile-photos/">using my iPhone</a>.</p>
<p>The script isn&#8217;t anything special mind you, all it does it &#8220;watch&#8221; any Flickr feed for new entries.  To be more precise, my server runs this script every 15 minutes and checks for new photos, when there is one, it creates a <a href="http://tinyurl.com/">TinyURL</a> and posts it to Twitter (<a href="http://twitter.com/cdevroe/statuses/767301066">like this</a>).</p>
<p>But I wanted this to work for Pownce.</p>
<p>I immediately dove head first into <a href="http://pownce.com/api/">Pownce&#8217;s API</a> only to find out that the API didn&#8217;t allow posting anything.  I thought my Powncing days were over until, out of some crazy stroke of coincidence, I read an article on <a href="http://techcrunch.com/">TechCrunch</a> that said <a href="http://www.techcrunch.com/2008/02/27/pownce-to-release-more-complete-api-this-friday/">Pownce was due to release a new version of their API</a> <em>the very next day</em>.  Turns out, I didn&#8217;t even have to wait that long and the Pownce wiki was updated to include <a href="http://pownce.pbwiki.com/API%20Documentation2-0">documentation for version 2 of their API</a>.</p>
<p>Without blinking an eye I finished my script, grabbed myself an app_key, and <a href="http://pownce.com/cdevroe/notes/1436699/">Pownced the script</a> (you&#8217;ll need to be logged in, and <a href="http://pownce.com/cdevroe/">be my Pownce friend</a> to see this Pownce message).  Once I figured out that I couldn&#8217;t Pownce a file to the general public, I knew I had to find some time to write this post.</p>
<p>Since then I read that <a href="http://scripting.com/">Dave Winer</a> also enjoys the way <a href="http://www.scripting.com/stories/2008/03/01/theVerdictIsInThePownceApi.html">Pownce shows links to Flickr photos</a> and that he is running a similar script.  So I thought I&#8217;d put this out for everyone to use.</p>
<h3>Powncer!</h3>
<p>Enough beating around the bush, you can <a href="http://chancecube.com/files/powncer.zip">download the script here</a> which includes an XML parser for ripping through Flickr&#8217;s RSS feed.  You&#8217;ll need to edit the first few lines of powncer.php for it to work, so this isn&#8217;t your run-of-the-mill plug-and-play type script, unfortunately, but for the PHP savvy of you, you should be able to get it up and running pretty easily.  If you need help getting it setup, just ask in the comments.</p>
<p>I run this script here on cdevroe.com every 15 minutes using cron.  You may run it however you&#8217;d like.</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/notes/pownce-flickr/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

