<?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>WombatNation</title>
	<atom:link href="http://www.wombatnation.com/feed/rss2/" rel="self" type="application/rss+xml" />
	<link>http://www.wombatnation.com</link>
	<description>Speech Applications, Soccer, Hacking, Intellectual Property, and Incinerating Toilets</description>
	<pubDate>Sat, 05 Jul 2008 07:07:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>State of Speech Reco and Synthesis</title>
		<link>http://www.wombatnation.com/2008/07/state-of-speech-reco-and-synthesis</link>
		<comments>http://www.wombatnation.com/2008/07/state-of-speech-reco-and-synthesis#comments</comments>
		<pubDate>Sat, 05 Jul 2008 07:07:42 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[Speech]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/2008/07/state-of-speech-reco-and-synthesis</guid>
		<description><![CDATA[There&#8217;s a very detailed (and long) article on the state and future of speech recognition and speech synthesis in the New York Times from late June. Although the prognosis is not that positive, it is written almost with the challenge of a Turing test for speech recognition, i.e., a computer recognizing the semantics of human [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a very detailed (and long) article on the <a href="http://www.newyorker.com/reporting/2008/06/23/080623fa_fact_seabrook">state and future of speech recognition and speech synthesis in the New York Times</a> from late June. Although the prognosis is not that positive, it is written almost with the challenge of a Turing test for speech recognition, i.e., a computer recognizing the semantics of human speech as well as a human. Also, quite a bit of the article focuses on the detection of  type and level of emotion from a speaker&#8217;s speech.</p>
<p>The article might give a reader the impression that not much is going on with advancements in emotional speech prosody in commercially available text-to-speech engines, but anyone who has listened to <a href="http://tts.loquendo.com/ttsdemo/default.asp?page=id&#038;language=en">a demo of the Loquendo TTS engine</a> would tell you differently.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/07/state-of-speech-reco-and-synthesis/feed</wfw:commentRss>
		</item>
		<item>
		<title>Adding Newlines with sed</title>
		<link>http://www.wombatnation.com/2008/07/adding-newlines-with-sed</link>
		<comments>http://www.wombatnation.com/2008/07/adding-newlines-with-sed#comments</comments>
		<pubDate>Thu, 03 Jul 2008 23:31:05 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[Mac]]></category>

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

		<guid isPermaLink="false">http://www.wombatnation.com/2008/07/adding-newlines-with-sed</guid>
		<description><![CDATA[Not realizing there was a surfeit of newline characters in a largish mysqldump file I was analyzing, I tried to open it in TextMate. After a few minutes of listening to the hard drive in my Mac thrash away, I had to kill TextMate. One obvious solution was to split it into multiple lines, but [...]]]></description>
			<content:encoded><![CDATA[<p>Not realizing there was a surfeit of newline characters in a largish mysqldump file I was analyzing, I tried to open it in TextMate. After a few minutes of listening to the hard drive in my Mac thrash away, I had to kill TextMate. One obvious solution was to split it into multiple lines, but obviously I couldn&#8217;t use TextMate for that.</p>
<p>Fortunately, the Unix utility sed is a great tool for problems like this. My file had the character string &#8220;\n&#8221; between all the parts that were reasonable to split into separate lines. The following command did the trick:</p>
<pre>
$ cat source.txt | sed 's:\\n:\
:g' > dest.txt
</pre>
<p>First, I used the cat utility to pipe the contents of source.txt into sed. Then, I used the substitute command to replace \n (the extra backslash is needed to escape the special treatment of backslashes) with a carriage return. The \ at the end of the first line escapes the literal new line character that causes the shell to go to the next line. The g tells sed to make this substitute globally throughout the file. I then redirected the output into dest.txt.</p>
<p>Sweet, sweet, Unix.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/07/adding-newlines-with-sed/feed</wfw:commentRss>
		</item>
		<item>
		<title>Setting HTML Input Field Focus on Load</title>
		<link>http://www.wombatnation.com/2008/07/setting-html-input-field-focus-on-load</link>
		<comments>http://www.wombatnation.com/2008/07/setting-html-input-field-focus-on-load#comments</comments>
		<pubDate>Wed, 02 Jul 2008 00:04:07 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/2008/07/setting-html-input-field-focus-on-load</guid>
		<description><![CDATA[It seems pretty simple, but still far too many web sites don&#8217;t set the focus on the input field that users are most likely to type into when loading a page.
Let&#8217;s say you have a page with an HTML form with the ID login with fields named user and password. Here&#8217;s the HTML and JavaScript [...]]]></description>
			<content:encoded><![CDATA[<p>It seems pretty simple, but still far too many web sites don&#8217;t set the focus on the input field that users are most likely to type into when loading a page.</p>
<p>Let&#8217;s say you have a page with an HTML form with the ID login with fields named user and password. Here&#8217;s the HTML and JavaScript for setting the focus to the user field on page load. IE lets you get away with being a bit sloppy and not properly referencing the HTML form element, but the code below works on Firefox, Safari, and other standards-compliant browsers.</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Focus Test&lt;/title&gt;
  &lt;script&gt;
    function setFocus() {
      var loginForm = document.getElementById("login");
      if (loginForm) {
        loginForm["user"].focus();
      }
    }
  &lt;/script&gt;
&lt;/head&gt;
&lt;body onload="setFocus();"&gt;
  &lt;form id="login" method="post" action=""&gt;
    &lt;table&gt;
      &lt;tr&gt;
        &lt;td&gt;&lt;div align="left"&gt;User Name:&lt;/div&gt;&lt;/td&gt;
        &lt;td&gt;&lt;div align="left"&gt;&lt;input name="user" type="text"
            size="30" maxlength="30" tabindex="1" /&gt;&lt;/div&gt;&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
        &lt;td&gt;&lt;div align="left"&gt;Password:&lt;/div&gt;&lt;/td&gt;
        &lt;td&gt;&lt;div align="left"&gt;&lt;input name="password" type="password"
            size="30" maxlength="50" tabindex="2" /&gt;&lt;/div&gt;&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>You can prove to yourself it works <a href="http://wombatnation.com/test/focustest.html">here</a>.</p>
<p>Of course, there are lots of slight variants on this. You could give the field an ID and set the focus directly on it without getting the form first.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/07/setting-html-input-field-focus-on-load/feed</wfw:commentRss>
		</item>
		<item>
		<title>Austin Capital Metro IVR Issues</title>
		<link>http://www.wombatnation.com/2008/06/austin-capital-metro-ivr-issues</link>
		<comments>http://www.wombatnation.com/2008/06/austin-capital-metro-ivr-issues#comments</comments>
		<pubDate>Fri, 27 Jun 2008 05:38:47 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[Speech]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/2008/06/austin-capital-metro-ivr-issues</guid>
		<description><![CDATA[The Austin Capital Metro CIO deserves a lot of credit for owning up on the Austin CapMetro blog to  some major issues with their IVR applications for bus schedules, etc. It sounds like they have some grammar definition, timeout setting and confidence level setting issues with their app, though it is harder to know [...]]]></description>
			<content:encoded><![CDATA[<p>The Austin Capital Metro CIO deserves a lot of credit for owning up on the Austin CapMetro blog to  some major issues with their IVR applications for bus schedules, etc. It sounds like they have some grammar definition, timeout setting and confidence level setting issues with their app, though it is harder to know for sure without taking a look at it. I would love to help, but it depends on how they have written the app.</p>
<p>I do have to disagree with one of his <a href="http://capmetroblog.blogspot.com/2008/06/ivr-primer.html">other IVR-related posts</a> where he states that:</p>
<blockquote><p>
But when a rider calls in to find out how to get from Downtown to Highland mall in the shortest time possible, an IVR will not do a good job of handling this question (a lot of human judgment and discretion is required which an IVR just can’t muster).
</p></blockquote>
<p>You would be surprised how well a speech app can handle that kind of problem. Of course, it won&#8217;t be cheap, as you have to think through the common starting and destination points callers might use, know when to ask for more detail (downtown isn&#8217;t sufficient info for providing directions unless you are in Mayberry RFD), algorithms for computing shortest time based on the schedules, etc., but it can definitely be done. Now, there are certainly many customer service kinds of apps that are very difficult to handle with a speech app, but directions is not one of them.</p>
<p>In deciding whether it is worth building an app for this function, you have to look at the total number of minutes of calls like this being handled by live agents. If the number is low (and &#8220;low&#8221; varies with the complexity of the problem, and thus the solution cost, of course), then it may better to leave the calls to a small number of trained agents who can handle many other types of calls. But, once you want to offer this service beyond regular working hours or if you expect the call traffic for this type of call to be very spiky, it may be worth building an app to take the calls.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/06/austin-capital-metro-ivr-issues/feed</wfw:commentRss>
		</item>
		<item>
		<title>Euro 2008 Excitement</title>
		<link>http://www.wombatnation.com/2008/06/euro-2008-excitement</link>
		<comments>http://www.wombatnation.com/2008/06/euro-2008-excitement#comments</comments>
		<pubDate>Thu, 26 Jun 2008 03:17:36 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[Soccer]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/2008/06/euro-2008-excitement</guid>
		<description><![CDATA[Just finished watching Germany play Turkey in one of the semifinal matches of the Euro 2008 tournament. I enjoyed a smooth, malty Jubelfestbier from Bamberg during the match in support of Germany, though I&#8217;ve been very impressed by the Turkish team, and am sorry to see them go. They made some amazing comebacks, but time [...]]]></description>
			<content:encoded><![CDATA[<p>Just finished watching Germany play Turkey in one of the semifinal matches of the Euro 2008 tournament. I enjoyed a smooth, malty Jubelfestbier from Bamberg during the match in support of Germany, though I&#8217;ve been very impressed by the Turkish team, and am sorry to see them go. They made some amazing comebacks, but time ran out on them tonight.</p>
<p>There have been some incredibly exciting matches in this year&#8217;s tournament. From the complete domination of the Dutch over Italy and France, Turkey&#8217;s astonishing last minute heroics against the Czech Republic and Croatia, to the skillful attacking from both sides in Germany versus Portugal, it&#8217;s been a great tournament for a neutral spectator.</p>
<p>In today&#8217;s match, Germany&#8217;s Philip Lahm was burned time after time on defense, especially on the Turk&#8217;s second goal. On the other hand, the referee should have awarded the Germans a penalty kick when a Turkish defender clattered into Lahm just inside the penalty box. Instead, he didn&#8217;t even call a foul. But at the end, Lahm became the hero by scoring a brilliant goal in the last minute of regular time.</p>
<p>I would normally pick Spain to easily defeat Russia in the other semifinal (after all, they already beat them 4-1 in group play), but the Russians have pulled themselves together and are playing great soccer. This is by far the best Russian team I&#8217;ve ever seen, but I still think the Spaniards are the best team and have the best chance to win it all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/06/euro-2008-excitement/feed</wfw:commentRss>
		</item>
		<item>
		<title>Cabin Fire Photos</title>
		<link>http://www.wombatnation.com/2008/06/cabin-fire-photos</link>
		<comments>http://www.wombatnation.com/2008/06/cabin-fire-photos#comments</comments>
		<pubDate>Mon, 09 Jun 2008 06:33:20 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[Tahoe Cabin]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/?p=552</guid>
		<description><![CDATA[I finally got around to posting some photos from the epic cabin fire. Since I&#8217;m not keen on image crawlers indexing my photos, you&#8217;ll need to copy this into the location box on your browser after that http:// thingie.
www.wombatnation.com/gallery/cabin_fire/
Here&#8217;s a couple samples. The first is the fire raging full on in the attic. The silver [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got around to posting some photos from the epic cabin fire. Since I&#8217;m not keen on image crawlers indexing my photos, you&#8217;ll need to copy this into the location box on your browser after that http:// thingie.</p>
<p>www.wombatnation.com/gallery/cabin_fire/</p>
<p>Here&#8217;s a couple samples. The first is the fire raging full on in the attic. The silver bars are the reflective parts of one of the fire trucks parked out front. Thanks to the fireman, parts of the house were actually saved.</p>
<p><img src="http://www.wombatnation.com/albums/cabin_fire/Flames_Coming_from_House.sized.jpg" alt="Flames Leaping out of Attic" /></p>
<p>This is what happens if you watch too many reality shows.</p>
<p><img src="http://www.wombatnation.com/albums/cabin_fire/TV.sized.jpg" alt="Molten TV" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/06/cabin-fire-photos/feed</wfw:commentRss>
		</item>
		<item>
		<title>Disturbing Reading List Coincidences</title>
		<link>http://www.wombatnation.com/2008/06/disturbing-reading-list-coincidences</link>
		<comments>http://www.wombatnation.com/2008/06/disturbing-reading-list-coincidences#comments</comments>
		<pubDate>Thu, 05 Jun 2008 06:33:22 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[The Unusual and the Weird]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/?p=551</guid>
		<description><![CDATA[Sometimes there are obvious connections between the books I read consecutively, but I never expected a fistula-based connection. A month or so ago I finished reading the bicep builder Quicksilver (Volume One of the Baroque Cycle) by Neal Stephenson. I don&#8217;t often read 900+ page books, but this one was worth it. Not sure I [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes there are obvious connections between the books I read consecutively, but I never expected a <a href="http://en.wikipedia.org/wiki/Fistula">fistula</a>-based connection. A month or so ago I finished reading the bicep builder <a href="http://www.amazon.com/Quicksilver-Baroque-Cycle-Vol-1/dp/0060593083/wombatnation-20">Quicksilver</a> (Volume One of the Baroque Cycle) by Neal Stephenson. I don&#8217;t often read 900+ page books, but this one was worth it. Not sure I will make it through the similarly long volumes two and three, though. Life is only so long.</p>
<p>Quicksilver is a historical novel set in Europe covering a few decades around the year 1700. The Sun King, Louis XIV, plays a small, but very influential, role. <a href="http://books.google.com/books?id=GKqlad551i8C&#038;pg=RA1-PA654&#038;dq=quicksilver+purplish+swelling&#038;ei=IH9HSPOBN4fWsgOc_JHHBg&#038;sig=Tz8ewluwvNne_WrD-Tba6ojQzsQ">Louis also has an anal fistula removed</a> using state of the art medical practices for that time. That is, a <a href="http://www.uqtr.uquebec.ca/~bougaief/Elderhostel/Poeme/louis-xiv-en.html">doctor performing the operation the first time using a pair of scissors</a>. Although based on historical events, Quicksilver is, of course, fiction. The retelling of the surgery is fiction, but the actual operation really did happen.</p>
<p>Next up, I decided to read <a href="http://www.amazon.com/Stiff-Curious-Lives-Human-Cadavers/dp/0393324826/wombatnation-20">Stiff: The Curious Lives of Human Cadavers</a> by fellow Oakland resident Mary Roach. So far, I&#8217;m finding Stiff to be even more enjoyable than <a href="http://www.amazon.com/Spook-Science-Afterlife-Mary-Roach/dp/0393059626/wombatnation-20">Spook: Science Tackles the Afterlife</a>.</p>
<p>Well, stuff my mouth with biscuits if not more than <a href="http://books.google.com/books?id=8Zi3-pOWtbAC&#038;pg=PA28&#038;dq=stiff+king+of+france&#038;ei=lXtHSLHGJoKMsgOIrtm3Bg&#038;sig=FHll7kAJhAkgnGx5tTT6_ydF_iI">28 pages into Stiff I&#8217;m reading about Louis&#8217; anal fistula operation</a> again.</p>
<p>By the way, I recommend all three books. While Amazon reviewers agree with me on Stiff, Quicksilver and Spook get only 3.5 stars. Poor Neal is condemned like William Gibson to get bad reviews for not writing every book to be exactly like earlier cyberpunk novels. Spook gets dinged for making fun of the people she interviews and writes about. Excuse me, but those people are looney. I&#8217;m amazed she gave them the benefit of the doubt for more than ten minutes. I think she did a great job with the topic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/06/disturbing-reading-list-coincidences/feed</wfw:commentRss>
		</item>
		<item>
		<title>That&#8217;s not the Incinolet Burning</title>
		<link>http://www.wombatnation.com/2008/05/thats-not-the-incinolet-burning</link>
		<comments>http://www.wombatnation.com/2008/05/thats-not-the-incinolet-burning#comments</comments>
		<pubDate>Sun, 25 May 2008 05:51:45 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[Tahoe Cabin]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/?p=548</guid>
		<description><![CDATA[There was flame and smoke at our cabin in the Tahoe National Forest early this morning, and it wasn&#8217;t from the Incinolet burning off the remains of a burrito. An electrical fire in the wall upstairs resulted in about 2/3 of the cabin suffering major damage. The new part of the cabin didn&#8217;t burn, but [...]]]></description>
			<content:encoded><![CDATA[<p>There was flame and smoke at our cabin in the Tahoe National Forest early this morning, and it wasn&#8217;t from the <a href="http://www.wombatnation.com/2004/06/feel-the-burn">Incinolet burning</a> off the remains of a burrito. An electrical fire in the wall upstairs resulted in about 2/3 of the cabin suffering major damage. The new part of the cabin didn&#8217;t burn, but I suspect the smoke damage is probably pretty bad.</p>
<p>The most important thing, though, is no one was injured. My step-niece and her husband unfortunately had to be the ones up there when it happened. Nothing like arriving late at night while it&#8217;s snowing, turning on the lights, smelling that distinct ozone odor, then watching in horror as smoke and flames start coming out of the walls.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/05/thats-not-the-incinolet-burning/feed</wfw:commentRss>
		</item>
		<item>
		<title>Shiner and Independence Brewing</title>
		<link>http://www.wombatnation.com/2008/05/shiner-and-independence-brewing</link>
		<comments>http://www.wombatnation.com/2008/05/shiner-and-independence-brewing#comments</comments>
		<pubDate>Sun, 18 May 2008 07:06:36 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[Food and Drink]]></category>

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

		<guid isPermaLink="false">http://www.wombatnation.com/2008/05/shiner-and-independence-brewing</guid>
		<description><![CDATA[I have fond memories of Shiner Bock from when I lived in Austin, and I always have a bottle or two when I go back to visit my brother. I agree with Stan at Appellation Beer that while Shiner doesn&#8217;t make the greatest of beers, they are better than a lot of people give them [...]]]></description>
			<content:encoded><![CDATA[<p>I have fond memories of Shiner Bock from when I lived in Austin, and I always have a bottle or two when I go back to visit my brother. I <a href="http://appellationbeer.com/blog/a-bottle-of-shiner-used-quite-well/">agree with Stan at Appellation Beer</a> that while Shiner doesn&#8217;t make the greatest of beers, they are better than a lot of people give them credit for. I didn&#8217;t see the Helles anywhere when I was in Austin a few weeks ago. I&#8217;ll have to look for it next time.</p>
<p>The Bohemian Black Lager, which I had had before, was available at Artz Rib House. I developed an appreciation for <a href="http://en.wikipedia.org/wiki/Schwarzbier">Schwarzbiers</a> during a couple of trips to Germany. The Bohemian Black has a very nice malty flavor, but lacks somewhat the intense roasted coffee flavor of the Schwarzbiers I tried in Germany.</p>
<p>This Shiner ad that Stan linked to is also pretty great.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/6S0XIqURY3M&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/6S0XIqURY3M&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>I also went to the <a href="http://www.independencebrewing.com/">Independence Brewing</a> brewery when I was in Austin. The 1st Saturday of each month they give out free beer samples at the brewery. $5 gets you a logo pint glass, which then gets you free refills. They make very nice amber and brown ales, as well as a pale ale that sounds like it would be very similar to Sierra Nevada. I tried the Southside Special Ale and really wanted to like it, but just couldn&#8217;t get excited about it. Perhaps it was the &#8220;hint of cardamom&#8221; that was throwing me.</p>
<p>The tour was excellent and very educational, as you get to walk up close to all the brewery equipment and owner Rob will answer just about any question about how they brew their beer. Go to <a href="http://www.yelp.com/biz/el-meson-austin">El Meson</a> for lunch and then show up at Independence at about 1:15. The initial crush of people will have already gotten in and started on their first beer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/05/shiner-and-independence-brewing/feed</wfw:commentRss>
		</item>
		<item>
		<title>Peabody Hotel Orlando</title>
		<link>http://www.wombatnation.com/2008/05/peabody-hotel-orlando</link>
		<comments>http://www.wombatnation.com/2008/05/peabody-hotel-orlando#comments</comments>
		<pubDate>Fri, 16 May 2008 06:20:30 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/?p=546</guid>
		<description><![CDATA[
While in Orlando visiting a prospective client this week, I stayed at the Peabody Hotel. This chain of three hotels is famous for having ducks march down a red carpet and hop into a fountain in the morning. In the late afternoon, they hop out and head back up the red carpet to a more [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://static.flickr.com/3020/2492415342_4c56c647ac.jpg?v=0" alt="Roof of Peabody Hotel Orlando" width="250" align="left" vspace="5" hspace="5" />
<p>While in Orlando visiting a prospective client this week, I stayed at the Peabody Hotel. This chain of three hotels is famous for having ducks march down a red carpet and hop into a fountain in the morning. In the late afternoon, they hop out and head back up the red carpet to a more private location in the hotel.</p>
<p>In case it&#8217;s not obvious, the photo to the left is the roof of part of the hotel.</p>
<p><img src="http://static.flickr.com/3286/2495832781_72d9d45fb5.jpg?v=0" alt="Ducks on their fountain"  /></p>
<p>I had seen video footage of the ducks doing a leisurely waddle down the red carpet at the original Peabody in Memphis, but the Orlando ducks were doing something closer to running. And I swear I was not making any comments about making my famous smoked duck and andouille sausage gumbo. At least, not in a language they would have understood.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/05/peabody-hotel-orlando/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.668 seconds -->
