<?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>endot</title>
	<atom:link href="http://endot.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://endot.org</link>
	<description>random seepage from the brain of a geek</description>
	<lastBuildDate>Fri, 23 Apr 2010 04:45:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>The world&#8217;s drinkable water</title>
		<link>http://endot.org/2010/04/22/the-worlds-drinkable-water/</link>
		<comments>http://endot.org/2010/04/22/the-worlds-drinkable-water/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 04:45:37 +0000</pubDate>
		<dc:creator>nate</dc:creator>
				<category><![CDATA[Data]]></category>

		<guid isPermaLink="false">http://endot.org/?p=162</guid>
		<description><![CDATA[I&#8217;m a big fan of data visualization.  Something about taking huge swaths of numbers and reducing them down to a set of conclusions or messages is very intriguing. For a while, I&#8217;ve been consuming blogs and articles related to data visualization, so my head is full of theories with not much practice.  So here is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big fan of data visualization.  Something about taking huge swaths of numbers and reducing them down to a set of conclusions or messages is very intriguing.</p>
<p>For a while, I&#8217;ve been consuming blogs and articles related to data visualization, so my head is full of theories with not much practice.  So here is my feeble first foray into the dataviz space.  The data comes from <a href="http://flowingdata.com/2010/04/01/discuss-drinkable-water-in-the-world/">a post</a> on <a href="http://flowingdata.com/">flowingdata.com</a>.  It presents one way of looking at just how little water (percentage-wise) is available to drink and asks if there is a better way to depict the information.  This is what popped into my head when I read the question, and hopefully that idea has translated well:</p>
<p><a href="http://endot.org/wp-content/uploads/2010/04/drinkable_water.png"><img class="alignnone size-medium wp-image-164" title="drinkable_water" src="http://endot.org/wp-content/uploads/2010/04/drinkable_water-300x219.png" alt="drinkable_water" width="300" height="219" /></a></p>
<p>Any comments or suggestions are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://endot.org/2010/04/22/the-worlds-drinkable-water/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mounting USB ext3 partitions on OpenSolaris</title>
		<link>http://endot.org/2010/03/14/mounting-usb-ext3-partitions-on-opensolaris/</link>
		<comments>http://endot.org/2010/03/14/mounting-usb-ext3-partitions-on-opensolaris/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 20:19:59 +0000</pubDate>
		<dc:creator>nate</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Home]]></category>

		<guid isPermaLink="false">http://endot.org/?p=137</guid>
		<description><![CDATA[[Update] It looks like this only really applies to USB flash drives.  When I mounted my actual backup drive, it showed up in prtpart.  This post was written using the root drive on my old backup server, which is a SanDisk Cruzer flash drive. Now that I finally got my mini thumper up and online, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>[Update]</strong> It looks like this only really applies to USB flash drives.  When I mounted my actual backup drive, it showed up in prtpart.  This post was written using the root drive on my old backup server, which is a SanDisk Cruzer flash drive.</p>
<hr/>
<p>Now that I finally got <a href="/2010/03/14/my-mini-thumper-is-online/">my mini thumper up and online</a>, it&#8217;s time pull everything from my previous  backup drive.  The problem is that it&#8217;s a USB drive with an ext3 partition on it.  I did a little googling and found several references to using the belenix FSWpart and FSWfsmisc packages, with <a href="http://blogs.sun.com/pradhap/entry/mount_ntfs_ext2_ext3_in">this one</a> being the most helpful.</p>
<p>My only problem was that when I ran prtpart, it only showed disk information for my non-USB drives.  I could see that the drive was recognized by looking in syslog:</p>
<pre class="brush: plain; gutter: false;">root@silo:~# cat /var/adm/messages
Mar 14 12:03:36 silo usba: [ID 349649 kern.info]        SanDisk U3 Cruzer Micro 0774920CB281D664
Mar 14 12:03:36 silo genunix: [ID 936769 kern.info] scsa2usb0 is /pci@0,0/pci1462,7418@1d,3/storage@1
...
</pre>
<p>So, I dug around a bit, trying to look for various names in /dev/rdsk that were in the above output when I stumbled across the fact that everything in /dev/rdsk is a symlink.  So I did a quick grep:</p>
<pre class="brush: plain; gutter: false;">
root@silo:~# ls -al /dev/rdsk/ | grep /pci@0,0/pci1462,7418@1d,3/storage@1
lrwxrwxrwx   1 root root  64 2010-03-14 12:03 c11t0d0p0 -&gt; ../../devices/pci@0,0/pci1462,7418@1d,3/storage@1/disk@0,0:q,raw
lrwxrwxrwx   1 root root  64 2010-03-14 12:03 c11t0d0p1 -&gt; ../../devices/pci@0,0/pci1462,7418@1d,3/storage@1/disk@0,0:r,raw
....
</pre>
<p>Aha! Now I know what the device name is, so I can use prtpart to figure out what to mount:</p>
<pre class="brush: plain; gutter: false;">root@silo:~# prtpart /dev/rdsk/c11t0d0p0 -ldevs
Fdisk information for device /dev/rdsk/c11t0d0p0

** NOTE **
/dev/dsk/c11t0d0p0      - Physical device referring to entire physical disk
/dev/dsk/c11t0d0p1 - p4 - Physical devices referring to the 4 primary partitions
/dev/dsk/c11t0d0p5 ...  - Virtual devices referring to logical partitions

Virtual device names can be used to access EXT2 and NTFS on logical partitions

/dev/dsk/c11t0d0p1      Linux native
</pre>
<p>And mount it:</p>
<pre class="brush: plain; gutter: false;">root@silo:~# mkdir /mnt/linux
root@silo:~# mount -F ext2fs /dev/dsk/c11t0d0p1 /mnt/linux
root@silo:~# ls /mnt/linux/
bin  dev  etc  home  initrd  lib  lost+found  media  mnt  proc  root  sbin  sys  tmp  usr  var  www
</pre>
]]></content:encoded>
			<wfw:commentRss>http://endot.org/2010/03/14/mounting-usb-ext3-partitions-on-opensolaris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My mini thumper is online!</title>
		<link>http://endot.org/2010/03/14/my-mini-thumper-is-online/</link>
		<comments>http://endot.org/2010/03/14/my-mini-thumper-is-online/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 20:18:09 +0000</pubDate>
		<dc:creator>nate</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Home]]></category>

		<guid isPermaLink="false">http://endot.org/?p=146</guid>
		<description><![CDATA[After basically copying my friend&#8217;s exact specifications, I now have a little server at home with 1.5T of mirrored disk space.  By and large it was a straightforward process, with the following interesting tidbits. Most of the assembly went smoothly.  You do have to pull the motherboard out to get the CF drive into its [...]]]></description>
			<content:encoded><![CDATA[<p>After basically copying <a href="http://serialized.net/2009/02/the-littlest-thumper-opensolaris-nas-on-an-msi-wind-pc/">my friend&#8217;s exact specifications</a>, I now have a little server at home with 1.5T of mirrored disk space.  By and large it was a straightforward process, with the following interesting tidbits.</p>
<p>Most of the assembly went smoothly.  You do have to pull the motherboard out to get the CF drive into its slot.  In order to maneuver it out, you have to unclip the SATA cables and unscrew the VGA connector.</p>
<p><a href="http://endot.org/wp-content/uploads/2010/03/case.jpg"><img class="alignnone size-medium wp-image-147" title="case" src="http://endot.org/wp-content/uploads/2010/03/case-300x225.jpg" alt="case" width="300" height="225" /></a></p>
<p>You can see the SATA cables snaking up the left and top and the VGA connector is in the lower right (blue).  The CF slot is just left of center at the bottom of the picture.  Here&#8217;s a picture with the drive and RAM installed.</p>
<p><a href="http://endot.org/wp-content/uploads/2010/03/case2.jpg"><img class="alignnone size-medium wp-image-148" title="case2" src="http://endot.org/wp-content/uploads/2010/03/case2-300x225.jpg" alt="case2" width="300" height="225" /></a></p>
<p>The other issue I ran into was related to the optical drive bay.  My first drive slid in and mounted fine in the HD bay, but I was stuck without brackets to properly secure the second drive in the 5.25 inch bay.  I could have just put it in and held it with one screw, but after figuring that this is my backup server, I opted to head to Best Buy to pick up the brackets.</p>
<p>When I got there, I was informed that they don&#8217;t carry them any more and that I would have to pay a visit to Fry&#8217;s.  Well, I hate going to Fry&#8217;s more than most bad things in life, so I called it a day and decided to figure it out later.  Then, earlier this week, Sara and I were walking by a little local computer shop named <a href="http://www.techquest.net/">*techquest</a>.  The proprietor was able to dig up a pair of brackets, so I bought them from him.</p>
<p>Yesterday, I finished assembling the hardware and then spent a while trying to figure out how to get it to boot OpenSolaris from the USB drive I had created.</p>
<p>The first problem was that I couldn&#8217;t get into the Wind BIOS.  I could see it flash something on the screen after POST beeping, but it was cleared far too fast for me to get any information.  After rebooting a few times and only getting a few words, I turned my iPhone video camera on it and was able to finally read the information with a well timed pause.</p>
<p>The rest of my issues revolved around the unique arrangement of boot options in the BIOS and having to remove the stupid U3 stuff from the Cruzer so that it behaved like a simple USB disk, but soon enough I was installing OpenSolaris.</p>
<p>The little box now sits in my entertainment center, ready for me to start transferring data to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://endot.org/2010/03/14/my-mini-thumper-is-online/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Arduino Collective</title>
		<link>http://endot.org/2010/01/11/the-arduino-collective/</link>
		<comments>http://endot.org/2010/01/11/the-arduino-collective/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 22:10:25 +0000</pubDate>
		<dc:creator>nate</dc:creator>
				<category><![CDATA[Electronics]]></category>

		<guid isPermaLink="false">http://endot.org/?p=125</guid>
		<description><![CDATA[A friend and I have started a side blog to track our experiments in electronics. It&#8217;s over at The Arduino Collective.]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://serialized.net/">friend</a> and I have started a side blog to track our experiments in electronics.</p>
<p>It&#8217;s over at <a href="http://arduinocollective.com/">The Arduino Collective</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://endot.org/2010/01/11/the-arduino-collective/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>International Backup Awareness Day</title>
		<link>http://endot.org/2009/12/15/international-backup-awareness-day/</link>
		<comments>http://endot.org/2009/12/15/international-backup-awareness-day/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 05:01:04 +0000</pubDate>
		<dc:creator>nate</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://endot.org/?p=122</guid>
		<description><![CDATA[It can happen to the best of us. Take this opportunity to make sure your site is properly backed up.  And while you&#8217;re at it, upgrade WordPress too.]]></description>
			<content:encoded><![CDATA[<p>It can <a href="http://www.codinghorror.com/blog/archives/001315.html">happen to the best of us</a>.</p>
<p>Take this opportunity to make sure your site is properly backed up.  And while you&#8217;re at it, upgrade WordPress too.</p>
]]></content:encoded>
			<wfw:commentRss>http://endot.org/2009/12/15/international-backup-awareness-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git_backup.pl &#8211; a simple script to backup with git</title>
		<link>http://endot.org/2009/09/27/git_backup-pl-a-simple-script-to-backup-with-git/</link>
		<comments>http://endot.org/2009/09/27/git_backup-pl-a-simple-script-to-backup-with-git/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 21:24:58 +0000</pubDate>
		<dc:creator>nate</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://endot.org/?p=110</guid>
		<description><![CDATA[For a while now, I&#8217;ve been backing up the few WordPress blogs that I run for various people with a very simple script that followed this algorithm: Copy files to a temporary directory. Dump the MySQL data into a file in that directory. Tarball it up. Scp that file to another server that I run. [...]]]></description>
			<content:encoded><![CDATA[<p>For a while now, I&#8217;ve been backing up the few WordPress blogs that I run for various people with a very simple script that followed this algorithm:</p>
<ol>
<li>Copy files to a temporary directory.</li>
<li>Dump the MySQL data into a file in that directory.</li>
<li>Tarball it up.</li>
<li>Scp that file to another server that I run.</li>
</ol>
<p>At the time, I did this because it was the simplest thing that could possibly work.  It didn&#8217;t depend on any external facility other than mysqldump, tar, and scp.</p>
<p>Well, running that script on a nightly cron filled up my disk allocation on that remote server a couple times, so I got clever with the backup organization so I could quickly remove old backups while keeping sparser (monthly) backups for longer.  This only helped a little, because I was still nervous about deleting backups because I didn&#8217;t know what they contained.</p>
<p>I also have been using <a href="http://git-scm.com/">git</a> more and more recently and I liked the idea of version control that can go in any direction.  So, in the spare bits of time I&#8217;ve had in the past few weeks, I wrote git_backup.pl.  It takes a git repository and does the following:</p>
<ul>
<li>git add &lt;any new or modified files&gt;</li>
<li>git rm &lt;any deleted files&gt;</li>
<li>git commit</li>
<li>git push backup</li>
</ul>
<p>Now, when the backup is run, only the small changes are sent to the remote server and I can look at the differences by examining the git log.</p>
<p>There are options for dumping database tables, changing the commit message and the remote that gets the push.  Running &#8220;git_backup.pl &#8211;man&#8221; will show all the options.</p>
<p>The source is (of course) in a git repo: http://git.endot.org/git_backup.git</p>
<p>The tree and history can be browsed at <a href="http://git.endot.org/">http://git.endot.org/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://endot.org/2009/09/27/git_backup-pl-a-simple-script-to-backup-with-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing R.app&#8217;s tendency to forget history</title>
		<link>http://endot.org/2009/08/28/fixing-r-apps-tendency-to-forget-history/</link>
		<comments>http://endot.org/2009/08/28/fixing-r-apps-tendency-to-forget-history/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 01:23:03 +0000</pubDate>
		<dc:creator>nate</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://endot.org/?p=104</guid>
		<description><![CDATA[Being the data and visualization nerd that I am, I&#8217;ve been delving into R on occasion.  For this purpose, I am using R.app on my Mac.  To start it up for a certain working directory (to keep different projects separate), I run &#8220;open -a R &#60;working dir&#62;&#8221;.  This worked great until I noticed that my [...]]]></description>
			<content:encoded><![CDATA[<p>Being the data and visualization nerd that I am, I&#8217;ve been delving into <a href="http://www.r-project.org/">R</a> on occasion.  For this purpose, I am using R.app on my Mac.  To start it up for a certain working directory (to keep different projects separate), I run &#8220;open -a R &lt;working dir&gt;&#8221;.  This worked great until I noticed that my history wasn&#8217;t getting saved to the .Rhistory file in each directory.  When I use the command line R executable it does, but not in the R.app GUI.</p>
<p>So, it took me a little while to figure out that it&#8217;s a bug in the R.app code and you have to use a workaround.  Open R.app&#8217;s preferences and set the &#8220;R history file&#8221; key to something other than &#8220;.Rhistory&#8221;:</p>
<p><img class="alignnone size-full wp-image-105" title="rhistory" src="http://endot.org/wp-content/uploads/2009/08/rhistory.png" alt="rhistory" width="519" height="143" /></p>
<p>Now, after a restart, the .nateRhistory file in the working directory is properly updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://endot.org/2009/08/28/fixing-r-apps-tendency-to-forget-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nate&#8217;s Third Law of Headphones at Work</title>
		<link>http://endot.org/2009/08/27/nates-third-law-of-headphones-at-work/</link>
		<comments>http://endot.org/2009/08/27/nates-third-law-of-headphones-at-work/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 23:01:04 +0000</pubDate>
		<dc:creator>nate</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://endot.org/?p=97</guid>
		<description><![CDATA[Observed many times and today is rampant proof: The surest way to be interrupted at your desk is to put on some headphones and turn on a good album. And there&#8217;s an interesting corollary: The surest way to NOT be interrupted at your desk is to put on some headphones and play NO MUSIC AT [...]]]></description>
			<content:encoded><![CDATA[<p>Observed many times and today is rampant proof:</p>
<blockquote><p>The surest way to be interrupted at your desk is to put on some headphones and turn on a good album.</p></blockquote>
<p>And there&#8217;s an interesting corollary:</p>
<blockquote><p>The surest way to NOT be interrupted at your desk is to put on some headphones and play NO MUSIC AT ALL.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://endot.org/2009/08/27/nates-third-law-of-headphones-at-work/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New SLR Stage 1: Blurry Backgrounds</title>
		<link>http://endot.org/2009/08/24/new-slr-stage-1-blurry-backgrounds/</link>
		<comments>http://endot.org/2009/08/24/new-slr-stage-1-blurry-backgrounds/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 04:10:12 +0000</pubDate>
		<dc:creator>nate</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://endot.org/?p=90</guid>
		<description><![CDATA[In an attempt to pursue a hobby that does not involve a heap of monitor staring, I decided to get more serious about photography.  I&#8217;ve always enjoyed taking pictures, but I wanted to get deeper into the process.  So, I saved up some money and purchased a used Canon 30D from a friend back in [...]]]></description>
			<content:encoded><![CDATA[<p>In an attempt to pursue a hobby that does not involve a heap of monitor staring, I decided to get more serious about photography.  I&#8217;ve always enjoyed taking pictures, but I wanted to get deeper into the process.  So, I saved up some money and purchased a used Canon 30D from a friend back in March.  In the months that followed, I noticed myself passing through several stages as I got used to photography as a hobby rather than just image capture.  In retrospect, I thought they were rather funny.  I&#8217;ll share them over the next few blog posts.<span id="more-90"></span>The first of those stages is an acute fascination with shallow depth of field.</p>
<p><a href="http://www.flickr.com/photos/19501186@N00/3396907438/"><img src="http://farm4.static.flickr.com/3567/3396907438_78a1250602.jpg" border="0" alt="IMG_8336" /></a></p>
<p>Shortly after I picked up the 30D, I got the excellent 50mm f1.8 &#8220;plastic fantastic&#8221; and spent quite a most of my time at the larger apertures isolating my subjects.</p>
<p><a href="http://www.flickr.com/photos/19501186@N00/3854986336/"><img src="http://farm3.static.flickr.com/2482/3854986336_417b05be63.jpg" border="0" alt="IMG_8656" /></a></p>
<p>I think the reason for this was that my previous camera (a Canon point-and-shoot) offered quite a few features but none of which allowed me to modify the f/stop and shorten the depth of field.  Also, I&#8217;ve always liked how these kinds of pictures can so quickly focus your eyes on one thing while simultaneously hinting at supporting information elsewhere in the picture.</p>
<p>I don&#8217;t do quite as many pictures like this any more.  I still enjoy it, but I&#8217;ve learned the benefits of smaller apertures, so this has turned into a tool to be used, not the only thing I can do.</p>
]]></content:encoded>
			<wfw:commentRss>http://endot.org/2009/08/24/new-slr-stage-1-blurry-backgrounds/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Plane Birthday</title>
		<link>http://endot.org/2009/08/15/a-plane-birthday/</link>
		<comments>http://endot.org/2009/08/15/a-plane-birthday/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 06:59:20 +0000</pubDate>
		<dc:creator>nate</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://endot.org/?p=85</guid>
		<description><![CDATA[Today was a great day.  Today Sara and I celebrated my birthday.  She planned the whole thing out, so all I had to do was go along for the ride. After sleeping in till 10:30 (due to a late night up in Hollywood catching District 9 with some old friends), we ate a breakfast of [...]]]></description>
			<content:encoded><![CDATA[<p>Today was a great day.  Today Sara and I celebrated my birthday.  She planned the whole thing out, so all I had to do was go along for the ride.</p>
<p>After sleeping in till 10:30 (due to a late night up in Hollywood catching District 9 with some old friends), we ate a breakfast of waffles and bacon with pineapple and apple juice.  We took our time and really enjoyed each other&#8217;s company.</p>
<p>Then, after cleaning up and getting directions, we headed up to the <a href="http://www.lawa.org/welcomeVNY.aspx">Van Nuys Airport</a>.  Ever since I saw <a href="http://www.terwilligerproductions.com/onesixright/">One Six Right</a>, I wanted to go up to Van Nuys to see the airport firsthand and of course, to watch the airplanes.  We first tried the little viewing area to the west of the airport.  It&#8217;s a good area to sit and watch the planes come in, but isn&#8217;t the best for taking pictures or getting very close to the aircraft.  So, thanks to a <a href="http://www.airliners.net/aviation-forums/aviation_photography/read.main/297812/">posting</a> on <a href="http://www.airliners.net/">airliners.net</a>, we went to the other side of the airport to the intersection of Arminta and Hayvenhurst.  The view wasn&#8217;t any better over there, but just before the corner we spotted several old airplanes and decided to stop.</p>
<p>The planes all belonged to the <a href="http://www.condorsquadron.org/">Condor Squadron</a>, and we were able to go through the fence and walk among the planes.  They are all <a href="http://en.wikipedia.org/wiki/T-6_Texan">AT-6/SNJ trainers</a> that were used in World War II.  We met Chris and John, two members who own individual planes.  They were cleaning up and refueling after doing a simulated dogfight over the <a href="http://www.lanevictory.org/">Lane Victory</a> earlier in the afternoon.  It was great to talk with them and learn a bit about their planes.  I took quite a few pictures, which I will try to post tomorrow.</p>
<p>After we left Van Nuys, we headed down to LAX and went to the <a href="http://www.theproudbird.com/">Proud Bird</a> for dinner.  Since we were early (only 5pm), it wasn&#8217;t crowded at all and we were able to get a table right on the window.  The prime rib and mashed potatoes were great and we just finished up the day with chocolate cake and a movie.</p>
<p>All in all it was a great day.  Thanks for making it special, babe.</p>
]]></content:encoded>
			<wfw:commentRss>http://endot.org/2009/08/15/a-plane-birthday/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
