<?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>decompiled &#187; Software</title>
	<atom:link href="http://www.jonathankern.com/blog/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jonathankern.com</link>
	<description>The life and times of Jonathan Kern</description>
	<lastBuildDate>Mon, 02 Nov 2009 17:32:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Publicity</title>
		<link>http://www.jonathankern.com/blog/2008/11/02/publicity-2/</link>
		<comments>http://www.jonathankern.com/blog/2008/11/02/publicity-2/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 01:23:58 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.jonathankern.com/?p=530</guid>
		<description><![CDATA[Last week, Microsoft showed off a bunch of stuff we&#8217;re working on at the Professional Developers Conference. Of course the first glimpse at Windows 7 was pretty awesome, but the thing that got me the most excited was the new Office web applications. Why? Because one of my features is in them!  I&#8217;m one of [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, Microsoft showed off a bunch of stuff we&#8217;re working on at the Professional Developers Conference. Of course the first glimpse at Windows 7 was pretty awesome, but the thing that got me the most excited was the new Office web applications. Why? Because one of my features is in them!  I&#8217;m one of 2 developers on the ribbon platform that they&#8217;re using.</p>
<p style="text-align: center;"><img class="size-full wp-image-531 aligncenter" title="Office Word Web" src="http://www.jonathankern.com/wp-content/uploads/2008/11/10-28editingword_lg.jpg" alt="The Office Word Web Application" width="500" height="400" /></p>
<p>Pretty cool eh?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathankern.com/blog/2008/11/02/publicity-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote iTunes Streaming</title>
		<link>http://www.jonathankern.com/blog/2008/07/28/remote-itunes-streaming/</link>
		<comments>http://www.jonathankern.com/blog/2008/07/28/remote-itunes-streaming/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 22:25:38 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.jonathankern.com/?p=509</guid>
		<description><![CDATA[Are you ever away from home and wish you had your music library available?  I certainly do, so I&#8217;ve done something about it.
First, a bit about my environment:

Server:

Windows Home Server
Debian &#8220;Lenny&#8221; running in a VM
Behind a Linksys WRT54G running Tomato
SSH forwarded into the linux VM


Client

Windows Vista Enterprise
Behind an ISA firewall



To accomplish this task, I used [...]]]></description>
			<content:encoded><![CDATA[<p>Are you ever away from home and wish you had your music library available?  I certainly do, so I&#8217;ve done something about it.</p>
<p>First, a bit about my environment:</p>
<ul>
<li>Server:
<ul>
<li>Windows Home Server</li>
<li>Debian &#8220;Lenny&#8221; running in a VM</li>
<li>Behind a Linksys WRT54G running <a href="http://www.polarcloud.com/tomato" target="_blank">Tomato</a></li>
<li>SSH forwarded into the linux VM</li>
</ul>
</li>
<li>Client
<ul>
<li>Windows Vista Enterprise</li>
<li>Behind an ISA firewall</li>
</ul>
</li>
</ul>
<p>To accomplish this task, I used the following tools:</p>
<ul>
<li>smbfs &#8211; Samba filesystem kernel module</li>
<li><a href="http://fireflymediaserver.org/" target="_blank">mt-daapd</a> &#8211; Firefly media server</li>
<li><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">Putty </a>- Windows SSH client</li>
<li><a href="http://ileech.sf.net/RendezvousProxy/" target="_blank">Rendezvous Proxy</a> &#8211; Windows utility that proxies the Apple Rendezvous protocol from an arbitrary network address</li>
</ul>
<p>Here is what I did, step by step:</p>
<p>1) Setup Debian to automatically mount my Home Server&#8217;s music share on boot:</p>
<pre>$ sudo mkdir /mnt/mp3
$ sudo vim /etc/fstab</pre>
<p>Add a line to the end of the file like this:</p>
<pre>//&lt;ipaddress&gt;/Music  /mnt/mp3  smbfs username=&lt;username&gt;,password=&lt;password&gt;  0  0</pre>
<p>Where &lt;ipaddress&gt; is the IP of your media server, and &lt;username&gt; and &lt;password&gt; are a login that has access to the file share</p>
<p>Then, I mounted the share manually to avoid having to restart:</p>
<pre>$ sudo mount /mnt/mp3</pre>
<p>2) Setup mt-daapd (you can grab this from sourceforge at <a href="http://tinyurl.com/mt-daapd" target="_blank">http://tinyurl.com/mt-daapd</a>):</p>
<pre>$ wget &lt;url path to mt-daapd tarball&gt;<a href="http://sourceforge.net/project/showfiles.php?group_id=98211&amp;package_id=105189" target="_blank">
</a>$ tar -zxvf &lt;path to tarball&gt;
$ cd mt-daapd-x.x.x.x  # x's are in place of the version number
$ ./configure
$ make
$ sudo make install</pre>
<p>Now you need to configure mt-daapd:</p>
<pre>$ sudo cp contrib/mt-daapd.conf /etc
$ sudo cp contrib/mt-daapd.playlist /etc
$ sudo vim /etc/mt-daapd.conf</pre>
<p>Most of the defaults should be fine, but you&#8217;ll need to change web_root from /usr/share/&#8230; to /usr/local/share/&#8230;  You&#8217;ll also want to change the admin_pw to a more secure password.</p>
<p>Next, we&#8217;ll make mt-daapd load on boot automatically:</p>
<pre>$ cd /etc/init.d
$ sudo ln -s /usr/local/sbin/mt-daapd mt-daapd
$ sudo update-rc.d mt-daapd defaults</pre>
<p>We&#8217;re now ready to launch mt-daapd:</p>
<pre>$ sudo /etc/init.d/mt-daapd start</pre>
<p>Ok, barring any errors, you&#8217;ve now got sharing working locally.  The next step is to get to that share remotely.</p>
<p>3) Setup an SSH tunnel to your media server.</p>
<p>On your client machine, launch Putty and input the following settings:</p>
<ul>
<li>Session
<ul>
<li>Host Name (or IP address): the hostname or IP of your router.  In my case, I have a dynamic IP, so I use <a href="http://www.dyndns.org" target="_blank">dyndns.org</a> along with the appropriate settings in my router&#8217;s firmware.</li>
<li>Connection type: SSH</li>
</ul>
</li>
<li>SSH
<ul>
<li>Check &#8220;Don&#8217;t start a shell or command at all&#8221;</li>
<li>Check &#8220;Enable compression&#8221;</li>
</ul>
</li>
<li>SSH -&gt; Tunnels
<ul>
<li>Source port: 3689</li>
<li>Destination: your linux box&#8217;s local IP plus port 3689 (ex. 192.168.1.100:3689)</li>
<li>Click Add</li>
</ul>
</li>
</ul>
<p>You&#8217;ll probably also want to save this configuration in the Session tab.  Optionally, you can <a href="http://the.earth.li/~sgtatham/putty/0.53b/htmldoc/Chapter8.html" target="_blank">setup SSH Key authentication</a> so you don&#8217;t have to type your password every time you connect.</p>
<p>4) Setup Rendezvous Proxy:</p>
<p>Install Rendezvous proxy (download link above) and run the application</p>
<p>Click Add Host and input the following settings:</p>
<ul>
<li>IP Address: localhost (we direct the traffic to our SSH tunnel this way)</li>
<li>Port: 3689</li>
<li>Host Label: what shows up in iTunes</li>
<li>Service Type: _daap._tcp. (iTunes Host)</li>
</ul>
<p>Click Add and then launch iTunes.  You should now see your home media server in the left column.  Have fun!</p>
<p>(Thanks to <a href="http://www.jroller.com/ldewavrin/date/20041029" target="_blank">Luc Dewavrin</a> for his tutorial on setting this up.  It took some extra steps, but his documentation was priceless)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathankern.com/blog/2008/07/28/remote-itunes-streaming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>fakeRAID</title>
		<link>http://www.jonathankern.com/blog/2008/06/26/fakeraid/</link>
		<comments>http://www.jonathankern.com/blog/2008/06/26/fakeraid/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 20:56:18 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[RAID]]></category>

		<guid isPermaLink="false">http://www.jonathankern.com/?p=504</guid>
		<description><![CDATA[I just setup a new linux server box for random development and the like last night. I got some kickass components and build the server from scratch. The details are for another post, because now, I want to bitch and moan about the next stupid idea in cheap hardware: fake RAID.
It goes like this: When [...]]]></description>
			<content:encoded><![CDATA[<p>I just setup a new linux server box for random development and the like last night. I got some kickass components and build the server from scratch. The details are for another post, because now, I want to bitch and moan about the next stupid idea in cheap hardware: fake RAID.</p>
<p>It goes like this: When I was shopping for all the parts in the machine, I explicitly chose a motherboard that supported hardware <a href="http://en.wikipedia.org/wiki/RAID">RAID</a>. I installed Debian on the machine and was a bit bewildered when it showed both hard drives.  After doing some research, I found the issue:</p>
<p>When they say hardware RAID, they actually mean software RAID that is supported by the BIOS. In fact, it is very similar to a <a href="http://en.wikipedia.org/wiki/Softmodem">WinModem</a>. That means that you are forced to use Windows if you actually want to use the RAID. Well, shit. Now, I am aware that there are experimental drivers for using SATA RAID on Linux (see <a href="http://packages.debian.org/unstable/admin/dmraid">dmraid</a>), but most people agree that using the built-in Linux software RAID support (see <a href="http://neil.brown.name/blog/mdadm">mdadm</a>) is preferred and better supported.</p>
<p>Anyway, after a long night of various fail and life-hating, I&#8217;ve now got a 500GB software RAID1 set running Debian &#8220;Lenny&#8221; Beta 2.</p>
<p>Off-topic: I&#8217;m seeing this odd behavior where when I cold-power-on my machine, it turns on, then suddenly dies after 2 seconds&#8230;then, without touching it, it turns on again and finishes booting. I&#8217;m using an Intel P35 chipset, and my friend Zach also is seeing the same issues on two of his C2D boxes, so perhaps it&#8217;s a chipset issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathankern.com/blog/2008/06/26/fakeraid/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Holy gorgeous weather Batman!</title>
		<link>http://www.jonathankern.com/blog/2008/04/13/holy-gorgeous-weather-batman/</link>
		<comments>http://www.jonathankern.com/blog/2008/04/13/holy-gorgeous-weather-batman/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 19:53:12 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.jonathankern.com/?p=488</guid>
		<description><![CDATA[It was an absolutely beautiful day in Seattle yesterday.  74 degrees, sunny, just plain great.  I opened the windows in my home office, turned on the fan to get in some fresh air, and worked on some code I&#8217;d been putting off.
Then, I went out to grab some lunch and decided that I [...]]]></description>
			<content:encoded><![CDATA[<p>It was an absolutely beautiful day in Seattle yesterday.  74 degrees, sunny, just plain great.  I opened the windows in my home office, turned on the fan to get in some fresh air, and worked on some code I&#8217;d been putting off.</p>
<p>Then, I went out to grab some lunch and decided that I needed to take advantage of the day.  I opened all my windows and the sunroof and took a drive around Issaquah before going to Qdoba for some tasty-delicious Mexican Gumbo.</p>
<p>When I got back home, I saw a couple of packages waiting on my doorstep.  My new GPS mounting kit and aux adapter for my car had arrived.  I installed the GPS mount which looks great and makes using the TomTom a lot more comfortable.</p>
<p>I got back on my computer and worked some more on <a href="/code/wplistcal">WPListCal</a>.  Then <a href='http://blogs.msdn.com/alexander/' rel='external friend met co-worker' title='My Culture Shock'>Alex</a> gave me a call.  I headed to his place, and we installed my aux adapter.  I&#8217;ve now got 2 RCA inputs to my car&#8217;s factory radio.  One of them is plugged into my Sirius radio which sounds tons better now that it&#8217;s not going over FM.  The other input will go to a Harmon Kardon Drive &amp; Play so I can control my iPod.</p>
<p>After a celebratory trip to Hooters for some delicious wings and beer, I headed back home and finished working on WPListCal.  I was up until 5am coding&#8230;what can I say? I was in a groove.</p>
<p>Anywho, I&#8217;m probably going to hang out with <a href='http://blogs.msdn.com/alexander/' rel='external friend met co-worker' title='My Culture Shock'>Alex</a> and <a href='http://www.diclonius.net/gallery2/' rel='external friend met co-worker' title=''>Ferdinand</a> later today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathankern.com/blog/2008/04/13/holy-gorgeous-weather-batman/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WPListCal</title>
		<link>http://www.jonathankern.com/blog/2008/01/13/wplistcal/</link>
		<comments>http://www.jonathankern.com/blog/2008/01/13/wplistcal/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 06:17:40 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Blag]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[wplistcal]]></category>

		<guid isPermaLink="false">http://www.jonathankern.com/2008/01/13/wplistcal/</guid>
		<description><![CDATA[As you can see on the right side of the main blog page, I&#8217;m now listing my upcoming trips and events.  The cool part is that the list is generated by a new WordPress plugin that I wrote.  WPListCal allows you to list upcoming events on your blog in a list or table [...]]]></description>
			<content:encoded><![CDATA[<p>As you can see on the right side of the <a href="/blog">main blog page</a>, I&#8217;m now listing my upcoming trips and events.  The cool part is that the list is generated by a new WordPress plugin that I wrote.  WPListCal allows you to list upcoming events on your blog in a list or table format.  It plugs straight into the Wordpress admin pages to let you keep track of events just like posts and pages.  You can then list events on a page or post using a special tag, or incorporate events into your theme files using a PHP function call.</p>
<p>I&#8217;ve posted the plugin in the WordPress plugin directory for download.  For more information about WPListCal, visit the <a href="/code/wplistcal">plugin&#8217;s homepage</a>.</p>
<p>Note: Please post questions and comments on the <a href="/code/wplistcal">plugin&#8217;s homepage</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathankern.com/blog/2008/01/13/wplistcal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m famous</title>
		<link>http://www.jonathankern.com/blog/2007/11/14/im-famous/</link>
		<comments>http://www.jonathankern.com/blog/2007/11/14/im-famous/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 23:55:33 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.argosdesign.net/2007/11/14/im-famous/</guid>
		<description><![CDATA[Earlier this year, before I graduated, I got an email from the Computer Science chair at Cal Poly Pomona.  She had been asked by Thomson Publishing (now Cengage Course Technology) for a student who was graduating from a Cal State school that was going on to do something cool after graduating.  I guess [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.argosdesign.net/wp-content/uploads/2007/11/cover_front_s.thumbnail.png' alt='Principles of Operating Systems' style='float:left;margin:5px 15px 15px 0px;' />Earlier this year, before I graduated, I got an email from the Computer Science chair at Cal Poly Pomona.  She had been asked by Thomson Publishing (now Cengage Course Technology) for a student who was graduating from a Cal State school that was going on to do something cool after graduating.  I guess going to work for Microsoft was cool enough for them, so they interviewed me and are going to put the interview and a short profile + picture of me in their upcoming textbook: <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FPrinciples-Operating-Systems-Design-Applications%2Fdp%2F1418837695%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1195083901%26sr%3D1-1&#038;tag=devblog0a-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">Principles of Operating Systems: Design and Applications</a> (pictured to the left).  The book publishes in January.</p>
<p>P.S. Yes, I know&#8230;.<a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FModern-Operating-Systems-Andrew-Tanenbaum%2Fdp%2F0136006639%2F&#038;tag=devblog0a-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">Tanenbaum</a> or go home, but this book has me in it&#8230;.so ha!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathankern.com/blog/2007/11/14/im-famous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Das Boot</title>
		<link>http://www.jonathankern.com/blog/2007/11/12/das-boot/</link>
		<comments>http://www.jonathankern.com/blog/2007/11/12/das-boot/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 21:37:21 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.argosdesign.net/2007/11/12/das-boot/</guid>
		<description><![CDATA[This weekend was as crazy as I expected it to be, and then some.  On Friday night, Ferdinand, Alex, and I went to Feierabend &#8212; a German pub in Seattle.  They serve beer by the liter!  I went through about 2 liters plus an Australian Flat Liner (chartreuse, jagermister, and tabasco) and [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend was as crazy as I expected it to be, and then some.  On Friday night, Ferdinand, Alex, and I went to Feierabend &mdash; a German pub in Seattle.  They serve beer by the <strong>liter</strong>!  I went through about 2 liters plus an Australian Flat Liner (chartreuse, jagermister, and tabasco) and a shot of chartreuse.  Needless to say I was a little buzzed.  Then Alex decided to take on Das Boot.  If you&#8217;ve seen Beer Fest, you&#8217;ll know what I mean.  It is a large glass, probably about 2-2.5 liters, shaped like a boot.  I probably got about 1/2 liter of that and Alex took the rest.</p>
<p>Then we decided to go get dessert at Cheesecake Factory.  4 appetizers and a round of drinks later, we left without eating any dessert.  We walked across the street to the movie theater and watched a rather bad horror movie about scarry shit in Mexico.  I slept through most of it.  I slept well that night.</p>
<p>Saturday, I got a chance to relax during the day: watch some TV, surf the net, etc.  At night, I met up with a bunch of people for Ferdinand &amp; Hitomi&#8217;s birthday party.  We had dinner at Etta&#8217;s near Pike Place Market, and then we went over to Game Works for some gaming.  I haven&#8217;t been to Game Works in a long time, and I was sad to see that the big game where you strapped in and were raised up in the air in front of a huge video screen was broken and no longer used.  This was the big deal about Game Works when it first opened.  What a pity.  Anyway, we played for a while and then dispersed.  I went home and got caught up in something or other on the computer and ended up going to sleep at 4am.</p>
<p>Sunday, I hung out with a friend for the daytime, and then went out with <a href='http://darkfiend.viltris.com/journal.php' rel='external friend met co-worker' title='Dwayne Jeng'>Dwayne</a> and Michael for Michael&#8217;s birthday.  All these November birthdays&#8230;clearly people like to get lucky on Valentine&#8217;s Day.</p>
<p>I&#8217;ve started developing a plugin for WordPress.  I&#8217;ll post more about it when it&#8217;s closer to being finished.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathankern.com/blog/2007/11/12/das-boot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turing Test Extra Credit</title>
		<link>http://www.jonathankern.com/blog/2007/10/19/turing-test-extra-credit/</link>
		<comments>http://www.jonathankern.com/blog/2007/10/19/turing-test-extra-credit/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 07:12:05 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.argosdesign.net/2007/10/19/turing-test-extra-credit/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.argosdesign.net/wp-content/uploads/2007/10/turing_test.png' alt='Turing Test Extra Credit' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathankern.com/blog/2007/10/19/turing-test-extra-credit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sad, but true</title>
		<link>http://www.jonathankern.com/blog/2007/09/04/sad-but-true/</link>
		<comments>http://www.jonathankern.com/blog/2007/09/04/sad-but-true/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 21:09:41 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.argosdesign.net/2007/09/04/sad-but-true/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.argosdesign.net/wp-content/uploads/2007/09/breakdown.png" alt="Web Development Breakdown" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathankern.com/blog/2007/09/04/sad-but-true/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grand Central</title>
		<link>http://www.jonathankern.com/blog/2007/08/20/grand-central/</link>
		<comments>http://www.jonathankern.com/blog/2007/08/20/grand-central/#comments</comments>
		<pubDate>Tue, 21 Aug 2007 00:19:19 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.argosdesign.net/2007/08/20/grand-central/</guid>
		<description><![CDATA[If anyone has a Grand Central account, may I please have an invite?  kthxbye.
]]></description>
			<content:encoded><![CDATA[<p>If anyone has a <a target="_blank" href="http://www.grandcentral.com">Grand Central</a> account, may I please have an invite?  kthxbye.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathankern.com/blog/2007/08/20/grand-central/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
