<?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"
	>

<channel>
	<title>James' World</title>
	<atom:link href="http://www.jebriggs.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jebriggs.com/blog</link>
	<description>Observations by a Programmer of Silicon Valley and Beyond</description>
	<pubDate>Fri, 12 Dec 2008 07:47:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>The Real World: Amazon EC2 (Linux)</title>
		<link>http://www.jebriggs.com/blog/2008/12/the-real-world-amazon-ec2-linux/</link>
		<comments>http://www.jebriggs.com/blog/2008/12/the-real-world-amazon-ec2-linux/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 03:24:24 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[Toys]]></category>

		<guid isPermaLink="false">http://www.jebriggs.com/blog/?p=489</guid>
		<description><![CDATA[It was all the rage a while ago to spend 10 cents on an Amazon EC2 instance for an hour, blog about it, and deactivate the instance without doing any actual work. Not very useful.
Recently I had the chance to use EC2 for a commercial project for 2 months, so I thought I&#8217;d share some [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://jebriggs.com/php/logo_aws.gif" alt="Amazon Web Services Logo" border="0" align="left" />It was all the rage a while ago to spend 10 cents on an <a href="http://aws.amazon.com/ec2/">Amazon EC2</a> <a href="http://aws.amazon.com/ec2/instance-types/">instance</a> for an hour, blog about it, and deactivate the instance without doing any actual work. Not very useful.</p>
<p>Recently I had the chance to use EC2 for a commercial project for 2 months, so I thought I&#8217;d share some real-world experiences.</p>
<p>A friend of mine with a small West Coast data center (1/2 a rack or so, slow 2000-2005 vintage Intel servers) needed to do something big: build out a flexible internal SOAS renderfarm to <a href="http://www.framefree.com/hulk_app/hulkify.php?m=8d8VmpxBnQJd">generate promotional morphing video clips</a> for an entertainment-industry client.</p>
<p>The existing capacity was about 1/morph per second sustained according to benchmarks.</p>
<p>The system requirements were:</p>
<ul>
<li>linux OS running apache, <a href="http://ffmpeg.mplayerhq.hu/">FFmpeg</a> and proprietary software</li>
<li>static IP address to reach each server from the permanent data center</li>
<li>easy and affordable to scale up or down (possibly 10x or more) with 4 hours notice or less. Start with 10 morphs/second, scalable to 100+ morphs/second.</li>
<li>Core 2 Duo CPUs for rendering (number crunching)</li>
<li>not much disk space, bandwidth (results hosted on Akamai) or memory needed - mostly CPU</li>
<li>West Coast location for servers preferred, not critical though</li>
<li>no important data to be stored off-site</li>
</ul>
<p>The requirement to install custom software leaves you with dedicated servers or Amazon EC2. All the other grid offerings I looked at (Google Grid, <a href="http://www.mosso.com/">Mosso</a>, others) had limitations on what software you could install, basically PHP or python for web use - no root access, can&#8217;t install ffmpeg or proprietary binaries.</p>
<p>I like dedicated servers, but their problem is that generally you pay by the month, so it&#8217;s hard to quickly reduce capacity and expenses depending on advertising spikes. Sometimes new servers can be provisioned quickly, and other times they&#8217;re &#8220;sold out.&#8221; Not so &#8220;elastic.&#8221;</p>
<p>Some good American business dedicated server hosts are <a href="http://theplanet.com">theplanet</a> and gigeservers.</p>
<p>I was somewhat familiar with EC2 from various conferences, especially the Hadoop Conference last year. The talks by The New York Times (cloud OCR) and AutoCAD (vendor metadata processing) were the most influential on me that I&#8217;ve been to.</p>
<p>I did some benchmarking on the 20 cent instance (c1.medium: High-CPU Medium Instance - 5 EC2 Compute Units (2 virtual cores with 2.5 EC2 Compute Units each). 32-bit, 1.7GB RAM, 350GB disk) and liked the performance.</p>
<p>After that I added 2 large 80 cent instances (c1.xlarge: High-CPU Extra Large Instance - 20 EC2 Compute Units (8 virtual cores with 2.5 EC2 Compute Units each). 64-bit, 7GB RAM, 1690GB disk).</p>
<p>I noticed one c1.xlarge was somewhat faster than the other, so you may want to benchmark a few different instances and choose the fastest ones.</p>
<p>The pre-made AMI linux images are all a little different. I had no problems with the 20 cent one, but the 80 cent one was not so smooth - the Perl CPAN module was not installed, and conflicted with the Amazon tools. So I had to yum remove the Amazon tools, then yum install perl-cpan.</p>
<p>I ended up going with two of the monster 80 cent instances to reduce system maintenance and software release targets primarily, keeping the 20 cent instance for test/prod.</p>
<p>Amazon instances appear as regular linux Xen instances, so it&#8217;s just linux as usual.</p>
<p>In the end, we ended up using EC2 for 2 months with no problems.</p>
<p>Overall the project was a success, and I was happy with EC2. The invoice was about $1,300/month ($1.80/hour x 24 hours x 30 days) total for the 3 instances, including negligible bandwidth. Here&#8217;s an online <a href="http://calculator.s3.amazonaws.com/calc5.html">AWS calculator</a> to play with.</p>
<p>Some suggestions to Amazon would be to make provisioning possible from the web portal instead of just the command-line tools to help newbs get rolling, and do better testing on the images - CPAN.pm is a commonly-used Perl module indeed.</p>
<p>Note that FFmpeg (HEAD) is twice as fast as the older rpms floating around download sites.</p>
<p><strong>Sample EC2 Commands</strong></p>
<pre>
$ ec2-add-keypair gsg-keypair -K /root/.ec2/pk-xxx.pem -C /root/.ec2/cert-xxx.pem
$ ec2-describe-images -o self -o amazon
$ ec2-run-instances ami-2bb65342 -k gsg-keypair -t c1.medium
$ ec2-describe-instances
$ ssh -2 -i id_rsa_gsg_keypair ec2-67-202-32-93.compute-1.amazonaws.com
$ ec2-allocate-address
ADDRESS 75.101.148.165
$ ec2-describe-addresses
ADDRESS 75.101.148.165
$ ec2-associate-address -i i-aa46e5c3  75.101.148.165
$ ec2-authorize default -p 80 -K /root/.ec2/pk-xxx.pem -C /root/.ec2/cert-xxx.pem
GROUP           default
PERMISSION              default ALLOWS  tcp     80      80      FROM    CIDR    0.0.0.0/0
$ ssh -2 -i key aws01

         __|  __|_  )  Rev: 2
         _|  (     /
        ___|\___|___|

 Welcome to an EC2 Public Image
                       : - )

    Getting Started

    __ c __ /etc/ec2/release-notes.txt

[root@domU-12-31-38-00-46-01 ~]# uname -a
Linux domU-12-31-38-00-46-01 2.6.16-xenU #1 SMP Mon May 28 03:41:49 SAST 2007 i686 athlon i386 GNU/Linux

[root@domU-12-31-38-00-46-01 ~]# date
Sun Sep 28 21:17:28 EDT 2008

[root@domU-12-31-38-00-46-01 ~]# cat > /etc/yum.repos.d/dag.repo

[dag]
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag
gpgcheck=0
enabled=1
^D

[root@domU-12-31-38-00-46-01 ~]# exit

$ ec2-terminate-instances i-aa46e5c3
</pre>
<p><a href="http://blog.rapleaf.com/dev/?p=38">Rent or Own: Amazon EC2 vs. Colocation Comparison for Hadoop Clusters</a><br />
<a href="http://broadcast.oreilly.com/2008/12/why-i-dont-like-cloud-auto-scaling.html">George Reese: On Why I Don&#8217;t Like Auto-Scaling in the Cloud</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jebriggs.com/blog/2008/12/the-real-world-amazon-ec2-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SVLUG: Wireless Mesh Networking with Tom Belote</title>
		<link>http://www.jebriggs.com/blog/2008/12/svlug-wireless-mesh-networking-with-tom-belote/</link>
		<comments>http://www.jebriggs.com/blog/2008/12/svlug-wireless-mesh-networking-with-tom-belote/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 05:44:47 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[User Groups]]></category>

		<guid isPermaLink="false">http://www.jebriggs.com/blog/?p=486</guid>
		<description><![CDATA[Tom gave a rather technical talk on wireless mesh networking.
At roughly 30 minutes it was the shortest SVLUG talk I&#8217;ve been to.
Thanks to Symantec for hosting the event.
]]></description>
			<content:encoded><![CDATA[<p>Tom gave a rather technical talk on wireless mesh networking.</p>
<p>At roughly 30 minutes it was the shortest SVLUG talk I&#8217;ve been to.</p>
<p>Thanks to Symantec for hosting the event.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jebriggs.com/blog/2008/12/svlug-wireless-mesh-networking-with-tom-belote/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Thanksgiving Weekend Flying in Hawaii</title>
		<link>http://www.jebriggs.com/blog/2008/12/thanksgiving-weekend-flying-in-hawaii/</link>
		<comments>http://www.jebriggs.com/blog/2008/12/thanksgiving-weekend-flying-in-hawaii/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 06:02:24 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Flying]]></category>

		<category><![CDATA[Restaurant Reviews]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[Toys]]></category>

		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://www.jebriggs.com/blog/?page_id=482</guid>
		<description><![CDATA[I spent a 5-day Thanksgiving weekend in Honolulu flying and enjoying Hawaiian Regional Cuisine (HRC).
Hawaiian Airlines arrived at Honolulu Airport at noon Thursday, so I headed straight to the GA area on Lagoon Drive, ate a Hawaiian-style plate lunch at Hawaiian BBQ, and got a practice flight in right away at George&#8217;s Aviation.
Note: theBus&#8217; Lagoon [...]]]></description>
			<content:encoded><![CDATA[<p>I spent a 5-day Thanksgiving weekend in Honolulu flying and enjoying Hawaiian Regional Cuisine (HRC).</p>
<p><a href="http://www.hawaiianair.com/">Hawaiian Airlines</a> arrived at Honolulu Airport at noon Thursday, so I headed straight to the GA area on Lagoon Drive, ate a Hawaiian-style plate lunch at Hawaiian BBQ, and got a practice flight in right away at <a href="http://www.georgesaviation.com/">George&#8217;s Aviation.</a></p>
<p>Note: theBus&#8217; Lagoon Drive route was cancelled 2 months ago, so you&#8217;ll need a rental car or catch a cab on the east side of Lagoon Dr. just south of Nimitz.</p>
<p>I initially flew a 5 year-old Cessna 172SP. This was not a great choice for me to practise for a flight review as the panel instruments (HSI, GPS, etc.) and handling were quite different than my usual 172N choice.</p>
<p>The 172 SP has a fuel-injected 0360 engine with a lot more power, and the airframe is a lot cleaner than a 30-year old N model, so handling in the landing flare is different. (Apparently George bought if from a Fedex captain who kept it as a toy.)</p>
<p>Then I went to my &#8220;discount-rate hotel&#8221; - the 4-star <a href="http://www.waikikiresort.com/">Waikiki Resort Hotel </a>at Koa and Kauilani Streets - for $89/nite. That&#8217;s about half price, so occupancy rates must be really low. (When I was paying for my flight online, a partner popup promoted this deal. I guess I was targeted very effectively.) <img src='http://www.jebriggs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>After another practise flight the next day, I started my FAA Flight Review.</p>
<p>Every 24 months, a flight review by a CFI is required. It used to be called a Biennial Flight Review (BFR), but I understand it may become an annual requirement, hence the recent renaming to just &#8220;Flight Review.&#8221;</p>
<p>CFI Bob gave me a 1 hour flight review oral quiz. Mostly it involved demonstrating detailed knowledge of airspace on a sectional chart, and explaining the various FARs about pilot and aircraft currency.</p>
<p>After that we did a one-hour flight out of Honolulu Class B airspace to the Wheeler south practise area for private pilot maneuvers, followed by some landings at Kaleiloa Class D airport, and return for landing at HNL.</p>
<p>It was a challenging flight. The winds changed from quite calm for Hawaii using Tradewind procedures to Kona wind procedures mid-flight, resulting in runway changes at both airports. Also, Honolulu Approach frequency was busy for almost 5 minutes, so I had to circle outside the Class B before landing.</p>
<p>It appears the standard North Arrival at 1500&#8242; has been changed to the North2 Arrival at 2000&#8242;, effective in the new Airport and Facility Guide (AFD).</p>
<p>I ate the buffet at <a href="http://www.starwoodhotelshawaii.com/">Sheraton Princess Kaiulani</a> one nite, and another nite had the Pear salad and Linguini Seafood at <a href="http://www.sergioshonolulu.com/home_main.htm">Sergio&#8217;s Italian</a> (<a href="http://www.yelp.com/biz/sergios-honolulu">yelp reviews</a>) in the location <a href="http://pacific.bizjournals.com/pacific/stories/2008/09/29/daily13.html?surround=lfn&#038;brthrs=1">formerly occupied</a> by Sam Choy&#8217;s near the Honolulu Zoo.</p>
<p>The city block-sized Compusa near downtown was closed due to bankruptcy, and most of the retail stores on the first level of Ala Moana were new to me since the last trip.</p>
<p>The hotel TV had some interesting items. The Subway $5 ad had one hilarious version with 3 hula dancers doing a hula to the ad song. There was a well-researched hour-long documentary on the history of the UFC, including interviews with the original creators and current owners and president. Plus lots of local news coverage of the Hawaiian airline industry court battles over the bankrupt Aloha airlines trademark.</p>
<p>The shuttle bus back to the airport was only $9, and left plenty of time to eat at the Lahaina Chicken location. The roast chicken and beef combo platter was really good.</p>
<p>Next time I&#8217;ll take the free airport wiki shuttle out to the mainland gate. It&#8217;s too humid to run around outside with luggage. (Any gate higher than 26 is a long walk with luggage.)</p>
<p>Hawaiian Airlines has the most primitive in-flight entertainment systems, but it&#8217;s only a 4.5 hour flight, so I didn&#8217;t bother to rent a headset for $5 or a digimedia player for $15. Instead I watched my seatmate cheat on beginner&#8217;s crossword puzzles, which was quite amusing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jebriggs.com/blog/2008/12/thanksgiving-weekend-flying-in-hawaii/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Air Zawodny Down-sizing</title>
		<link>http://www.jebriggs.com/blog/2008/11/air-zawodny-down-sizing/</link>
		<comments>http://www.jebriggs.com/blog/2008/11/air-zawodny-down-sizing/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 02:25:30 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.jebriggs.com/blog/?p=465</guid>
		<description><![CDATA[Looks like Air Zawodny is down-sizing.  
]]></description>
			<content:encoded><![CDATA[<p>Looks like Air Zawodny is <a href="http://jeremy.zawodny.com/N601SF/">down-sizing.</a> <img src='http://www.jebriggs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jebriggs.com/blog/2008/11/air-zawodny-down-sizing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IMUG Meeting: iPhone International Features and Apps</title>
		<link>http://www.jebriggs.com/blog/2008/11/imug-meeting-iphone-international-features-and-apps/</link>
		<comments>http://www.jebriggs.com/blog/2008/11/imug-meeting-iphone-international-features-and-apps/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 05:09:08 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[BSD]]></category>

		<category><![CDATA[Business]]></category>

		<category><![CDATA[Indonesia]]></category>

		<category><![CDATA[Japanese]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[Toys]]></category>

		<category><![CDATA[Travel]]></category>

		<category><![CDATA[User Groups]]></category>

		<category><![CDATA[i18n]]></category>

		<guid isPermaLink="false">http://www.jebriggs.com/blog/?p=463</guid>
		<description><![CDATA[Lee Collins and Deborah Goldsmith from Apple gave a comprehensive talk on internationalization support on the iPhone since the English-only 1.0 release. Now at 2.1, dozens of languages are supported, driven by potential sales markets.
They have a very strict space budget for code and fonts since every byte they use is one less for the [...]]]></description>
			<content:encoded><![CDATA[<p>Lee Collins and Deborah Goldsmith from Apple gave a comprehensive talk on internationalization support on the iPhone since the English-only 1.0 release. Now at 2.1, dozens of languages are supported, driven by potential sales markets.</p>
<p>They have a very strict space budget for code and fonts since every byte they use is one less for the end-user.</p>
<p>As much as possible, they try to provide the full ICU API for developers to use.</p>
<p>Regular Truetype fonts are used, though there&#8217;s no hint information and there&#8217;s no mechanism to add your own.</p>
<p>Chuck Soper (<a href="http://veladg.com/">Vela Design Group</a>) talked about porting <a href="http://veladg.com/velaclockapp.html">VelaClock</a> to the iPhone, and made some recommendations for the Apple iPhone apps store.</p>
<p>He would like to see longer sales history information than 7 days, ideally unlimited. Also, he would like to see feedback and ratings reviews across countries, since loading 100 country forums is tedious.</p>
<p>He also wanted to know best to provide mib and strings to translators.</p>
<p>He says half his sales come from the Apple Store.</p>
<p>Some of his customers use VelaClock to do things like plan night flights.</p>
<p>I had a chances to try out the Blackberry Bold, with it&#8217;s new UI and hi-res screen. The screen has the same number of pixels as an iPhone, but half the dimensions.</p>
<p>I also tried a gPhone. It has a built-in compass, so Google StreetView knows what direction you&#8217;re pointing the phone and can show real-time updates based on that direction. Very cool to see.</p>
<p>Thanks to Apple for hosting the event in Cupertino.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jebriggs.com/blog/2008/11/imug-meeting-iphone-international-features-and-apps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Novafora Buys Transmeta</title>
		<link>http://www.jebriggs.com/blog/2008/11/novafora-buys-transmeta/</link>
		<comments>http://www.jebriggs.com/blog/2008/11/novafora-buys-transmeta/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 02:04:55 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.jebriggs.com/blog/?p=461</guid>
		<description><![CDATA[Very interesting &#8230; Novafora comes out of stealth mode to buy Transmeta.
This deal is big news &#8230; it even made the front page of wsj.com.
]]></description>
			<content:encoded><![CDATA[<p>Very interesting &#8230; <a href="http://www.novafora.com/">Novafora</a> comes out of stealth mode to buy <a href="http://www.transmeta.com/">Transmeta.</a></p>
<p>This deal is big news &#8230; it even made the front page of wsj.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jebriggs.com/blog/2008/11/novafora-buys-transmeta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>EclipseJet Saga Continues</title>
		<link>http://www.jebriggs.com/blog/2008/11/eclipsejet-saga-continues/</link>
		<comments>http://www.jebriggs.com/blog/2008/11/eclipsejet-saga-continues/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 05:02:46 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Flying]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[Toys]]></category>

		<guid isPermaLink="false">http://www.jebriggs.com/blog/?p=446</guid>
		<description><![CDATA[I followed the Eclipse Aviation saga from the beginning: promise of a $850k jet 5 years ago, mass production of personal jets, &#8220;friction-stir welding.&#8221;
A lot of people in the aviation industry were convinced this plane would never make it to production. 
I knew that it would, but assumed the final production price would be a [...]]]></description>
			<content:encoded><![CDATA[<p>I followed the <a href="http://www.eclipseaviation.com/">Eclipse Aviation</a> saga from the beginning: promise of a $850k jet 5 years ago, mass production of personal jets, &#8220;friction-stir welding.&#8221;</p>
<p>A lot of people in the aviation industry were convinced this plane would never make it to production. </p>
<p>I knew that it would, but assumed the final production price would be a little higher. I always thought DayJet was a shill company of Eclipse to help write press releases.</p>
<p>Well, imagine my surprise when I saw TV video footage a few months back of DayJet&#8217;s operation, replete with dozens of Eclipse 500 jets. DayJet was real afterall!</p>
<p>DayJet has since closed, blaming equally financing problems and Eclipse roll-out problems.</p>
<p>What&#8217;s fascinating is that Eclipse is selling the DayJet 28-Eclipse 500 inventory with the information that each airframe has 150 to 450 cycles. So it looks like DayJet really did some flying.</p>
<p>Eclipse has apparently missed payroll this month, so we&#8217;ll see what happens next.</p>
<p><a href="http://www.avweb.com/avwebbiz/news/EclipseSellingOffDayJetFleet_199037-1.html">avweb.com: Eclipse Selling Off DayJet Fleet</a><br />
<a href="http://www.avweb.com/avwebflash/news/AnalystsGrimOnEclipseFuture_199087-1.html">avweb.com: Analysts Grim On Eclipse Future</a><br />
<a href="http://www.avweb.com/avwebbiz/news/EclipseShutdownPredicted_199081-1.html">avweb.com: Eclipse Shutdown Predicted</a><br />
<a href="http://www.avweb.com/avwebflash/news/EclipseAviation_Misses_Payroll_TVreport_199202-1.html">avweb.com: Eclipse Misses Payroll: TV Report</a><br />
<a href="http://kob.com/article/stories/S659886.shtml?cat=500">kob.com: Unpaid Eclipse employees worry about future</a><br />
<a href="http://www.bizjournals.com/southflorida/stories/2008/11/10/daily20.html">South Florida Business Journal: DayJet Restart Speculation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jebriggs.com/blog/2008/11/eclipsejet-saga-continues/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AOPA Expo 2008 in San Jose</title>
		<link>http://www.jebriggs.com/blog/2008/11/aopa-expo-2008-in-san-jose/</link>
		<comments>http://www.jebriggs.com/blog/2008/11/aopa-expo-2008-in-san-jose/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 09:07:52 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<category><![CDATA[Flying]]></category>

		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[Psychology]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[Toys]]></category>

		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://www.jebriggs.com/blog/?p=448</guid>
		<description><![CDATA[I found out about AOPA Expo 2008 at the last minute on avweb.com, and spent half a day there Saturday.
First of all, sorry to out-of-town attendees for the showery weather today. San Jose is normally sunny, but not in winter.
The Expo was 3 days (Thursday, Friday and Saturday) for $55/day including seminars and exhibits.
Exhibits Hall
The [...]]]></description>
			<content:encoded><![CDATA[<p>I found out about <a href="http://www.aopa.org/expo/">AOPA Expo 2008</a> at the last minute on <a href="http://www.avweb.com/">avweb.com</a>, and spent half a day there Saturday.</p>
<p>First of all, sorry to out-of-town attendees for the showery weather today. San Jose is normally sunny, but not in winter.</p>
<p>The Expo was 3 days (Thursday, Friday and Saturday) for $55/day including seminars and exhibits.</p>
<p><strong>Exhibits Hall</strong></p>
<p>The Exhibits Hall was twice as big as I expected and a lot of fun. I&#8217;m used to sparse IT conference exhibits, but aviation exhibits are a welcome relief with lots of hardware: aircraft, wrap-around simulators, parts, interior fabrics - you name it.</p>
<p>I only had time to spend an hour looking at the exhibits, but could easily spend a day going booth-to-booth and trying everything out.</p>
<p>The Cessna 162 Skycatcher in purple was on display, as well as the DJet (and a Williams engine static display) and Epic.</p>
<p>Frasca had a wrap-around simulator, and there was a very nice glass cockpit Cessna 172 simulator with 3 almost 180 degrees of displays. It&#8217;s available for rent in Hayward for $65/hour.</p>
<p>Rolls-Royce had 2 engines on display, the A300 used in the Robinson R66 helicopter and a prototype for the A400. </p>
<p>Noticeably absent &#8230; Eclipse did not have a booth.</p>
<p>I listened to 2 seminars from trainers that I haven&#8217;t seen live before, and really wanted to: John and Martha King and Mike Busch.</p>
<p><strong>Pilot Risk Management, John and Martha King</strong></p>
<p>John and Martha King talked about managing flying risks in a systematic fashion.</p>
<p>It took John a minute to warm up, then he sounded just like his pilot training tapes. <img src='http://www.jebriggs.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>They calculate that small-time GA flying is about as risky as motorcycle operation in the US. Half the audience personally knew a pilot killed in GA.</p>
<p>John then went into 3 war stories: IFR letdown in a Cessna 210 with no electricity due to ignoring maintenance near St. Paul in icing, poor takeoff decision at max. weight at a high DA airport (<a href="http://www.airnav.com/airport/O26">Lone Pine</a>, 3680&#8242;), and an unlighted flight from Big Island to Oahu over the ocean at nite (forgot to pre-flight lights for a nite flight.)</p>
<p>They recommend using checklist nmenonics like PAVE CARE for reducing risks.</p>
<ul>
<li><strong>P</strong>ilot</li>
<li><strong>A</strong>ircraft</li>
<li>en<strong>V</strong>ironment</li>
<li><strong>E</strong>xternal Pressures</li>
</ul>
<ul>
<li><strong>C</strong>onsequences</li>
<li><strong>A</strong>lternatives</li>
<li><strong>R</strong>eality</li>
<li><strong>E</strong>xternal Pressures</li>
</ul>
<p><strong>Airplane Maintenance Management, Mike Busch</strong></p>
<p>Mike Busch gave an awesome talk on airplane maintenance management.</p>
<p>Mike is an aviation maintenance author, <a href="http://www.savvyaviator.com/">trainer</a> and businessman who is famous in the GA aviation community.</p>
<p>His latest venture is <a href="http://savvymx.com/">savvymx.com</a>, which provides professional maintenance management for owners. They represent dozens of aircraft already.</p>
<p>(I&#8217;ve attempted to paraphrase what Mike said below, but any errors or omissions are my fault.)</p>
<p>40 years ago in GA&#8217;s hayday, there was an authorized Cessna, Piper or Beech service center on every field with specialist mechanics and a building full of parts on the shelf. Now GA maintenance facilities are merely a shadow of that, unless you&#8217;re talking jets.</p>
<p>He recommends 5 rules/secrets for affordable maintenance:</p>
<ol>
<li>Interview your mechanic/shop like you&#8217;re hiring an employee</li>
<li>Inspection, Discrepancies, Approval in writing</li>
<li>Don&#8217;t fix what&#8217;s not broken</li>
<li>Pilot needs to troubleshoot before mechanic can fix anything</li>
<li>one other &#8230;</li>
</ol>
<p>The aircraft owner is the manager, the mechanic takes orders, and there must be a business-like relationship. Otherwise, find another shop.</p>
<p>However, while giving his SavvyAviation talks, he&#8217;s noticed that some people either don&#8217;t want to make the time, effort or be assertive enough to actually do the mgmt. needed.</p>
<p>95% of aircraft components can and should be maintained on-condition, meaning periodically inspected and replaced as needed. Examples are tires, some actuators, etc.</p>
<p>The remaining 5% are things maintained on a time-based schedule, like magnetos and hoses which are difficult to inspect.</p>
<p>When approving aircraft repairs, terminology is very important. The terms repair, overhaul and rebuild mean very different things. Normally what one wants is a repair (fix just what&#8217;s broken directly and as cheaply as possible), and not an overhaul (blindly follow an overhaul checklist from beginning to end and change and test everything, broken or not.)</p>
<p>He says that TBO is a psychological limit, not a maintenance one. His P210 is currently 1100 hours past TBO, FWIW.</p>
<p>Mike recommends using the most direct method for monitoring and troubleshooting aircraft: engine monitors, oil and filter analysis, <a href="http://en.wikipedia.org/wiki/Borescope">borescope</a>. He calls this &#8220;21st century analysis&#8221;, while old techniques like magneto RPM-drop and cylinder compression tests are <a href="http://en.wikipedia.org/wiki/Wright_brothers">&#8220;Orville and Wilbur Wright analysis.&#8221;</a></p>
<p>He uses <a href="http://www.blackstone-labs.com/">Blackstone Laboratories</a> for oil analysis. Unfortunately, many shops don&#8217;t have borescopes, and even when they do, nobody with training to interpret the image, since studying borescopes is not required for A&#038;P.</p>
<p>In newer airplanes, there is no separation between airframe and electronics, so you need a shop that can handle integrated maintenance, like Woodgreen in SoCal.</p>
<p>He used a black Asus EEE PC to show his slides.</p>
<p><a href="http://philip.greenspun.com/flying/robinson-r66">Robinson R66: a preview by Philip Greenspun, Feb. 2008</a><br />
<a href="http://www.flyingmag.com/piloting/736/learning-to-use-an-ifr-rating.html">flyingmag.com: Learning to Use an IFR Rating</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jebriggs.com/blog/2008/11/aopa-expo-2008-in-san-jose/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Parallel SSH Command Execution Utilities</title>
		<link>http://www.jebriggs.com/blog/2008/11/parallel-ssh-command-execution-utilities/</link>
		<comments>http://www.jebriggs.com/blog/2008/11/parallel-ssh-command-execution-utilities/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 09:11:47 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Perl]]></category>

		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.jebriggs.com/blog/?p=435</guid>
		<description><![CDATA[I usually work on clusters of linux servers, so it&#8217;s handy to submit remote commands in parallel to the whole farm.
I have my own map.pl script for doing that that has different options for serial and parallel execution, immediate and sorted output, and timeouts.
Logging of commands and performance information might be a good idea.
I find [...]]]></description>
			<content:encoded><![CDATA[<p>I usually work on clusters of linux servers, so it&#8217;s handy to submit remote commands in parallel to the whole farm.</p>
<p>I have my own map.pl script for doing that that has different options for serial and parallel execution, immediate and sorted output, and timeouts.</p>
<p>Logging of commands and performance information might be a good idea.</p>
<p>I find it handy to maintain a small script that can be customized for different scenarios, especially if you maintain the server host and status information in a database.</p>
<p>Several Open Source projects have also sprung up.</p>
<p>Minimalist ssh-like command line tools:</p>
<ul>
<li><a href="http://www.theether.org/pssh/">pssh, pscp, prsync, pnuke, pslurp</a></li>
<li><a href="http://sourceforge.net/projects/mpssh/">mpssh</a></li>
<li><a href="http://clusterit.sourceforge.net/">clusterit (C)</a></li>
<li><a href="https://fedorahosted.org/func">func (python)</a></li>
<li><a href="http://www.capify.org/">capistrano (ruby)</a></li>
</ul>
<p>Less minimal Distributed Virtual Terminal utilities:</p>
<ul>
<li><a href="http://clusterit.sourceforge.net/">clusterit (dvt)</a></li>
<li><a href="http://clusterssh.wiki.sourceforge.net/Main+Page">clusterssh</a></li>
<li><a href="http://www.xs4all.nl/~walterj/pconsole/">PConsole</a></li>
<li><a href="http://expect.nist.gov/example/multixterm.man.html">MultiXTerm</a></li>
<li><a href="http://www.csm.ornl.gov/torc/C3/C3documentation.shtml">C3</a></li>
<li><a href="http://packages.ubuntulinux.org/dapper/gnome/keyboardcast">Keyboardcast</a></li>
</ul>
<p><a href="http://sourceforge.net/search/?type_of_search=soft&#038;words=parallel+ssh">SourceForge: search for &#8220;parallel ssh&#8221;</a><br />
<a href="http://www.linux.com/feature/151340">Parallel SSH execution and a single shell to control them all</a><br />
<a href="http://www.cyberciti.biz/tips/parallel-ssh-execution.html">pssh: Run Command On Multiple SSH Servers</a><br />
<a href="http://www.bitmover.com/bitcluster/">Bitmover BitCluster</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jebriggs.com/blog/2008/11/parallel-ssh-command-execution-utilities/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SFO Shuttle Nightmare</title>
		<link>http://www.jebriggs.com/blog/2008/11/sfo-shuttle-nightmare/</link>
		<comments>http://www.jebriggs.com/blog/2008/11/sfo-shuttle-nightmare/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 08:34:42 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Flying]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://www.jebriggs.com/blog/?p=433</guid>
		<description><![CDATA[10 years ago, the Caltrain connected to SFO at Millbrae with a free shuttle bus that stopped at teach terminal. The friendly bus driver offered directions and assistance. No problems, unless it was raining.
5 years ago, the shuttle bus was scrapped, and the Caltrain connected to SFO at Millbrae with a $1.50 5-minute BART train [...]]]></description>
			<content:encoded><![CDATA[<p>10 years ago, the Caltrain connected to SFO at Millbrae with a free shuttle bus that stopped at teach terminal. The friendly bus driver offered directions and assistance. No problems, unless it was raining.</p>
<p>5 years ago, the shuttle bus was scrapped, and the Caltrain connected to SFO at Millbrae with a $1.50 5-minute BART train that stopped at Terminal 3. The 2 ticket vending machines were often mobbed for 20 minutes. Good luck finding a live person for assistance. A hassle, but doable.</p>
<p>Today, the Caltrain connects to SFO at Millbrae with a $1.50 10-minute pointless BART train north to San Bruno BART station, followed by a 10-minute ride back south to SFO Terminal 3. The 3 ticket vending machines are often mobbed for 20 minutes. If you find a BART employee, they&#8217;ll say, &#8220;I didn&#8217;t design this system.&#8221; A nightmare in good weather, worse when it&#8217;s cold or windy.</p>
<p>I (and other passengers on the same Caltrain) missed an international flight recently because it took over 3 hours to get from San Jose Diridon station to SFO.</p>
<p>Although a taxi from central San Jose to SFO is $120, I have to consider that now if I don&#8217;t have half a day to waste on the trains. Cheaper than paying for trains that are misrouted and late and rebooking fees.</p>
<p><a href="http://www.examiner.com/a-801359~BART_to_halt_Millbrae_SFO_direct_service.html">examiner.com: BART to halt Millbrae-SFO direct service</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jebriggs.com/blog/2008/11/sfo-shuttle-nightmare/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
