<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>danielbachhuber &#187; software</title>
	<atom:link href="http://danielbachhuber.com/tag/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://danielbachhuber.com</link>
	<description>wrangling code for Automattic&#039;s WordPress.com VIP</description>
	<lastBuildDate>Tue, 14 Feb 2012 00:05:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='danielbachhuber.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/185f1e7963728f352b72281297848b7f?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>danielbachhuber &#187; software</title>
		<link>http://danielbachhuber.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://danielbachhuber.com/osd.xml" title="danielbachhuber" />
	<atom:link rel='hub' href='http://danielbachhuber.com/?pushpress=hub'/>
		<item>
		<title>Scripting my application launch process</title>
		<link>http://danielbachhuber.com/2011/12/30/scripting-my-application-launch-process/</link>
		<comments>http://danielbachhuber.com/2011/12/30/scripting-my-application-launch-process/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 17:16:28 +0000</pubDate>
		<dc:creator>Daniel Bachhuber</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[Automattic]]></category>
		<category><![CDATA[code snippets]]></category>
		<category><![CDATA[lifehacks]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://danielbachhuber.com/?p=129580</guid>
		<description><![CDATA[Every day for work, there&#8217;s several applications I always use. The other day, I put together a quick and dirty bash script for opening all of them at once. I&#8217;m terribly inexperienced at this, so don&#8217;t poke fun, only offer &#8230; <a href="http://danielbachhuber.com/2011/12/30/scripting-my-application-launch-process/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=129580&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Every day for work, there&#8217;s several applications I always use. The other day, I put together a quick and dirty bash script for opening all of them at once.</p>
<p>I&#8217;m terribly inexperienced at this, so don&#8217;t poke fun, only offer good suggestions for improvement&#8230;</p>
<p><pre class="brush: bash;">
#!/bin/bash

# Open all of the requisite applications
echo 'Opening Chrome'
`open /Volumes/Macintosh\ HD/Applications/Google\ Chrome.app/`
echo 'Opening Skype'
`open /Volumes/Macintosh\ HD/Applications/Skype.app/`
echo 'Opening Sparrow'
`open /Volumes/Macintosh\ HD/Applications/Sparrow.app/`
echo 'Opening Linkus'
`open /Volumes/Macintosh\ HD/Applications/Linkinus.app/`
echo 'Opening Adium'
`open /Volumes/Macintosh\ HD/Applications/Adium.app/`
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielbachhuber.wordpress.com/129580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielbachhuber.wordpress.com/129580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielbachhuber.wordpress.com/129580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielbachhuber.wordpress.com/129580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielbachhuber.wordpress.com/129580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielbachhuber.wordpress.com/129580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielbachhuber.wordpress.com/129580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielbachhuber.wordpress.com/129580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielbachhuber.wordpress.com/129580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielbachhuber.wordpress.com/129580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielbachhuber.wordpress.com/129580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielbachhuber.wordpress.com/129580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielbachhuber.wordpress.com/129580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielbachhuber.wordpress.com/129580/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=129580&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielbachhuber.com/2011/12/30/scripting-my-application-launch-process/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c778bed467546a08fd2f3618a9fc9d4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">danielbachhuber</media:title>
		</media:content>
	</item>
		<item>
		<title>ForkLift 2 – The second coming of file management</title>
		<link>http://danielbachhuber.com/2011/12/01/forklift-2-the-second-coming-of-file-management/</link>
		<comments>http://danielbachhuber.com/2011/12/01/forklift-2-the-second-coming-of-file-management/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 20:49:43 +0000</pubDate>
		<dc:creator>Daniel Bachhuber</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[Cyberduck]]></category>
		<category><![CDATA[file management]]></category>
		<category><![CDATA[ForkLift]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://danielbachhuber.com/?p=129233</guid>
		<description><![CDATA[ForkLift 2 – The second coming of file management. Apparently faster than Cyberduck. Trying it out.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=129233&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.binarynights.com/">ForkLift 2 – The second coming of file management</a>. Apparently <a href="http://dentedreality.com.au/2011/12/mount-remote-filesystem-osx/#IDComment231205890">faster than Cyberduck</a>. Trying it out.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielbachhuber.wordpress.com/129233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielbachhuber.wordpress.com/129233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielbachhuber.wordpress.com/129233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielbachhuber.wordpress.com/129233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielbachhuber.wordpress.com/129233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielbachhuber.wordpress.com/129233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielbachhuber.wordpress.com/129233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielbachhuber.wordpress.com/129233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielbachhuber.wordpress.com/129233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielbachhuber.wordpress.com/129233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielbachhuber.wordpress.com/129233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielbachhuber.wordpress.com/129233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielbachhuber.wordpress.com/129233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielbachhuber.wordpress.com/129233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=129233&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielbachhuber.com/2011/12/01/forklift-2-the-second-coming-of-file-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c778bed467546a08fd2f3618a9fc9d4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">danielbachhuber</media:title>
		</media:content>
	</item>
		<item>
		<title>Switching back to Remember The Milk from The Hit List</title>
		<link>http://danielbachhuber.com/2011/11/26/switching-back-to-remember-the-milk-from-the-hit-list/</link>
		<comments>http://danielbachhuber.com/2011/11/26/switching-back-to-remember-the-milk-from-the-hit-list/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 19:07:22 +0000</pubDate>
		<dc:creator>Daniel Bachhuber</dc:creator>
				<category><![CDATA[statuses]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Remember The Milk]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[The Hit List]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">https://danielbachhuber.wordpress.com/?p=129215</guid>
		<description><![CDATA[Switching back to Remember The Milk from The Hit List. The latter just has too many bugs and interface quirks for my liking.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=129215&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Switching back to Remember The Milk from The Hit List. The latter just has too many bugs and interface quirks for my liking.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielbachhuber.wordpress.com/129215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielbachhuber.wordpress.com/129215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielbachhuber.wordpress.com/129215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielbachhuber.wordpress.com/129215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielbachhuber.wordpress.com/129215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielbachhuber.wordpress.com/129215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielbachhuber.wordpress.com/129215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielbachhuber.wordpress.com/129215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielbachhuber.wordpress.com/129215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielbachhuber.wordpress.com/129215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielbachhuber.wordpress.com/129215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielbachhuber.wordpress.com/129215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielbachhuber.wordpress.com/129215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielbachhuber.wordpress.com/129215/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=129215&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielbachhuber.com/2011/11/26/switching-back-to-remember-the-milk-from-the-hit-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c778bed467546a08fd2f3618a9fc9d4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">danielbachhuber</media:title>
		</media:content>
	</item>
		<item>
		<title>Fixing Growl notifications in v1.3</title>
		<link>http://danielbachhuber.com/2011/11/22/fixing-growl-notifications-in-v1-3/</link>
		<comments>http://danielbachhuber.com/2011/11/22/fixing-growl-notifications-in-v1-3/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 02:37:18 +0000</pubDate>
		<dc:creator>Daniel Bachhuber</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[Growl]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://danielbachhuber.com/?p=129191</guid>
		<description><![CDATA[For one reason or another, upgrading Growl to v1.3 causes all sorts of mayhem. Growl v1.3 is a new, paid application that&#8217;s different software from the previous preference pane. The only instruction I saw when I upgraded was to run &#8230; <a href="http://danielbachhuber.com/2011/11/22/fixing-growl-notifications-in-v1-3/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=129191&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For one reason or another, upgrading Growl to v1.3 causes all sorts of mayhem. <a href="http://growl.posterous.com/growl-13-a-summary-of-the-major-changes">Growl v1.3</a> is a new, paid application that&#8217;s different software from the previous preference pane. The only instruction I saw when I upgraded was to run the uninstaller for the preference pane. After a bit of trial and error, I discovered there&#8217;s a couple more steps you&#8217;ll most likely need to do to get things working properly again.</p>
<p>First, <a href="http://growl.info/downloads">download and open Growl Version Detective</a>. You&#8217;ll see something like this:</p>
<p><img style="margin-left:auto;margin-right:auto;" src="http://danielbachhuber.files.wordpress.com/2011/11/growl-version-detective.jpg?w=560&#038;h=495" title="Growl Version Detective" width="560" height="495" /></p>
<p>Select each application Growl supports and upgrade the framework version to 1.3. Notifications should start working again.</p>
<p>Second, if you use Skype, you need to tell Skype to use Growl instead of its internal notifications system:</p>
<p><img style="margin-left:auto;margin-right:auto;" src="http://danielbachhuber.files.wordpress.com/2011/11/notifications.jpg?w=600&#038;h=390" alt="Notifications" title="Notifications" width="600" height="390" /></p>
<p>The second step finally quells unstoppable notifications of contacts signing in and out of Skype.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielbachhuber.wordpress.com/129191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielbachhuber.wordpress.com/129191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielbachhuber.wordpress.com/129191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielbachhuber.wordpress.com/129191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielbachhuber.wordpress.com/129191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielbachhuber.wordpress.com/129191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielbachhuber.wordpress.com/129191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielbachhuber.wordpress.com/129191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielbachhuber.wordpress.com/129191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielbachhuber.wordpress.com/129191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielbachhuber.wordpress.com/129191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielbachhuber.wordpress.com/129191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielbachhuber.wordpress.com/129191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielbachhuber.wordpress.com/129191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=129191&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielbachhuber.com/2011/11/22/fixing-growl-notifications-in-v1-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c778bed467546a08fd2f3618a9fc9d4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">danielbachhuber</media:title>
		</media:content>

		<media:content url="http://danielbachhuber.files.wordpress.com/2011/11/growl-version-detective.jpg" medium="image">
			<media:title type="html">Growl Version Detective</media:title>
		</media:content>

		<media:content url="http://danielbachhuber.files.wordpress.com/2011/11/notifications.jpg" medium="image">
			<media:title type="html">Notifications</media:title>
		</media:content>
	</item>
		<item>
		<title>Adobe CS4 and CS3 Free Trials (incl. After Effects)</title>
		<link>http://danielbachhuber.com/2011/11/22/adobe-cs4-and-cs3-free-trials-incl-after-effects/</link>
		<comments>http://danielbachhuber.com/2011/11/22/adobe-cs4-and-cs3-free-trials-incl-after-effects/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 01:22:40 +0000</pubDate>
		<dc:creator>Daniel Bachhuber</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe Photoshop]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://danielbachhuber.com/?p=129184</guid>
		<description><![CDATA[Adobe CS4 and CS3 Free Trials (incl. After Effects). Because some of us still have the licenses we purchased years ago, and Adobe only offers CS5 (which requires Adobe AIR, ick) from their website.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=129184&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html">Adobe CS4 and CS3 Free Trials (incl. After Effects)</a>. Because some of us still have the licenses we purchased years ago, and Adobe only offers CS5 (which requires Adobe AIR, ick) from their website.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielbachhuber.wordpress.com/129184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielbachhuber.wordpress.com/129184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielbachhuber.wordpress.com/129184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielbachhuber.wordpress.com/129184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielbachhuber.wordpress.com/129184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielbachhuber.wordpress.com/129184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielbachhuber.wordpress.com/129184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielbachhuber.wordpress.com/129184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielbachhuber.wordpress.com/129184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielbachhuber.wordpress.com/129184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielbachhuber.wordpress.com/129184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielbachhuber.wordpress.com/129184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielbachhuber.wordpress.com/129184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielbachhuber.wordpress.com/129184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=129184&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielbachhuber.com/2011/11/22/adobe-cs4-and-cs3-free-trials-incl-after-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c778bed467546a08fd2f3618a9fc9d4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">danielbachhuber</media:title>
		</media:content>
	</item>
		<item>
		<title>Photo</title>
		<link>http://danielbachhuber.com/2011/09/26/photo-38/</link>
		<comments>http://danielbachhuber.com/2011/09/26/photo-38/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 21:47:35 +0000</pubDate>
		<dc:creator>Daniel Bachhuber</dc:creator>
				<category><![CDATA[photos]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://danielbachhuber.com/?p=128579</guid>
		<description><![CDATA[This is every application I&#8217;ve opened today.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=128579&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://danielbachhuber.files.wordpress.com/2011/09/itunes.jpg"><img class="alignnone size-full wp-image-128580" title="iTunes" src="http://danielbachhuber.files.wordpress.com/2011/09/itunes.jpg?w=584" alt=""   /></a></p>
<p>This is every application I&#8217;ve opened today.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielbachhuber.wordpress.com/128579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielbachhuber.wordpress.com/128579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielbachhuber.wordpress.com/128579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielbachhuber.wordpress.com/128579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielbachhuber.wordpress.com/128579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielbachhuber.wordpress.com/128579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielbachhuber.wordpress.com/128579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielbachhuber.wordpress.com/128579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielbachhuber.wordpress.com/128579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielbachhuber.wordpress.com/128579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielbachhuber.wordpress.com/128579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielbachhuber.wordpress.com/128579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielbachhuber.wordpress.com/128579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielbachhuber.wordpress.com/128579/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=128579&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielbachhuber.com/2011/09/26/photo-38/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c778bed467546a08fd2f3618a9fc9d4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">danielbachhuber</media:title>
		</media:content>

		<media:content url="http://danielbachhuber.files.wordpress.com/2011/09/itunes.jpg" medium="image">
			<media:title type="html">iTunes</media:title>
		</media:content>
	</item>
		<item>
		<title>Status</title>
		<link>http://danielbachhuber.com/2011/08/29/status-81/</link>
		<comments>http://danielbachhuber.com/2011/08/29/status-81/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 17:07:54 +0000</pubDate>
		<dc:creator>Daniel Bachhuber</dc:creator>
				<category><![CDATA[statuses]]></category>
		<category><![CDATA[Automattic]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[MacBook Air]]></category>
		<category><![CDATA[MobileMe]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[syncing]]></category>

		<guid isPermaLink="false">http://danielbachhuber.com/?p=128432</guid>
		<description><![CDATA[Dropbox + MobileMe means my new computer is up and running in under an hour.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=128432&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dropbox + MobileMe means my new computer is up and running in under an hour.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielbachhuber.wordpress.com/128432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielbachhuber.wordpress.com/128432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielbachhuber.wordpress.com/128432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielbachhuber.wordpress.com/128432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielbachhuber.wordpress.com/128432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielbachhuber.wordpress.com/128432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielbachhuber.wordpress.com/128432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielbachhuber.wordpress.com/128432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielbachhuber.wordpress.com/128432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielbachhuber.wordpress.com/128432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielbachhuber.wordpress.com/128432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielbachhuber.wordpress.com/128432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielbachhuber.wordpress.com/128432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielbachhuber.wordpress.com/128432/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=128432&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielbachhuber.com/2011/08/29/status-81/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c778bed467546a08fd2f3618a9fc9d4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">danielbachhuber</media:title>
		</media:content>
	</item>
		<item>
		<title>Status</title>
		<link>http://danielbachhuber.com/2011/08/02/status-75/</link>
		<comments>http://danielbachhuber.com/2011/08/02/status-75/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 14:32:56 +0000</pubDate>
		<dc:creator>Daniel Bachhuber</dc:creator>
				<category><![CDATA[statuses]]></category>
		<category><![CDATA[Andrew Spittle]]></category>
		<category><![CDATA[Potion Factory]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[The Hit List]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://danielbachhuber.com/?p=128386</guid>
		<description><![CDATA[An avid Remember The Milk user since 2007, I&#8217;m trying Potion Factory&#8217;s The Hit List today after seeing it in action by Andrew Spittle yesterday. It looks positively gorgeous.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=128386&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>An avid Remember The Milk user since 2007, I&#8217;m trying Potion Factory&#8217;s <a href="http://www.potionfactory.com/thehitlist/">The Hit List</a> today after seeing it in action by Andrew Spittle yesterday. It looks positively gorgeous.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielbachhuber.wordpress.com/128386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielbachhuber.wordpress.com/128386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielbachhuber.wordpress.com/128386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielbachhuber.wordpress.com/128386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielbachhuber.wordpress.com/128386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielbachhuber.wordpress.com/128386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielbachhuber.wordpress.com/128386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielbachhuber.wordpress.com/128386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielbachhuber.wordpress.com/128386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielbachhuber.wordpress.com/128386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielbachhuber.wordpress.com/128386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielbachhuber.wordpress.com/128386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielbachhuber.wordpress.com/128386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielbachhuber.wordpress.com/128386/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=128386&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielbachhuber.com/2011/08/02/status-75/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c778bed467546a08fd2f3618a9fc9d4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">danielbachhuber</media:title>
		</media:content>
	</item>
		<item>
		<title>Rdio and my changing music habits</title>
		<link>http://danielbachhuber.com/2011/06/20/rdio-and-my-changing-music-habits/</link>
		<comments>http://danielbachhuber.com/2011/06/20/rdio-and-my-changing-music-habits/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 13:19:16 +0000</pubDate>
		<dc:creator>Daniel Bachhuber</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[Andrew Spittle]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[Rdio]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://danielbachhuber.com/2011/06/20/rdio-and-my-changing-music-habits/</guid>
		<description><![CDATA[Rdio and my changing music habits. Andrew Spittle and I are starting a Rdio fan club, I swear.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=128055&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://andrewspittle.net/2011/06/19/rdio-omg/">Rdio and my changing music habits</a>. Andrew Spittle and I are starting a Rdio fan club, I swear.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielbachhuber.wordpress.com/128055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielbachhuber.wordpress.com/128055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielbachhuber.wordpress.com/128055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielbachhuber.wordpress.com/128055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielbachhuber.wordpress.com/128055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielbachhuber.wordpress.com/128055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielbachhuber.wordpress.com/128055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielbachhuber.wordpress.com/128055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielbachhuber.wordpress.com/128055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielbachhuber.wordpress.com/128055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielbachhuber.wordpress.com/128055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielbachhuber.wordpress.com/128055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielbachhuber.wordpress.com/128055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielbachhuber.wordpress.com/128055/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=128055&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielbachhuber.com/2011/06/20/rdio-and-my-changing-music-habits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>40.699215 -73.921535</georss:point>
		<geo:lat>40.699215</geo:lat>
		<geo:long>-73.921535</geo:long>
		<media:content url="http://0.gravatar.com/avatar/c778bed467546a08fd2f3618a9fc9d4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">danielbachhuber</media:title>
		</media:content>
	</item>
		<item>
		<title>BaseApp</title>
		<link>http://danielbachhuber.com/2011/05/17/baseapp/</link>
		<comments>http://danielbachhuber.com/2011/05/17/baseapp/#comments</comments>
		<pubDate>Tue, 17 May 2011 16:19:28 +0000</pubDate>
		<dc:creator>Daniel Bachhuber</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[Basecamp]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[project management]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://danielbachhuber.com/?p=127857</guid>
		<description><![CDATA[BaseApp. Basecamp notifications in your Mac OS X menubar. Wish it supported personal tasks and milestones too.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=127857&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.getbaseapp.com/">BaseApp</a>. Basecamp notifications in your Mac OS X menubar. Wish it supported personal tasks and milestones too.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielbachhuber.wordpress.com/127857/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielbachhuber.wordpress.com/127857/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielbachhuber.wordpress.com/127857/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielbachhuber.wordpress.com/127857/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielbachhuber.wordpress.com/127857/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielbachhuber.wordpress.com/127857/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielbachhuber.wordpress.com/127857/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielbachhuber.wordpress.com/127857/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielbachhuber.wordpress.com/127857/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielbachhuber.wordpress.com/127857/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielbachhuber.wordpress.com/127857/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielbachhuber.wordpress.com/127857/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielbachhuber.wordpress.com/127857/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielbachhuber.wordpress.com/127857/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielbachhuber.com&amp;blog=16096444&amp;post=127857&amp;subd=danielbachhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielbachhuber.com/2011/05/17/baseapp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c778bed467546a08fd2f3618a9fc9d4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">danielbachhuber</media:title>
		</media:content>
	</item>
	</channel>
</rss>
