<?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>«leftbraned</title>
	<atom:link href="http://ronrothman.com/public/leftbraned/feed/" rel="self" type="application/rss+xml" />
	<link>http://ronrothman.com/public/leftbraned</link>
	<description>go. figure. «</description>
	<lastBuildDate>Sun, 28 Mar 2010 01:56:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Cygwin cron: Spurious Messages in Event Viewer</title>
		<link>http://ronrothman.com/public/leftbraned/cygwin-cron-spurious-messages-in-event-viewer/</link>
		<comments>http://ronrothman.com/public/leftbraned/cygwin-cron-spurious-messages-in-event-viewer/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 19:29:59 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/?p=262</guid>
		<description><![CDATA[I&#8217;ve been using Cygwin on my Windows partition to run a particular job every minute. Cron (Vixie&#8217;s cron) works perfectly, except that messages like this one were appearing (every minute!) in my Windows event log: The description for Event ID ( 0 ) in Source ( /usr/sbin/cron ) cannot be found. The local computer may [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Cygwin on my Windows partition to run a particular job every minute.  Cron (Vixie&#8217;s cron) works perfectly, except that messages like this one were appearing (every minute!) in my Windows event log:<span id="more-262"></span></p>
<p class='codeoutput'>The description for Event ID ( 0 ) in Source ( /usr/sbin/cron ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: /usr/sbin/cron: PID 3248: (ron) CMD (/usr/bin/getmail -q).</p>
<p><a href="http://support.microsoft.com/kb/294893/en-us">This Microsoft KB Bulletin</a> helps explain what the message means generally, but doesn&#8217;t help solve it in this case.</p>
<p>So, on a hunch, I started <strong>syslogd</strong> (which I had installed but never run), restarted cron, <i>et voilà</i>, problem solved.</p>
<p>Now, cron&#8217;s informational messages appear /var/log/messages, as they should, and the Windows Event Viewer&#8211;bless its little heart&#8211;has stopped whining.</p>
<p>(Note: I used syslogd from the Net/inetutils Cygwin package, but syslog-ng from Admin/syslog-ng also seems to solve the problem.)</p>
<p>Here&#8217;s a transcript that summarizes how I solved the problem:</p>
<pre class='code'>
<span class='shellprompt'>14:04:20 !598 ~></span><span class='shellinput'>cygcheck -cd | grep inetutils</span>
<span class='shelloutput'>inetutils               1.5-4</span>
<span class='shellprompt'>14:04:22 !598 ~></span><span class='shellinput'>syslogd-config</span>
<span class='shelloutput'>*** Query: Overwrite existing /etc/syslog.conf file? (yes/no) yes
*** Info: Creating default /etc/syslog.conf file

*** Warning: The following function requires administrator privileges!
*** Query: Do you want to install syslogd as service? (yes/no) yes

*** Info: The syslogd service has been installed under the LocalSystem
*** Info: account (also known as SYSTEM). To start the service now, call
*** Info: `net start syslogd' or `cygrunsrv -S syslogd'. Otherwise, it
*** Info: will start automatically after the next reboot.

*** Info: Check /etc/syslog.conf first, if it suits your needs.

*** Info: Keep in mind that any file mentioned in /etc/syslog.conf
*** Info: must exist and be readable and writable for the SYSTEM account.
*** Info: Oh and, use tabs, not spaces in /etc/syslog.conf...

Configuration finished. Have fun!</span>
<span class='shellprompt'>14:04:32 !599 ~></span><span class='shellinput'>cygrunsrv --start syslogd</span>
<span class='shellprompt'>14:05:04 !600 ~></span><span class='shellinput'>cygrunsrv --stop cron</span>
<span class='shellprompt'>14:05:12 !601 ~></span><span class='shellinput'>cygrunsrv --start cron</span>
<span class='shellprompt'>14:06:02 !602 ~></span><span class='shellinput'>tail /var/log/messages</span>
<span class='shelloutput'>Aug 30 14:05:03 blake syslogd: PID 6048: `syslogd' service started
Aug 30 14:05:14 blake /usr/sbin/cron: PID 1596: (CRON) STARTUP (V5.0)
Aug 30 14:05:15 blake cron: PID 1100: `cron' service started
Aug 30 14:06:01 blake /usr/sbin/cron: PID 5792: (ron) CMD (/usr/bin/getmail -q)</span>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/cygwin-cron-spurious-messages-in-event-viewer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fixing minidom.toprettyxml&#8217;s Silly Whitespace</title>
		<link>http://ronrothman.com/public/leftbraned/xml-dom-minidom-toprettyxml-and-silly-whitespace/</link>
		<comments>http://ronrothman.com/public/leftbraned/xml-dom-minidom-toprettyxml-and-silly-whitespace/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 08:21:52 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[minidom]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[white space]]></category>
		<category><![CDATA[whitespace]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/?p=252</guid>
		<description><![CDATA[Python&#8217;s xml.dom.minidom.toprettyxml has a feature/flaw that renders it useless for many common applications. Someone was kind enough to post a hack which works around the problem. That hack had a small bug, which I&#8217;ve fixed; you&#8217;ll find the revised code below. UPDATED Forget the hack; I&#8217;ve found another, better solution. See below. And please leave [...]]]></description>
			<content:encoded><![CDATA[<p>Python&#8217;s xml.dom.minidom.toprettyxml has a feature/flaw that renders it useless for many common applications.<br />
<span id="more-252"></span></p>
<p><span style='text-decoration: line-through;'>Someone was kind enough to post a hack which works around the problem.  That hack had a small bug, which I&#8217;ve fixed; you&#8217;ll find the revised code below.</span></p>
<p><span class="newButton">UPDATED</span> Forget the hack; I&#8217;ve found another, better solution.  See <a href="#best-solution">below</a>.  And please <a href="#commentform">leave a comment</a> if you find these workarounds helpful, or if you come across a better solution.</p>
<p><span class="newButton">METAUPDATE</span> Since writing this post, I&#8217;ve started using <a href="http://codespeak.net/lxml/">lxml</a> for all my xml processing Python.  Incidentally, it fixes the pretty printing problem with toprettyxml, but the actual reason I switched was for performance: lxml parses xml significantly faster (an order of magnitude faster) than minidom.  So my new recommendation is: consider using lxml instead of minidom.</p>
<h3>The Problem</h3>
<p>First, a short summary of the problem.  (Other descriptions can be found <a href="http://groups.google.com/group/comp.lang.python/browse_thread/thread/fe11b9ba4d3b0120">here</a> and <a href="http://www.velocityreviews.com/forums/t541462-toprettyxml-messes-up-with-whitespaces.html">here</a>.)  Feel free to jump ahead to all the <a href="#workarounds">workarounds</a>, or straight to my <a href="#best-solution">solution of choice</a>. </p>
<p>toprettyxml adds <strong>extra white space</strong> when printing the contents of text nodes.  This may not sound like a serious drawback, but it is.  Consider a simple xml snippet:</p>
<pre class='codeoutput' style='width: 40%'>
&lt;Author&gt;Ron Rothman&lt;/Author&gt;
</pre>
<p>This Python script:</p>
<pre class='code'>
<span class='comment'># python 2.4</span>
import xml.dom.minidom as dom
myText = '''&lt;Author&gt;Ron Rothman&lt;/Author&gt;'''
print xml.dom.minidom.parseString(myText).toprettyxml()
</pre>
<p>generates this output:</p>
<pre class='codeoutput' style='width: 40%'>
<span style="color: #aaa">&lt;?xml version="1.0" ?&gt;</span>
&lt;Author&gt;
        Ron Rothman
&lt;/Author&gt;
</pre>
<p>Note the extra line breaks: the text &#8220;Ron Rothman&#8221; is printed on its own line, and indented.  That may not matter much to a human reading the output, but it sure as hell matters to an XML parser.  (Recall: <a href="http://www.oracle.com/technology/pub/articles/wang-whitespace.html">whitespace <em>is significant</em> </a> in XML)</p>
<p>To put it another way: the DOM object that represents the output (with line breaks) is NOT identical to the DOM object that represented the input.</p>
<p>Semantically, the author in the original XML is <code>&quot;Ron Rothman&quot;</code>, but the author in the &#8220;pretty&#8221; XML is [approximately] <code>&quot;&nbsp;&nbsp;&nbsp;&nbsp;Ron Rothman&nbsp;&nbsp;&nbsp;&nbsp;&quot;</code>.</p>
<p>This is devastating news to anyone who hopes to re-parse the &#8220;pretty&#8221; XML in some other context.  It means that <strong>you can&#8217;t use minidom.toprettyxml() to produce XML that will be parsed downstream</strong>.</p>
<p><a name='workarounds'></a></p>
<h3>Workarounds</h3>
<p><span class="newButton">UPDATED</span> If you&#8217;re in a rush, skip ahead to the <a href="#best-solution">best solution</a>, #4.</p>
<div class="callout1 callout-r">
<div class="inner" style='text-align: left;'>
Sidebar: Things that <em>don&#8217;t</em> solve the problem:</p>
<ul>
<li>normalize()</li>
<li>calling toprettyxml with &#8220;creative&#8221; (non-default) parameters</li>
</ul>
</div>
</div>
<h4>1. Don&#8217;t use minidom</h4>
<p>There are plenty of other XML packages to choose from.<br />
<strong>But</strong>: minidom is appealing because it&#8217;s lightweight, and is included with the Python distribution.  Seems a shame to toss it for just one flaw.<br />
<span class="newButton">UPDATE</span>I&#8217;ve started using <a href="http://codespeak.net/lxml/">lxml</a> and I highly recommend it as a replacement for minidom or PyXML.</p>
<h4>2. Use minidom, but don&#8217;t use toprettyxml()</h4>
<p>Use minidom.toxml(), which doesn&#8217;t suffer from the same problem (because it doesn&#8217;t insert any whitespace).<br />
<strong>But</strong>: Your machine-readable XML will make heads spin, should someone be foolish enough to try to read it.</p>
<h4>3. Hack toprettyxml to do The Right Thing</h4>
<p>Replace toprettyxml by using the code below.<br />
<strong>But</strong>: It smells.  Like a hack.  Fragile; likely to break with future releases of minidom.<br />
On the other hand: It&#8217;s not <em>that</em> bad.  And hey, it does the trick.  (But YMMV.)</p>
<pre class='code'>
def fixed_writexml(self, writer, indent=&quot;&quot;, addindent=&quot;&quot;, newl=&quot;&quot;<!-- html comment to prevent wordpress from inserting emoticon -->):
    # indent = current indentation
    # addindent = indentation to add to higher levels
    # newl = newline string
    writer.write(indent+&quot;<&quot; + self.tagName)

    attrs = self._get_attributes()
    a_names = attrs.keys()
    a_names.sort()

    for a_name in a_names:
        writer.write(&quot; %s=\&quot;&quot; % a_name)
        <span style='color: #cc3;'>xml.dom.minidom.</span>_write_data(writer, attrs[a_name].value)
        writer.write(&quot;\&quot;&quot;<!-- html comment to prevent wordpress from inserting emoticon -->)
    if self.childNodes:
        <span style='color: #cc3;'>if len(self.childNodes) == 1 \
          and self.childNodes[0].nodeType == xml.dom.minidom.Node.TEXT_NODE:
            writer.write(&quot;&gt;&quot;<!-- html comment to prevent wordpress from inserting emoticon -->)
            self.childNodes[0].writexml(writer, &quot;&quot;, &quot;&quot;, &quot;&quot;<!-- html comment to prevent wordpress from inserting emoticon -->)
            writer.write(&quot;&lt;/%s&gt;%s&quot; % (self.tagName, newl))
            return</span>
        writer.write(&quot;&gt;%s&quot;%(newl))
        for node in self.childNodes:
            node.writexml(writer,indent+addindent,addindent,newl)
        writer.write(&quot;%s&lt;/%s&gt;%s&quot; % (indent,self.tagName,newl))
    else:
        writer.write(&quot;/&gt;%s&quot;%(newl))
<span style='color: #cc3;'># replace minidom's function with ours
xml.dom.minidom.Element.writexml = fixed_writexml</span>
</pre>
<p>I just copied the original toprettyxml code from <code>/usr/lib/python2.4/xml/dom/minidom.py</code> and made the modifications that are highlighted in <span style='background: #000; color: #cc3;'>yellow</span>.  It ain&#8217;t pretty, but it seems to work.  (Suggestions for improvements (I&#8217;m a Python n00b) are welcome.)</p>
<p>[Credit to <a href="http://www.gamedev.net/community/forums/topic.asp?topic_id=497185">Oluseyi at gamedev.net</a> for the original hack; I just fixed it so that it worked with character entities.]</p>
<p><a name='best-solution'></a></p>
<h4><span class="newButton" style="margin-left: 0;">UPDATE!</span> 4. Use xml.dom.ext.PrettyPrint</h4>
<p>Who knew?  All along, an alternative to toprettyxml was available to me.  Works like a charm.  Robust.  100% Kosher Python.  Definitely the method I&#8217;ll be using.<br />
<strong>But</strong>: Need to have PyXML installed.  In my case, it was already installed, so this is my method of choice.  (It&#8217;s worth pointing out that if you already have PyXML installed, you might want to consider using it exclusively, in lieu of minidom.)</p>
<p>We just write a simple wrapper, and we&#8217;re done:</p>
<pre class='code'>
from xml.dom.ext import PrettyPrint
from StringIO import StringIO

def toprettyxml_fixed (node, encoding='utf-8'):
    tmpStream = StringIO()
    PrettyPrint(node, stream=tmpStream, encoding=encoding)
    return tmpStream.getvalue()
</pre>
<h3>Conclusion</h3>
<p>One lesson from all this: TMTOWTDI applies to more than just Perl. <img src='http://ronrothman.com/public/leftbraned/smilies/yahoo_smiley.gif' alt='&#58;&#41;' class='wp-smiley' width='18' height='18' title='&#58;&#41;' /></p>
<p>Please&#8211;<a href="#commentform">let me know</a> what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/xml-dom-minidom-toprettyxml-and-silly-whitespace/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>2 Become 3</title>
		<link>http://ronrothman.com/public/leftbraned/2-become-3/</link>
		<comments>http://ronrothman.com/public/leftbraned/2-become-3/#comments</comments>
		<pubDate>Sat, 03 May 2008 03:46:16 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/2-become-3</guid>
		<description><![CDATA[&#8220;Leo loves you.&#8221;]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;">
<a href="http://ronrothman.com/gallery/2-become-3"><img style="border: 2px solid #f00;" alt='&quot;click me!&quot;' title='&quot;click me!&quot;' src="http://ronrothman.com/public/albums/2-become-3/IMG_1976.thumb.jpg"/></a><br />
&#8220;Leo loves you.&#8221;
</div>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/2-become-3/feed/</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
		<item>
		<title>It&#8217;s a Boy!</title>
		<link>http://ronrothman.com/public/leftbraned/its-a-boy/</link>
		<comments>http://ronrothman.com/public/leftbraned/its-a-boy/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 05:15:32 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[custom build]]></category>
		<category><![CDATA[custom computer]]></category>
		<category><![CDATA[PC]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/its-a-boy</guid>
		<description><![CDATA[Please welcome our newest family member, Blake, into the world. Blake was born in our home at 3:12 AM on March 3rd, 2008, weighing 35 pounds, 2 ounces. The labor was long&#8211;almost 45 hours&#8211;but father and baby are now doing just fine. I&#8217;d like to thank Blake&#8217;s godparents, Blaise T. and Jake H., without whom [...]]]></description>
			<content:encoded><![CDATA[<p>Please welcome our newest family member, <strong>Blake</strong>, into the world.<br />
<span id="more-250"></span></p>
<p><img width='200' height='150' alt='Blake at 1 hour old' title='Blake at 1 hour old' class='paraleft' style='margin-right: 10px;' src='/public/img/lb/IMG_9715th.jpg'/>Blake was born in our home at 3:12 AM on March 3rd, 2008, weighing 35 pounds, 2 ounces.</p>
<p>The labor was long&#8211;almost 45 hours&#8211;but father and baby are now doing just fine.</p>
<p style='clear: both;'>I&#8217;d like to thank Blake&#8217;s godparents, Blaise T. and Jake H., without whom Blake could not have been, um, conceived.</p>
<h3>Additional Stats</h3>
<table class='table02'>
<tr>
<td>case</td>
<td>Antec <a href="http://www.antec.com/us/productDetails.php?ProdID=18500">Solo</a> Black/Silver Steel ATX Mid Tower</td>
</tr>
<tr>
<td>power supply</td>
<td>Nexus <a href="http://www.nexustek.nl/nx8040_80plus_modular_silent_power_supply.htm">NX-8040</a> 80 Plus Efficiency 400 Watt Silent PSU</td>
</tr>
<tr>
<td>motherboard</td>
<td>Gigabyte <a href="http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=2745">GA-P35-DS4</a> Rev. 2.1 LGA 775 Intel P35 ATX Ultra Durable II</td>
</tr>
<tr>
<td>CPU</td>
<td>Intel Core 2 Quad Q6600 <a href="http://www.tomshardware.com/2006/09/10/four_cores_on_the_rampage/">Kentsfield</a> 2.4GHz 2 x 4MB L2 Cache LGA 775 Quad-Core</td>
</tr>
<tr>
<td>RAM</td>
<td>4GB G.Skill 2x2GB PC2-6400 DDR2</td>
</tr>
<tr>
<td>graphics</td>
<td>Asus <a href="http://www.asus.com/products.aspx?l1=2&#038;l2=6&#038;l3=515&#038;l4=0&#038;model=1644&#038;modelmenu=2">EN8500GT</a> GeForce 8500GT 512MB 128-bit GDDR3 PCI Express x16 HDCP</td>
</tr>
<tr>
<td>storage</td>
<td>2x Seagate Barracuda 7200.11 <a href="http://www.seagate.com/ww/v/index.jsp?vgnextoid=c89ef141e7f43110VgnVCM100000f5ee0a0aRCRD&#038;locale=en-US">ST3500320AS</a> 500GB 7200 RPM 32MB Cache SATA</td>
</tr>
<tr>
<td>CD/DVD</td>
<td>Sony NEC Optiarc 20X DVD Burner with LightScribe Black SATA</td>
</tr>
<tr>
<td>case fan (rear)</td>
<td>Nexus 120mm Nexus Quiet Case Fan w/Fan Mounts</td>
</tr>
<tr>
<td>case fan (front)</td>
<td>2x Nexus 92mm Nexus Real Silent Case Fan w/Fan Mounts</td>
</tr>
<tr>
<td>CPU fan</td>
<td>Zalman Ultra Quiet CPU Cooler <a href="http://www.zalman.com/ENG/product/Product_Read.asp?idx=155">CNPS7700</a>-AlCu</td>
</tr>
</table>
<h3>The Birth Story</h3>
<p>For the most part, things went smoothly.  Notable exceptions:</p>
<ol>
<li>
<p>The first time I powered up, the mobo lights came on, fans started spinning, and&#8230; nothing else.  No beeps.  No POST.   [Feeling of dread setting in.]</p>
<p>After several hours and much head scratching, it turned out that the CPU wasn&#8217;t seated properly in its socket.  Discovered this incidentally, after, out of desperation, I dis- and re-assembled the CPU/fan assembly.</p>
</li>
<li><img width='150' height='114' alt='BSOD' class='paraleft' style='margin-right: 10px;' src='/public/img/lb/IMG_9737crth.jpg'/>
<p>Got BSOD during Windows XP install, even after loading the RAID driver (jraid.sys) from floppy.</p>
<p>Turns out that the BSOD was caused by my premature BIOS tweaking.  I had set the SATA mode (Intel ICH9R Southbridge) to AHCI.  Restoring the default (Disabled) solved the problem.</p>
<p>[NOTE: A floppy drive is <em>required</em> to install Windows XP on a RAID volume.  Stupid Windows installer assumes that a floppy drive will be present; the installer has no other way of loading the RAID driver.  Shortsighted design.]</p>
</li>
<li>
<p>Installed Windows XP, then got BSOD during subsequent reboots.  The crash happened a few seconds after Windows log-on.  Turned out to be <a href="http://www.techspot.com/vb/topic96571.html">ASUS SmartDoctor</a>.  Booted Windows in safe mode, uninstalled the offending software, and things went smoothly from there.</p>
</li>
</ol>
<h3>Internet Sources</h3>
<div style='float: left; margin-right: 35px;'>
<p>Research:</p>
<ul>
<li><a href="http://anandtech.com/">AnandTech</a></li>
<li><a href="http://www.silentpcreview.com/">Silent PC Review</a></li>
<li><a href="http://tomshardware.com/">Tom&#8217;s Hardware</a></li>
<li><a href="http://www.hardwaresecrets.com/">Hardware Secrets</a></li>
<li><a href="http://techgage.com/article/intel_core_2_quad_q6600/">Techgage</a></li>
<li><a href="http://www.pcstats.com/articleview.cfm?articleid=2185&#038;page=15">PCSTATS</a></li>
</ul>
</div>
<div>
<p>Vendors:</p>
<ul>
<li><a href="http://www.newegg.com/">Newegg.com</a></li>
<li><a href="http://www.endpcnoise.com/">Endpcnoise.com</a></li>
<li><a href="http://www.computerpartsusa.com/">Computer Parts USA</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/its-a-boy/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Is Home Birth Courageous?</title>
		<link>http://ronrothman.com/public/leftbraned/is-home-birth-courageous/</link>
		<comments>http://ronrothman.com/public/leftbraned/is-home-birth-courageous/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 06:59:47 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Says Me]]></category>
		<category><![CDATA[childbirth]]></category>
		<category><![CDATA[home birth]]></category>
		<category><![CDATA[homebirth]]></category>
		<category><![CDATA[midwife]]></category>
		<category><![CDATA[midwives]]></category>
		<category><![CDATA[pregnancy]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/is-home-birth-courageous</guid>
		<description><![CDATA[It&#8217;s funny. I&#8217;ve recently been told&#8212;by more than one person&#8212;that Sara and I are &#8220;brave&#8221; for planning to deliver our baby at home. This from people who are educated, intelligent and have my respect. And yet, they couldn&#8217;t have picked a worse way to characterize the decision. What&#8217;s going on here? Read on, and then [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap1">I</span>t&#8217;s funny.  I&#8217;ve recently been told&#8212;by more than one person&#8212;that Sara and I are &#8220;brave&#8221; for planning to deliver our baby at home.  This from people who are educated, intelligent and have my respect.  And yet, they couldn&#8217;t have picked a worse way to characterize the decision.  What&#8217;s going on here?</p>
<p>Read on, and then you tell me: isn&#8217;t it actually more courageous for a low risk mother-to-be to voluntarily <em>walk into a hospital</em> to give birth?<br />
<span id="more-247"></span><br />
First, let me point out that:</p>
<ol>
<li>&#8220;Home birth&#8221; means <em>planned</em> home birth.  The process starts at home, but in those cases where a doctor&#8217;s intervention is warranted, the mother is taken to a nearby hospital.</li>
<li>A planned home birth is <em>attended</em> by a qualified, certified midwife.</li>
<li>In this article, I&#8217;m simply answering the question, &#8220;<em>Isn&#8217;t home birth unsafe?</em>&#8221;  I won&#8217;t focus on &#8220;Why is home birth better?&#8221;</li>
</ol>
<h3>Q.  Isn&#8217;t hospital birth safer?</h3>
<p><span class="dropcap2">A.</span> No.  If you&#8217;re a good candidate for home birth (and the majority of women are), then a planned, attended home birth is as safe, or safer, than a hospital birth.</p>
<h3>Q.  Come on, how can a hospital <em>not</em> be safer?</h3>
<p><span class="dropcap2">A.</span> Surprisingly easily.</p>
<p>If you&#8217;re giving birth and you&#8217;re low-risk, then <em>simply checking into a hospital</em> greatly increases the likelihood of unnecessary interventions&#8211;pitocin drip, epidural, episiotomy, cesarean section, et al.&#8211;with no corresponding increase in safety for mother or baby.</p>
<p>I can also tell you this: my home is more sanitary (with respect to virulent infectious agents) than the cleanest hospital maternity ward <a class="reference" href="#references">[11]</a>.</p>
<h3>Q.  How do you know that home birth safe?</h3>
<p><span class="dropcap2">A.</span> Evidence.  Sara has searched through the medical literature, and every relevant study she has found has shown that home birth is as safe, or safer than, hospital birth.  See references below.</p>
<p>The upshot of the research <a class="reference" href="#references">[1]</a> is this:</p>
<blockquote class="cite1"><p>Planned home birth for low risk women in North America using certified professional midwives was associated with lower rates of medical intervention but similar intrapartum and neonatal mortality to that of low risk hospital births in the United States.</p></blockquote>
<h3>Q.  What if something goes wrong at home?</h3>
<p><span class="dropcap2">A.</span> First of all, it&#8217;s worth noting that in the majority of cases, nothing goes wrong.  <em>Expecting</em> that things will go wrong just isn&#8217;t rational.  On the other hand, <em>preparing</em> for things that might go wrong, even if they&#8217;re unlikely, is wise.</p>
<p>Certified nurse midwives are trained, equipped and experienced at solving the most common (and remember, &#8220;common&#8221; is relative) problems.  They&#8217;ll bring with them, into our home, oxygen, pitocin, resuscitation equipment, etc.  Using instruments identical to those used in a hospital, they can stop hemorrhaging, perform an episiotomy, stitch tears, etc., as needed.</p>
<p>And, of course, a trained, experienced midwife will know if you need emergency intervention (e.g., cesarean), and in that case she will get you to the hospital and have the staff prepped and ready to receive you once you arrive.</p>
<p>Also, it&#8217;s important to note that you&#8217;re more likely to have one of these problems just by being in a hospital; birthing at home <u>reduces</u> the likelihood of many of them in the first place:</p>
<blockquote class="cite1"><p>
A study by Mehl compared a group of 1046 women giving birth at home with 1046 women having hospital births and found <a class="reference" href="#references">[8]</a>:</p>
<ul>
<li>9 times as many episiotomies</li>
<li>15 times as many women receiving analgesia or anaesthesia</li>
<li>3 times as many caesareans</li>
<li>2 times as many forceps deliveries</li>
<li>3 times as many postpartum haemorhages</li>
<li>3.7 times as many babies requiring resuscitation</li>
<li>newborn infection rates 3 times higher</li>
<li>respiratory distress 17 times higher</li>
<li>lower Apgar scores</li>
<li><strong>mortality figures were the same for both groups.</strong></li>
</ul>
</blockquote>
<h3>Q.  But I heard a horror story about a home birth&#8230;</h3>
<p><span class="dropcap2">A.</span> I&#8217;ve heard and read lots of scary anecdotes about both home birth and hospital birth.  At the end of the day, my decision is driven by <em>evidence</em>, not anecdote.</p>
<h3>Q.  Midwives??  Aren&#8217;t <em>obstetricians</em> the experts at delivering babies?</h3>
<p><span class="dropcap2">A.</span> In some deliveries, yes.  Obstetricians are trained as <em>surgeons</em>, so that they can c-section a woman who needs drastic intervention.  Consequently, that&#8217;s what they&#8217;re best at.  But most women do not need a cesarean, and in that majority of cases, going to a surgeon may not (and often does not) provide the best outcome.  (Part of a &#8220;good outcome&#8221; is avoiding a c-section unless it&#8217;s truly necessary.  Some are necessary; most are not.)</p>
<p>Certified nurse midwives, on the other hand, are trained to handle healthy, normal births, including several types of non-drastic interventions.  This is their expertise.  They make sure that things are progressing properly, and know when to transfer you to the hospital if an obstetrician&#8217;s expertise is indicated.</p>
<h3>Sidebar: &#8220;<em>My</em> c-section was necessary.&#8221;</h3>
<p>Okay, yours may have been.  But most c-sections that take place (yes, the majority of them) are necessitated by earlier &#8220;routine&#8221; interventions, which, in many cases, were not required in the first place.  Henci Goer describes this &#8220;cascade effect&#8221; clearly <a class="reference" href="#references">[3]</a>:</p>
<blockquote class="cite1"><p>Every intervention into the normal process [of labor] introduces risks as well as benefits&#8230;.  When intervening becomes routine, meaning there is no reason for it, only risks remain.  Moreover, because one intervention tends to lead to another, it produces a &#8220;cascade effect.&#8221;</p>
<p>So, for example, <strong>electronic fetal monitoring</strong> confines women to bed, which may slow labor.  Doctors may then give <strong>oxytocin</strong>, which increases pain, causing women to want an <strong>epidural</strong>.  The epidural may slow labor or cause abnormal heart rate patterns, ending the cascade in a <strong>cesarean</strong> section for poor progress or fetal distress.</p></blockquote>
<p>The bottom line: many c-sections <em>are made necessary</em> by the routine protocols followed by hospital practitioners. <a class="reference" href="#references">[2]</a></p>
<h3>Q.  But I had my child in a hospital, and we&#8217;re both fine.</h3>
<p><span class="dropcap2">A.</span> That&#8217;s great.  Most hospital births go well, and are safe.  (Hey, <em>I</em> was born in a hospital, and my mother says I&#8217;m perfect, so&#8230;)</p>
<h3>Q.  If home birth is so good, how come more women don&#8217;t choose it?</h3>
<p><span class="dropcap2">A.</span> You can&#8217;t choose something if you don&#8217;t know it exists.  Most of us in the U.S. (myself included) have been conditioned to go to a doctor when we get pregnant.  I didn&#8217;t know the first thing about home birth until 12 weeks into our pregnancy; and even then, I thought it sounded crazy.  That is, until I read the evidence about home births and hospital births, and their respective pros and cons, and realized that home birth was a wonderful option for us.</p>
<p>In the U.S. today, midwife-attended births are on the fringe.  Not so in other developed countries.  Holland is probably the best example of a country with a high rate of midwifery (and home births) and an excellent, low mortality rate (lower than the U.S. rate).</p>
<h3>Q.  Should <em>every</em> pregnant woman have a planned home birth?</h3>
<p><span class="dropcap2">A.</span> No.  Every woman should <em>learn about</em> the home birth option (and all other options), but home birth only makes sense for pregnancies which meet certain conditions, e.g., low risk, singleton (no twins), no breech. <a class="reference" href="#references">[4]</a> [But see <a href="#comment-3">reader comment #3</a> for an alternate opinion.]</p>
<h3>Q.  I&#8217;ve read what you&#8217;ve written.  But what if I still don&#8217;t want a home birth?</h3>
<p><span class="dropcap2">A.</span> Okay.  An informed decision&#8211;either way&#8211;is a decision well made.</p>
<h3>Conclusion</h3>
<p>In the end, it&#8217;s not the location of [a low-risk] birth that dictates how good the outcome will be; it&#8217;s who&#8217;s running the show.  The people running the show in a hospital are well-intentioned, but much more likely to take unnecessary (and unpleasant) actions.  Period.</p>
<h3><a name="references"></a>References</h3>
<ol class="referenceList">
<li><span class="referenceNumber">[1]</span> <u><a href="http://www.bmj.com/cgi/content/full/330/7505/1416?ehom">Outcomes of planned home births with certified professional midwives: large prospective study in North America</a></u>, British Medical Journal, 2005;330:1416 (18 June)</li>
<li><span class="referenceNumber">[2]</span> <u><a href="http://www.mothering.com/articles/pregnancy_birth/cesarean_vbac/cesarean-birth-in-a-culture-of-fear.html">Cesarean Birth in a Culture of Fear</a></u>, Mothering Magazine, Issue 144, September/October 2007</li>
<li><span class="referenceNumber">[3]</span>Goer, H., <u><a href="http://hencigoer.com/betterbirth/">The Thinking Woman&#8217;s Guide to a Better Birth</a></u>, Perigree, 1999</li>
<li><span class="referenceNumber">[4]</span> <a href="http://parenting.ivillage.com/pregnancy/plabor/0,,6rl1,00.html">Homebirth 101</a>, ivillage.com</li>
<li><span class="referenceNumber">[5]</span> <u><a href="http://www.bmj.com/cgi/content/abstract/313/7068/1306?ijkey=4b9c96fc1d442cb91336b9750a5b9335026135b5&#038;keytype2=tf_ipsecsha">Collaborative survey of perinatal loss in planned and unplanned home births</a></u>, BMJ 1996;313:1306-1309 (23 November) </li>
<li><span class="referenceNumber">[6]</span> <u><a href="http://www.ncbi.nlm.nih.gov/pubmed/8568573?dopt=Abstract">Outcomes of 11,788 planned home births attended by certified nurse-midwives. A retrospective descriptive study.</a></u>, J Nurse Midwifery. 1995 Nov-Dec;40(6):483-92.</li>
<li><span class="referenceNumber">[7]</span> Young, G. and Hey, E., <u><a href="http://www.bmj.com/cgi/content/full/320/7237/798">Choosing between home and hospital delivery</a></u>, BMJ 2000;320:798 (18 March 2000)</li>
<li><span class="referenceNumber">[8]</span> <u><a href="http://www.homebirth.org.uk/hbstimes.htm">Responses</a></u> to <u>Home births or hospital? It&#8217;s baby who knows best</u> by Karen Robinson, The Sunday Times (UK), 29 August 1999.</li>
<li><span class="referenceNumber">[9]</span> <u><a href="http://www.choicesinchildbirth.org/who.htm">Joint Interregional Conference on Appropriate Technology for Birth</a></u>, World Health Organization, Regional Office for Europe, April 1995</li>
<li><span class="referenceNumber">[10]</span> <u><a href="http://thelactivist.blogspot.com/2006/03/home-birth-vs-hospital-birth-issues-of.html">Home Birth vs. Hospital Birth &#8211; Issues of Responsibility</a></u>, March 2006</li>
<li><span class="referenceNumber">[11]</span> <u><a href="http://thelactivist.blogspot.com/2006/06/hospital-birth-and-risk-of-infection.html">Hospital Birth and Risk of Infection</a></u>, June 2006</li>
<li><span class="referenceNumber">[12]</span> <u><a href="http://www.childbirth.org/section/CSFact.html">Cesarean Fact Sheet</a></u>, Childbirth.org</li>
<li><span class="referenceNumber">[13]</span> <u><a href="http://www.birthinternational.com/articles/sally01.html">Normal Birth &#8211; What are the Chances?</a></u>, Sally Tracy</li>
<li><span class="referenceNumber">[14]</span> <u><a href="http://books.google.com/books?id=uQoHAAAACAAJ&#038;dq=Ina+May+Gaskin&#038;hl=en&#038;sa=X&#038;oi=book_result&#038;resnum=3&#038;ct=result">Ina May&#8217;s Guide to Childbirth</a></u>, Ina May Gaskin</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/is-home-birth-courageous/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Canada Trip: Posted</title>
		<link>http://ronrothman.com/public/leftbraned/canada-trip-posted/</link>
		<comments>http://ronrothman.com/public/leftbraned/canada-trip-posted/#comments</comments>
		<pubDate>Sun, 30 Dec 2007 18:46:11 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[Montreal]]></category>
		<category><![CDATA[Niagara Falls]]></category>
		<category><![CDATA[Ontario]]></category>
		<category><![CDATA[Quebec]]></category>
		<category><![CDATA[Toronto]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/canada-trip-posted/</guid>
		<description><![CDATA[Finally posted the itinerary and photos from our summer trip to Quebec &#038; Ontario. Activities included: Visiting friends Cycling 100 miles of scenic converted rail line Genealogy research in rural Quebec Consumption of many and varied animal parts (not to mention: chocolate, cheese, poutine, et al.) Ice wine tasting Quebecois Folk music concerts Watching Beluga [...]]]></description>
			<content:encoded><![CDATA[<p>Finally posted the <a href="http://ronrothman.com/public/canada-ontario-quebec.shtml" title="Quebec Trip">itinerary</a> and <a href="http://ronrothman.com/gallery/canada-ontario-quebec-2007">photos</a> from our summer trip to Quebec &#038; Ontario.</p>
<p>Activities included:</p>
<ul>
<li>Visiting friends</li>
<li>Cycling 100 miles of scenic converted rail line</li>
<li>Genealogy research in rural Quebec</li>
<li>Consumption of many and varied animal parts <i>(not to mention: chocolate, cheese, poutine, et al.)</i></li>
<li>Ice wine tasting</li>
<li>Quebecois Folk music concerts</li>
<li>Watching Beluga whales from the breakfast table</li>
<li><span style="text-decoration: line-through;">Niagara falls in a barrel</span></li>
</ul>
<p><a href="http://ronrothman.com/gallery/canada-ontario-quebec-2007"><img style="margin: 8px 2px 0 2px; border: 1px solid red;" alt="" src="http://ronrothman.com/public/albums/canada-ontario-quebec-2007/IMG_8247.thumb.jpg"/></a><a href="http://ronrothman.com/gallery/canada-ontario-quebec-2007"><img style="margin: 8px 2px 0 2px; border: 1px solid red;" alt="" src="http://ronrothman.com/public/albums/canada-ontario-quebec-2007/IMG_8300ed.thumb.jpg"/></a><a href="http://ronrothman.com/gallery/canada-ontario-quebec-2007"><img style="margin: 8px 2px 0 2px; border: 1px solid red;" alt="" src="http://ronrothman.com/public/albums/canada-ontario-quebec-2007/IMG_7618.thumb.jpg"/></a><a href="http://ronrothman.com/gallery/canada-ontario-quebec-2007"><img style="margin: 8px 2px 0 2px; border: 1px solid red;" alt="" src="http://ronrothman.com/public/albums/canada-ontario-quebec-2007/IMG_8635ed.thumb.jpg"/></a><a href="http://ronrothman.com/gallery/canada-ontario-quebec-2007"><img style="margin: 8px 2px 0 2px; border: 1px solid red;" alt="" src="http://ronrothman.com/public/albums/canada-ontario-quebec-2007/IMG_8642.thumb.jpg"/></a><a href="http://ronrothman.com/gallery/canada-ontario-quebec-2007"><img style="margin: 8px 2px 0 2px; border: 1px solid red;" alt="" src="http://ronrothman.com/public/albums/canada-ontario-quebec-2007/IMG_8711.thumb.jpg"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/canada-trip-posted/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Baby Name Brainstorm</title>
		<link>http://ronrothman.com/public/leftbraned/baby-name-brainstorm/</link>
		<comments>http://ronrothman.com/public/leftbraned/baby-name-brainstorm/#comments</comments>
		<pubDate>Sat, 08 Dec 2007 17:21:18 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/baby-name-brainstorm/</guid>
		<description><![CDATA[It&#8217;s not easy coming up with names, so you take inspiration wherever you can find it. Lunesta Cymbalta Strattera Zetia Chantix (Chanti) Rozerem (Roz) Humira Boniva (Bonnie) Zyprexa Actos Crestor Zelnorm (Norm) Vytorin Caduet Actonel]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not easy coming up with names, so you take inspiration wherever you can find it.</p>
<table style="border: 2px solid black; background-color: #fffbe6;">
<tr>
<td width='50%' style='color: #b08; border: 1px solid black; padding: 8px; vertical-align: top;'>
Lunesta<br />
Cymbalta<br />
Strattera<br />
Zetia<br />
Chantix (Chanti)<br />
Rozerem (Roz)<br />
Humira<br />
Boniva (Bonnie)<br />
Zyprexa
</td>
<td width='50%' style='color: #00b; border: 1px solid black; padding: 8px; vertical-align: top;'>
Actos<br />
Crestor<br />
Zelnorm (Norm)<br />
Vytorin<br />
Caduet<br />
Actonel
</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/baby-name-brainstorm/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>CSA Inventory, Week 10</title>
		<link>http://ronrothman.com/public/leftbraned/csa-inventory-week-10/</link>
		<comments>http://ronrothman.com/public/leftbraned/csa-inventory-week-10/#comments</comments>
		<pubDate>Thu, 09 Aug 2007 02:35:39 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Food]]></category>
		<category><![CDATA[community supported agriculture]]></category>
		<category><![CDATA[CSA]]></category>
		<category><![CDATA[local food]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/csa-inventory-week-10/</guid>
		<description><![CDATA[Produce Roundup This week&#8217;s vegetables. (Click for larger view.) Fresh, organic and local. $12. This week&#8217;s take: Roma tomatoes: 5 lbs. cherry tomatoes: 2 lbs. heirloom tomatoes: 4 lbs. cucumbers: 7 bell peppers: 3 purple, 2 green summer squash: 4lbs. eggplants: 2 Japanese eggplants: 5 red potatoes: 2 lbs. onions: 1 lb. leeks: 1 bunch [...]]]></description>
			<content:encoded><![CDATA[<h3>Produce Roundup</h3>
<div style="float: right; width: 180px; text-align: center;"><a href="http://ronrothman.com/gallery/misc/IMG_7054ed"><img style="border: 1px solid black;" src="http://ronrothman.com/public/albums/misc/IMG_7054ed.thumb.jpg" alt="fresh fruits and vegetables" /></a><br/>
<div style="text-align: center;">This week&#8217;s vegetables.  <span style="font-size: 85%;">(Click for <a href="http://ronrothman.com/gallery/misc/IMG_7054ed">larger view</a>.)</span></div>
</div>
<p>Fresh, organic and local.  $12.</p>
<p>This week&#8217;s take:<br />
<span id="more-242"></span></p>
<ul class="condensed">
<li>Roma tomatoes: 5 lbs.</li>
<li>cherry tomatoes: 2 lbs.</li>
<li>heirloom tomatoes: 4 lbs.</li>
<li>cucumbers: 7</li>
<li>bell peppers: 3 purple, 2 green</li>
<li>summer squash: 4lbs.</li>
<li>eggplants: 2</li>
<li>Japanese eggplants: 5</li>
<li>red potatoes: 2 lbs.</li>
<li>onions: 1 lb.</li>
<li>leeks: 1 bunch</li>
<li>lettuce (Boston): 2 heads</li>
<li>basil</li>
</ul>
<p>Not the most bountiful week so far, but not too shabby either.</p>
<h3>Value Analysis</h3>
<table class="table01" cellspacing="0">
<tr>
<th>Product</th>
<th>Quantity</th>
<th>Retail Price <br />(Organic)</th>
<th>Retail Price <br />(Conventional)</th>
</tr>
<tr>
<td>Roma tomatoes</td>
<td>5 lbs.</td>
<td style="text-align: right">$14.95</td>
<td style="text-align: right">$9.95</td>
</tr>
<tr>
<td>cherry tomatoes</td>
<td>3 pints (2 lbs.?)</td>
<td style="text-align: right">$7.98</td>
<td style="text-align: right">$4.98</td>
</tr>
<tr>
<td>heirloom tomatoes</td>
<td>4 lbs.</td>
<td style="text-align: right">$11.96</td>
<td style="text-align: right">-</td>
</tr>
<tr>
<td>cucumbers</td>
<td>7</td>
<td style="text-align: right">-</td>
<td style="text-align: right">$5.53</td>
</tr>
<tr>
<td>bell peppers</td>
<td>3 purple, 2 green</td>
<td style="text-align: right">$7.98</td>
<td style="text-align: right">$6.85</td>
</tr>
<tr>
<td>summer squash</td>
<td>4 lbs. (5)</td>
<td style="text-align: right">-</td>
<td style="text-align: right">$3.95</td>
</tr>
<tr>
<td>eggplants</td>
<td>2</td>
<td style="text-align: right">$4.98</td>
<td style="text-align: right">$2.98</td>
</tr>
<tr>
<td>Japanese eggplants</td>
<td>5</td>
<td style="text-align: right">-</td>
<td style="text-align: right">-</td>
</tr>
<tr>
<td>red potatoes</td>
<td>2 lbs. (4)</td>
<td style="text-align: right">-</td>
<td style="text-align: right">$1.96</td>
</tr>
<tr>
<td>onions</td>
<td>1 lb.</td>
<td style="text-align: right">$2.33</td>
<td style="text-align: right">$1.99</td>
</tr>
<tr>
<td>leeks</td>
<td>1 bunch</td>
<td style="text-align: right">-</td>
<td style="text-align: right">$1.99</td>
</tr>
<tr>
<td>lettuce (Boston)</td>
<td>2 heads</td>
<td style="text-align: right">-</td>
<td style="text-align: right">$3.98</td>
</tr>
<tr>
<td>basil</td>
<td>all-you-can-pick; <br />we took 1 bunch</td>
<td style="text-align: right">$2.69</td>
<td style="text-align: right">$2.69</td>
</tr>
<tr>
<th colspan="2" style="text-align: right;">Total <span style="color: #d00;">(remember, we paid $12)</span></th>
<th style="text-align: right;">$66.33+</th>
<th style="text-align: right;">$58.81+</th>
</tr>
</table>
<p style="font-size: 75%;">Source: <a href="http://peapod.com">Peapod.com</a>, 8-Aug-2007</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/csa-inventory-week-10/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip: Epilogue</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-epilogue/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-epilogue/#comments</comments>
		<pubDate>Tue, 16 Jan 2007 22:09:47 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/16/southeast-asia-trip-epilogue/</guid>
		<description><![CDATA[We&#8217;re back home. (Boo.) We&#8217;ll post our photos as soon as we sort through [all 1500 of] them. Update: the photos have been posted.]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re back home.  (Boo.)</p>
<p>We&#8217;ll post our photos as soon as we sort through [all 1500 of] them.</p>
<div style="width: 66%; padding: 4px; border: 1px solid maroon; background-color: #fed;">Update: the photos have been <a href="http://ronrothman.com/gallery/southeast-asia-2006">posted</a>.</div>
<p><a href="http://ronrothman.com/gallery/southeast-asia-2006"><img style="margin: 4px; border: 1px solid red;" alt="" src="http://ronrothman.com/public/albums/thailand-2006/i1308_thailand.thumb.jpg"/></a><a href="http://ronrothman.com/gallery/southeast-asia-2006"><img style="margin: 4px; border: 1px solid red;" alt="" src="http://ronrothman.com/public/albums/laos-0607/i1491_laos.thumb.jpg"/></a><br />
<a href="http://ronrothman.com/gallery/southeast-asia-2006"><img style="margin: 4px; border: 1px solid red;" alt="" src="http://ronrothman.com/public/albums/cambodia-2007/i1923_cambodia.thumb.jpg"/></a><a href="http://ronrothman.com/gallery/southeast-asia-2006"><img style="margin: 4px; border: 1px solid red;" alt="" src="http://ronrothman.com/public/albums/thailand-2007/i2308_thailand.thumb.jpg"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-epilogue/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 29: Leaving Khao Lak</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-29-leaving-khao-lak/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-29-leaving-khao-lak/#comments</comments>
		<pubDate>Sun, 14 Jan 2007 16:00:37 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/14/southeast-asia-trip-day-29-leaving-khao-lak/</guid>
		<description><![CDATA[Heading to Phuket airport now. A mere 32 hours after we board our plane (Phuket -> Bangkok -> Tokyo -> JFK), we&#8217;ll be back in snowy New York. For this final travelblog entry, I wish I could write something witty or amusing. But ending our trip has me so bummed that all I have to [...]]]></description>
			<content:encoded><![CDATA[<p>Heading to Phuket airport now.  A mere 32 hours after we board our plane (Phuket -> Bangkok -> Tokyo -> JFK), we&#8217;ll be back in snowy New York.</p>
<p>For this final travelblog entry, I wish I could write something witty or amusing.  But ending our trip has me so bummed that all I have to say is: it&#8217;s been a magnificent month.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-29-leaving-khao-lak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 28: Khao Lak</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-28-khao-lak/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-28-khao-lak/#comments</comments>
		<pubDate>Sun, 14 Jan 2007 04:50:12 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/13/southeast-asia-trip-day-28-khao-lak/</guid>
		<description><![CDATA[Today&#8217;s plan is to: have breakfast on our private veranda beachcomb bask by the pool eat as much coconut ice cream as possible get a beachside Thai massage order fruit drinks by the coconut-full lament that this is our last day here]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s plan is to:</p>
<ol>
<li>have breakfast on our private <a href="http://ronrothman.com/gallery/thailand-2007/i2426_thailand">veranda</a></li>
<li><a href="http://ronrothman.com/gallery/thailand-2007/i2389_thailand">beachcomb</a></li>
<li>bask by the pool</li>
<li>eat as much <a href="http://ronrothman.com/gallery/thailand-2007/i2417_thailand">coconut ice cream</a> as possible</li>
<li>get a beachside Thai massage</li>
<li>order <a href="http://ronrothman.com/gallery/thailand-2007/i2308_thailand">fruit drinks</a> by the coconut-full</li>
<li>lament that this is our last day here</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-28-khao-lak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 27: Khao Lak (Similan Islands)</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-27-khao-lak-similan-islands/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-27-khao-lak-similan-islands/#comments</comments>
		<pubDate>Sat, 13 Jan 2007 04:43:59 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/12/southeast-asia-trip-day-27-khao-lak-similan-islands/</guid>
		<description><![CDATA[We snorkeled the Similan Islands today. Remarkably, the breathtaking underwater landscape we saw (heaps of beautifully colored fish and coral) really did resemble the glossy posters in the tour company&#8217;s sales office!]]></description>
			<content:encoded><![CDATA[<p>We <a href="http://ronrothman.com/gallery/thailand-2007/i2332_thailand">snorkeled</a> the <a href="http://ronrothman.com/gallery/thailand-2007/i2358_thailand">Similan Islands</a> today.  Remarkably, the breathtaking underwater landscape we saw (heaps of beautifully colored fish and coral) really did resemble the glossy posters in the tour company&#8217;s sales office!</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-27-khao-lak-similan-islands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 26: Khao Lak</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-26-khao-lak/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-26-khao-lak/#comments</comments>
		<pubDate>Fri, 12 Jan 2007 04:35:58 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/11/southeast-asia-trip-day-26-khao-lak/</guid>
		<description><![CDATA[Traveler&#8217;s Tip of the Day: When getting your hair cut in Thailand, don&#8217;t ask for it to be cut &#8220;short.&#8221;]]></description>
			<content:encoded><![CDATA[<p>Traveler&#8217;s Tip of the Day: When getting your hair cut in Thailand, don&#8217;t ask for it to be cut &#8220;short.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-26-khao-lak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 25: Khao Sok to Khao Lak</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-25-khao-sok-to-khao-lak/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-25-khao-sok-to-khao-lak/#comments</comments>
		<pubDate>Thu, 11 Jan 2007 04:58:41 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/10/southeast-asia-trip-day-25-khao-sok-to-khao-lak/</guid>
		<description><![CDATA[After a few more hours of kayaking this morning (had some great wildlife sightings), we headed to Khao Lak for the final leg of our trip. We&#8217;re now at a 5-star resort just north of town, on a sparsely populated tract of white-sand beach. The contrast from last night is stark&#8211;we no longer need a [...]]]></description>
			<content:encoded><![CDATA[<p>After a few more hours of <a href="http://ronrothman.com/gallery/thailand-2007/i2234_thailand">kayaking</a> this morning (had some great wildlife sightings), we headed to Khao Lak for the final leg of our trip.  We&#8217;re now at a <a href="http://ronrothman.com/gallery/thailand-2007/i2314_thailand">5-star resort</a> just north of town, on a sparsely populated tract of <a href="http://ronrothman.com/gallery/thailand-2007/i2393_thailand">white-sand beach</a>.  The contrast from last night is stark&#8211;we no longer need a flashlight to get to the bathroom.  And instead of last night&#8217;s rudimentary, cold-water shower, we&#8217;ve got a teak-and-slate-appointed bathroom with a 2-person tub and 2 shower heads.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-25-khao-sok-to-khao-lak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 24: Khao Sok National Park</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-24-khao-sok-national-park/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-24-khao-sok-national-park/#comments</comments>
		<pubDate>Wed, 10 Jan 2007 01:58:12 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/09/southeast-asia-trip-day-24-khao-sok-national-park/</guid>
		<description><![CDATA[Besides kayaking, we&#8217;ve been doing some trekking here. Today&#8217;s hike was through a deep limestone cave, through which two different streams run. Thousands of bats, dozens of cave crickets, several large spiders, a few cave toads, and water deeper than our heads. At some points, I had to swim with one hand, trying to keep [...]]]></description>
			<content:encoded><![CDATA[<p>Besides <a href="http://ronrothman.com/gallery/thailand-2007/i2129_thailand">kayaking</a>, we&#8217;ve been doing some trekking here.  Today&#8217;s hike was through a deep limestone <a href="http://ronrothman.com/gallery/thailand-2007/i2184_thailand">cave</a>, through which two different streams run.  Thousands of bats, dozens of cave crickets, several <strong>large</strong> spiders, a few cave toads, and water deeper than our heads.  At some points, I had to swim with one hand, trying to keep my other hand above the water (in that hand were: my [non-waterproof] flashlight, and our drybag, which held our [non-waterproof] camera.)</p>
<p>Definitely one of our trip highlights.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-24-khao-sok-national-park/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 23: Khao Sok National Park</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-23-khao-sok-national-park/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-23-khao-sok-national-park/#comments</comments>
		<pubDate>Tue, 09 Jan 2007 01:54:37 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/08/southeast-asia-trip-day-23-khao-sok-national-park/</guid>
		<description><![CDATA[Today we arrived at our quaint &#8220;floating bungalow&#8221; in the remotest corner of Khao Sok national park. This is the third bamboo bungalow we&#8217;re staying at on this trip&#8211;and not the only one that hasn&#8217;t been on solid ground.]]></description>
			<content:encoded><![CDATA[<p>Today we arrived at our quaint &#8220;<a href="http://ronrothman.com/gallery/thailand-2007/i2122_thailand">floating bungalow</a>&#8221; in the remotest corner of <a href="http://ronrothman.com/gallery/thailand-2007/i2077_thailand">Khao Sok</a> national park.  This is the third bamboo bungalow we&#8217;re staying at on this trip&#8211;and not the only one that hasn&#8217;t been on solid ground.  <img src='http://ronrothman.com/public/leftbraned/smilies/yahoo_neutral.gif' alt='&#58;&#45;&#124;' class='wp-smiley' width='18' height='18' title='&#58;&#45;&#124;' /></p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-23-khao-sok-national-park/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 22: Siem Reap to Phuket</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-22-siem-reap-to-phuket/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-22-siem-reap-to-phuket/#comments</comments>
		<pubDate>Mon, 08 Jan 2007 04:52:07 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/07/southeast-asia-trip-day-22-siem-reap-to-phuket/</guid>
		<description><![CDATA[When we checked in for our flight to Phuket, the boarding passes which were printed had the wrong destination on them. No problem; the check-in attendant just crossed out the wrong destination and wrote in the correct one. I considered crossing that out in turn and writing &#8220;Hawaii&#8221; instead, but Sara convinced me that it [...]]]></description>
			<content:encoded><![CDATA[<p>When we checked in for our flight to Phuket, the boarding passes which were printed had the wrong destination on them.  No problem; the check-in attendant just crossed out the wrong destination and wrote in the correct one.  I considered crossing that out in turn and writing &#8220;Hawaii&#8221; instead, but Sara convinced me that it wouldn&#8217;t work.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-22-siem-reap-to-phuket/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 21: Siem Reap (Preak Toal)</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-21-siem-reap-preak-toal/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-21-siem-reap-preak-toal/#comments</comments>
		<pubDate>Sat, 06 Jan 2007 13:45:23 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/06/southeast-asia-trip-day-21-siem-reap-preak-toal/</guid>
		<description><![CDATA[I spent the day at the Preak Toal bird sanctuary. (Or, more accurately, I spent the day traveling to and from the Preak Toal bird Sanctuary today.) Sara was sick, so I went alone, and alone I was: the only other visitors were a group of Cambodian university students on a science class field trip. [...]]]></description>
			<content:encoded><![CDATA[<p>I spent the day at the <a href="http://ronrothman.com/gallery/cambodia-2007/i2016_cambodia">Preak Toal</a> bird sanctuary.  (Or, more accurately, I spent the day <em>traveling to and from</em> the Preak Toal bird Sanctuary today.)  Sara was sick, so I went alone, and alone I was: the only other visitors were a group of Cambodian university students on a science class field trip.</p>
<p>A very expensive, long day.  I&#8217;m glad I went, but I wouldn&#8217;t necessarily recommend it to serious birders.  (More on this when we get back and flesh out our travelogue.)</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-21-siem-reap-preak-toal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 20: Siem Reap (Angkor Wat)</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-20-siem-reap-angkor-wat/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-20-siem-reap-angkor-wat/#comments</comments>
		<pubDate>Sat, 06 Jan 2007 04:44:47 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/05/southeast-asia-trip-day-20-siem-reap-angkor-wat/</guid>
		<description><![CDATA[It was a fun day, but it&#8217;s been an unpleasant evening. Sara has some nasty food poisoning&#8211;from some jackfruit she snacked on this afternoon, we think. Doesn&#8217;t look like it&#8217;ll let up any time soon.]]></description>
			<content:encoded><![CDATA[<p>It was a fun day, but it&#8217;s been an unpleasant evening.  Sara has some nasty food poisoning&#8211;from some <a href="http://ronrothman.com/gallery/cambodia-2007/i1975_cambodia">jackfruit</a> she snacked on this afternoon, we think.  Doesn&#8217;t look like it&#8217;ll let up any time soon. <img src='http://ronrothman.com/public/leftbraned/smilies/yahoo_sad.gif' alt='&#58;&#40;' class='wp-smiley' width='18' height='18' title='&#58;&#40;' /></p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-20-siem-reap-angkor-wat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 19: Siem Reap (Angkor Wat)</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-19-siem-reap-angkor-wat/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-19-siem-reap-angkor-wat/#comments</comments>
		<pubDate>Thu, 04 Jan 2007 07:44:06 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/04/southeast-asia-trip-day-19-siem-reap-angkor-wat/</guid>
		<description><![CDATA[Last-minute change of plans this morning&#8211;we took a detour to visit Beng Mealea, the &#8220;Jungle Temple,&#8221; which was only opened to tourists in 2003 (after it was cleared of land mines). Today, with the native flora encroaching into and intertwining with the half-toppled stone structures, the temple looks like something out of an Indiana Jones [...]]]></description>
			<content:encoded><![CDATA[<p>Last-minute change of plans this morning&#8211;we took a detour to visit <a href="http://ronrothman.com/gallery/cambodia-2007/i1834_cambodia">Beng Mealea</a>, the &#8220;<a href="http://ronrothman.com/gallery/cambodia-2007/i1845_cambodia">Jungle Temple</a>,&#8221; which was only opened to tourists in 2003 (after it was cleared of land mines).  Today, with the native flora encroaching into and intertwining with the half-toppled stone structures, the temple looks like something out of an Indiana Jones or Tomb Raider movie (which, incidentally, was filmed at Angkor).</p>
<p>Sadly, though, Cambodian authorities are misguidedly clearing the jungle from the site.  What they don&#8217;t seem to understand is that the jungle they&#8217;re clearing is the very thing which gives the ruins their unique charm; when they&#8217;re done, Beng Mealea will be &#8220;just another&#8221; excavated temple on the remote outskirts of a city that certainly doesn&#8217;t need any more of them.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-19-siem-reap-angkor-wat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 18: Siem Reap (Angkor Wat)</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-18-siem-reap-angkor-wat/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-18-siem-reap-angkor-wat/#comments</comments>
		<pubDate>Wed, 03 Jan 2007 07:37:31 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/03/southeast-asia-trip-day-18-siem-reap-angkor-wat/</guid>
		<description><![CDATA[The ruins of Angkor are&#8230; overwhelming. We spent the entire day exploring it by remork (cousin of the tuk-tuk), and we&#8217;ve barely scratched the surface. The thing is, we haven&#8217;t even seen the main temple yet (which is a bit like visiting Agra and not seeing the Taj Mahal first)&#8211;we&#8217;re saving that for tomorrow, when [...]]]></description>
			<content:encoded><![CDATA[<p>The ruins of Angkor are&#8230; overwhelming.  We spent the entire day exploring it by <i>remork</i> (cousin of the <i>tuk-tuk</i>), and we&#8217;ve barely scratched the surface.  The thing is, we haven&#8217;t even seen the main temple yet (which is a bit like visiting Agra and not seeing the Taj Mahal first)&#8211;we&#8217;re saving that for tomorrow, when we&#8217;ll have an expert (and highly-recommended) local guide with us.</p>
<p>My personal highlight: the <a href="http://ronrothman.com/gallery/cambodia-2007/i1805_cambodia">Bayon</a> temple, with its 200 <a href="http://ronrothman.com/gallery/cambodia-2007/i1895_cambodia">Khmer faces</a> extruding from the sandstone walls, their smiles mysterious, beautiful and eerie.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-18-siem-reap-angkor-wat/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 17: Luang Prabang to Siem Reap</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-17-luang-prabang-to-siem-reap/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-17-luang-prabang-to-siem-reap/#comments</comments>
		<pubDate>Tue, 02 Jan 2007 16:49:02 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/02/southeast-asia-trip-day-17-luang-prabang-to-siem-reap/</guid>
		<description><![CDATA[Just arrived in Cambodia&#8211;how different from its neighbors! I&#8217;m not sure which of today&#8217;s events is more exciting: using our Cambodian e-visas (ugh, people with regular visas got through immigration faster than we did; though, presumably, they spent more time/effort getting their visas than we did&#8211;at least they better have!), or the delicious french fries [...]]]></description>
			<content:encoded><![CDATA[<p>Just arrived in Cambodia&#8211;how different from its neighbors!</p>
<p>I&#8217;m not sure which of today&#8217;s events is more exciting:</p>
<ul>
<li>using our Cambodian e-visas (ugh, people with regular visas got through immigration faster than we did; though, presumably, they spent more time/effort getting their visas than we did&#8211;at least they <em>better</em> have!), or</li>
<li>the delicious <a href="http://ronrothman.com/gallery/cambodia-2007/i1980_cambodia">french fries</a> we had with dinner.  (Indeed, we ordered french fries several times in Laos&#8211;they&#8217;re always made to order and have been invariably yummy.)</li>
</ul>
<p>(Yes, today was pretty uneventful.)</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-17-luang-prabang-to-siem-reap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 16: Nong Khiaw to Luang Prabang</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-16-nong-khiaw-to-luang-prabang/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-16-nong-khiaw-to-luang-prabang/#comments</comments>
		<pubDate>Mon, 01 Jan 2007 12:36:55 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/01/01/southeast-asia-trip-day-16-nong-khiaw-to-luang-prabang/</guid>
		<description><![CDATA[Returned to Luang Prabang today by public bus. Tomorrow, we fly to Cambodia. This afternoon, I finished reading Cambodia: Report From a Stricken Land, which almost made me cry&#8211;partly because Cambodia&#8217;s past 30 years have been so horrific, and partly because all of those horrors were man-made, and avoidable. I&#8217;m feeling emotional about visiting a [...]]]></description>
			<content:encoded><![CDATA[<p>Returned to <a href="http://ronrothman.com/gallery/laos-0607/i1575_laos">Luang Prabang</a> today by public bus.  Tomorrow, we fly to Cambodia.</p>
<p>This afternoon, I finished reading <i>Cambodia: Report From a Stricken Land</i>, which almost made me cry&#8211;partly because Cambodia&#8217;s past 30 years have been so horrific, and partly because all of those horrors were man-made, and avoidable.  I&#8217;m feeling emotional about visiting a place and a people that has suffered so much, so recently.  It&#8217;s akin to visiting someone in mourning: What do you say?  How do you act?</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-16-nong-khiaw-to-luang-prabang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 15: Nong Khiaw</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-15-nong-khiaw/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-15-nong-khiaw/#comments</comments>
		<pubDate>Mon, 01 Jan 2007 04:55:52 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/31/southeast-asia-trip-day-15-nong-khiaw/</guid>
		<description><![CDATA[Tonight, our hosts held a Basi (bah-SEE) ceremony&#8211;funded happily by us&#8211;in honor of the new year. Several of the village residents came to enjoy the eating, singing, dancing and most importantly, the drinking. We consumed large quantities of lao-lao, a Laotian home-made rice whisky not unlike moonshine. When they asked us to sing a song [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight, our hosts held a <i><a href="http://ronrothman.com/gallery/laos-0607/i1670_laos">Basi</a></i> (bah-SEE) ceremony&#8211;funded happily by us&#8211;in honor of the new year.  Several of the village residents came to enjoy the eating, <a href="http://ronrothman.com/gallery/laos-0607/i1695_laos">singing</a>, dancing and most importantly, the <em><a href="http://ronrothman.com/gallery/laos-0607/i1666_laos">drinking</a></em>.  We consumed large quantities of <i><a href="http://ronrothman.com/gallery/laos-0607/i1678_laos">lao-lao</a></i>, a Laotian home-made rice whisky not unlike moonshine.</p>
<p>When they asked us to sing a song of our own, we were somewhat at a loss.  We chose to perform <i>Ose Shalom</i> and <i>The Irish Rover</i>&#8230;.  not exactly representative of American music.  We think it confused them.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-15-nong-khiaw/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 14: Luang Prabang to Nong Khiaw</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-14-luang-prabang-to-nong-khiaw/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-14-luang-prabang-to-nong-khiaw/#comments</comments>
		<pubDate>Sat, 30 Dec 2006 12:06:36 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2007/12/30/southeast-asia-trip-day-14-luang-prabang-to-nong-khiaw/</guid>
		<description><![CDATA[Today we headed north for a two-day stay in Nong Khiaw, via a 6-hour boat ride on the scenic, blue Nam Ou river. Our hosts in Nong Khiaw arranged the ride for us; this morning, they sent their friend to walk us from our hotel to the dock. A &#8220;gourmet homemade lunch&#8221; was to be [...]]]></description>
			<content:encoded><![CDATA[<p>Today we headed north for a two-day stay in <a href="http://ronrothman.com/gallery/laos-0607/i1641_laos">Nong Khiaw</a>, via a 6-hour boat ride on the scenic, blue <a href="http://ronrothman.com/gallery/laos-0607/i1634_laos">Nam Ou</a> river.</p>
<p>Our hosts in Nong Khiaw arranged the ride for us; this morning, they sent their friend to walk us from our hotel to the dock.  A &#8220;gourmet homemade lunch&#8221; was to be included with the ride, and our escort handed us 3 plastic bags as we boarded the small boat.</p>
<p>In one bag was a pair of sandwiches (baguette sandwiches are a popular street food in Luang Prabang).  In the second bag, two containers of fried rice.  In the third, a pastry box from &#8220;Joma,&#8221; the local fancy coffee shop and bakery (think Starbucks).</p>
<p>We thought, &#8220;This lunch sure is eclectic.  But gourmet and homemade, it ain&#8217;t.&#8221;  Disappointed but hungry, we dug in.  First the sandwiches, then the fried rice.  (Actually, the food wasn&#8217;t all that bad; we&#8217;d just expected (and paid for) more.)</p>
<p>Finally, we peered into the pastry box.  <em>Four</em> large muffins.  &#8220;Wow, how much do they think we eat?&#8221; we thought.  But Americans do (justly) have a reputation for overeating, so we didn&#8217;t think much of it.</p>
<p>I had a taste of muffin, and while I didn&#8217;t really care for the muffin body, the chocolate chips on top satisfied the one craving I&#8217;ve been having on this trip&#8211;cocoa.  Sara didn&#8217;t want any, so muffin by helpless muffin, I scraped the chips off the top and shoved them into my mouth.  When the &#8220;Muffin Massacre of the Nam Ou&#8221; (as they call it locally) was over, we left the decapitated muffin stumps in the box, closed it up, and put it back into the plastic bag for disposal when we reached Nong Khiaw.</p>
<p>We arrived, were greeted, and had a lovely and very memorable stay with our hosts, Marko and Chan.  But more on that in our travelogue, after we get home.  The salient point here is that, when we arrived, all of our bags (including the plastic bags) were carried off the boat for us.  Our luggage turned up in our bungalow; the plastic bags (quite expectedly) did not.</p>
<p>At dinner this evening, Marko and Chan were talking about their favorite Luang Prabang eateries.  Then they mentioned Joma&#8211;home of their &#8220;<em>favorite</em> chocolate muffins.&#8221;  They told us how whenever they can, they have their friend send them a box of those muffins from Luang Prabang.  (Oops.)</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-14-luang-prabang-to-nong-khiaw/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 13: Luang Prabang</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-13-luang-prabang/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-13-luang-prabang/#comments</comments>
		<pubDate>Sat, 30 Dec 2006 04:52:13 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/29/southeast-asia-trip-day-13-luang-prabang/</guid>
		<description><![CDATA[More cinnamon buns for breakfast. (Doubled up this time&#8211;bought two. ) Had a very Seinfeldian moment. I was negotiating with a boatman for passage across the Mekong river (we wanted to take a short hike to an underground cave temple), and when all was said and done, we were paying more for the ride than [...]]]></description>
			<content:encoded><![CDATA[<p>More <a href="http://ronrothman.com/gallery/laos-0607/i1715_laos">cinnamon buns</a> for breakfast.  (Doubled up this time&#8211;bought two. <img src='http://ronrothman.com/public/leftbraned/smilies/yahoo_pig.gif' alt='&#58;&#64;&#41;' class='wp-smiley' width='18' height='18' title='&#58;&#64;&#41;' /> )</p>
<p>Had a very Seinfeldian moment.  I was negotiating with a boatman for passage across the Mekong river (we wanted to take a short hike to an <a href="http://ronrothman.com/gallery/laos-0607/i1596_laos">underground cave temple</a>), and when all was said and done, we were paying <em>more</em> for the ride than he initially offered.  (I&#8217;m usually an effective negotiator&#8211;ask Sara or Danielle; but dealing in three currencies&#8211;Lao kip, Thai bhat, and U.S. dollar, all three of which are readily and interchangeably used here&#8211;tripped me up!)</p>
<p>P.S., Today we were able to post a random handful of our <a href="http://ronrothman.com/gallery/southeast-asia-2006">trip photos</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-13-luang-prabang/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 12: Luang Prabang</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-12-luang-prabang/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-12-luang-prabang/#comments</comments>
		<pubDate>Thu, 28 Dec 2006 16:30:01 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/28/southeast-asia-trip-day-12-luang-prabang/</guid>
		<description><![CDATA[Woke up early (6am) to see the &#8220;Saffron Circuit:&#8221; the striking procession of Louang Prabang&#8217;s 500 orange-robed monks as they walk through the Old City to collect their day&#8217;s food from local residents. But my true motivation for getting up early was the freshly baked cinnamon bun I devoured after the monks&#8217; morning ritual. Best [...]]]></description>
			<content:encoded><![CDATA[<p>Woke up early (6am) to see the &#8220;<a href="http://ronrothman.com/gallery/laos-0607/i1483_laos">Saffron Circuit</a>:&#8221; the striking procession of Louang Prabang&#8217;s 500 <a href="http://ronrothman.com/gallery/laos-0607/i1491_laos">orange-robed monks</a> as they walk through the Old City to collect their day&#8217;s food from local residents.</p>
<p>But my true motivation for getting up early was the freshly baked cinnamon bun I devoured after the monks&#8217; morning ritual.  Best cinnamon bun I&#8217;ve ever had&#8211;ever.  (Perhaps the one benefit of Laos&#8217;s French occupation.)</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-12-luang-prabang/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 11: En Route to Luang Prabang</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-11-en-route-to-luang-prabang/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-11-en-route-to-luang-prabang/#comments</comments>
		<pubDate>Wed, 27 Dec 2006 09:49:36 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/27/southeast-asia-trip-day-11-en-route-to-luang-prabang/</guid>
		<description><![CDATA[We got married (again) on the picturesque Mekong river today. (I would marry Sara every day if I could.)]]></description>
			<content:encoded><![CDATA[<p>We got married (again) on the picturesque <a href="http://ronrothman.com/gallery/laos-0607/i1419_laos">Mekong river</a> today.  (I would marry Sara every day if I could.)</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-11-en-route-to-luang-prabang/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 10: Crossing Into Laos</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-10-crossing-into-laos/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-10-crossing-into-laos/#comments</comments>
		<pubDate>Tue, 26 Dec 2006 09:31:58 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/26/southeast-asia-trip-day-10-crossing-into-laos/</guid>
		<description><![CDATA[We bade good-bye to our lovely new friends, Charlie and Chris, drove to Chiang Khong and crossed into Laos. Our first observation about the country: that the tourists here are generally much more fit and attractive than those in Thailand. (Chris and Charlie are a noteworthy exception.) Had a long conversation with the interesting couple [...]]]></description>
			<content:encoded><![CDATA[<p>We bade good-bye to our lovely new friends, Charlie and Chris, drove to Chiang Khong and crossed into Laos.  Our first observation about the country: that the tourists here are generally much more fit and attractive than those in Thailand.  (Chris and Charlie are a noteworthy exception.)</p>
<p>Had a long conversation with the interesting couple (Regina and Manfred from Austria) staying in the next bungalow; apparently, Austrians are very upset that the death penalty exists in the U.S.  And as the four of us were talking out on our porch, a young blond woman with European looks walked past, heard part of our conversation, exclaimed, &#8220;Americans are bad!&#8221; and went into her bungalow.  How shameful, silly and closed-minded.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-10-crossing-into-laos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 9: Ban Thaton</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-9-ban-thaton/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-9-ban-thaton/#comments</comments>
		<pubDate>Mon, 25 Dec 2006 12:17:35 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/25/southeast-asia-trip-day-9-ban-thaton/</guid>
		<description><![CDATA[We love it here in Thaton. It&#8217;s quite cold at night (but warm during the day), so today we visited the &#8220;Monday Market,&#8221; where I bought a fleece jacket. I think it&#8217;s quite fashionable; Sara thinks it makes me look like a Vietnamese rice farmer. (Photo forthcoming.)]]></description>
			<content:encoded><![CDATA[<p>We love it here in Thaton.  It&#8217;s quite cold at night (but warm during the day), so today we visited the &#8220;Monday Market,&#8221; where I bought a fleece jacket.  I think it&#8217;s quite fashionable; Sara thinks it makes me look like a Vietnamese rice farmer.  (Photo forthcoming.)</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-9-ban-thaton/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 8: En Route to Thaton</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-8-en-route-to-thaton/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-8-en-route-to-thaton/#comments</comments>
		<pubDate>Sun, 24 Dec 2006 12:11:30 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/24/southeast-asia-trip-day-8-en-route-to-thaton/</guid>
		<description><![CDATA[Today&#8217;s lunch was at the all-you-can-eat buffet at the local orchid farm.]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s lunch was at the all-you-can-eat buffet at the local <a href="http://ronrothman.com/gallery/thailand-2006/i1229_thailand">orchid farm</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-8-en-route-to-thaton/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 7: Last Day in Chiang Mai</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-7-last-day-in-chiang-mai/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-7-last-day-in-chiang-mai/#comments</comments>
		<pubDate>Sat, 23 Dec 2006 12:08:49 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/23/southeast-asia-trip-day-7-last-day-in-chiang-mai/</guid>
		<description><![CDATA[I spent today sick in bed. Danielle and Sara spent the day sightseeing and shopping, and discovered that everyone is much nicer to them when I&#8217;m not present. (But maybe that&#8217;s because they overpaid for everything. )]]></description>
			<content:encoded><![CDATA[<p>I spent today sick in bed.  Danielle and Sara spent the day sightseeing and shopping, and discovered that everyone is much nicer to them when I&#8217;m not present. <img src='http://ronrothman.com/public/leftbraned/smilies/yahoo_neutral.gif' alt='&#58;&#45;&#124;' class='wp-smiley' width='18' height='18' title='&#58;&#45;&#124;' />  (But maybe that&#8217;s because they overpaid for everything. <img src='http://ronrothman.com/public/leftbraned/smilies/yahoo_tongue.gif' alt='&#58;&#45;&#80;' class='wp-smiley' width='18' height='18' title='&#58;&#45;&#80;' /> )</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-7-last-day-in-chiang-mai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 6: Chiang Mai</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-6-chiang-mai/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-6-chiang-mai/#comments</comments>
		<pubDate>Fri, 22 Dec 2006 11:56:49 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/22/southeast-asia-trip-day-6-chiang-mai/</guid>
		<description><![CDATA[Despite it feeling like &#8220;DisneyWat,&#8221; we really enjoyed seeing the mountain temple at Doi Suthep. But today&#8217;s highlight was actually the banana waffle I ate at the bottom of the temple. We also inadvertantly pissed off a few locals today, by overpaying for the sangtheaw (small public bus) the were in. This had the unfortunate [...]]]></description>
			<content:encoded><![CDATA[<p>Despite it feeling like &#8220;DisneyWat,&#8221; we really enjoyed seeing the mountain temple at <a href="http://ronrothman.com/gallery/thailand-2006/i1100_thailand">Doi Suthep</a>.  But today&#8217;s highlight was actually the banana waffle I ate at the bottom of the temple.</p>
<p>We also inadvertantly pissed off a few locals today, by overpaying for the sangtheaw (small public bus) the were in.  This had the unfortunate and undesried effect of making the driver take a circuitous , &#8220;scenic&#8221; route (to make us think we&#8217;d gotten our money&#8217;s worth, I presume).  The passengers started to wonder about the unusual (and inconvenient) route, and we could hear their agitation without understanding their words.  They figured out that we were the culprits when we stopped the sangtheaw and paid&#8230; we heard them saying &#8220;fa-rong&#8221; as they rolled their eyes.  (<i>Fa-rong</i> literally means &#8220;guava,&#8221; but it&#8217;s slang for an occidental.  And we&#8217;re still not sure whether it&#8217;s derogatory.)</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-6-chiang-mai/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 5: Chiang Dao Day Trip</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-5-chiang-dao-day-trip/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-5-chiang-dao-day-trip/#comments</comments>
		<pubDate>Thu, 21 Dec 2006 11:56:44 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/25/southeast-asia-trip-day-5-chiang-dao-day-trip/</guid>
		<description><![CDATA[On our way down the mountain (Doi Chiang Dao), we passed a small Thai military convoy headed up to destroy some nearby opium farms. The army driver stopped us to ask for directions, and our guide told them the way. (I didn&#8217;t ask how he knew the exact location of the opium fields. )]]></description>
			<content:encoded><![CDATA[<p>On our way down the mountain (Doi Chiang Dao), we passed a small Thai military convoy headed up to destroy some nearby opium farms.  The army driver stopped us to ask for directions, and our guide told them the way.  (I didn&#8217;t ask how he knew the exact location of the opium fields. <img src='http://ronrothman.com/public/leftbraned/smilies/yahoo_eyebrow.gif' alt='&#47;&#58;&#41;' class='wp-smiley' width='18' height='18' title='&#47;&#58;&#41;' /> )</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-5-chiang-dao-day-trip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 4: Chiang Mai</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-4-chiang-mai/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-4-chiang-mai/#comments</comments>
		<pubDate>Wed, 20 Dec 2006 12:07:21 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/20/southeast-asia-trip-day-4-chiang-mai/</guid>
		<description><![CDATA[Lunch today: best food of the trip, so far. Khao Soi is a Northern Thai specialty consisting of a curry coconut milk broth with egg noodles and chicken, topped with crispy dried noodles. We visited several of Chiang Mai&#8217;s temples today, and Danielle realized why velcro shoes are the footwear of choice for Wat-hopping. (Untie [...]]]></description>
			<content:encoded><![CDATA[<p>Lunch today: best food of the trip, so far.  <i><a href="http://ronrothman.com/gallery/thailand-2006/i0938_thailand">Khao Soi</a></i> is a Northern Thai specialty consisting of a curry coconut milk broth with egg noodles and chicken, topped with crispy dried noodles.</p>
<p>We visited several of Chiang Mai&#8217;s temples today, and Danielle realized why velcro shoes are the footwear of choice for Wat-hopping.  (<em>Untie laces</em>, remove shoes, enter temple, leave temple, put on shoes, <em>tie laces</em>, repeat.)</p>
<p>Epilogue: We finally had <a href="http://ronrothman.com/gallery/thailand-2006/i1006_thailand">good pad Thai</a>.  As with all things, &#8220;If you want it done right, do it yourself.&#8221;  With the help of <a href="http://www.alotofthai.com/">Yui</a>&#8211;our <a href="http://ronrothman.com/gallery/thailand-2006/i0994_thailand">Thai cooking</a> instructor and a veritible wok guru&#8211;we learned how to cook pad Thai, <a href="http://ronrothman.com/gallery/thailand-2006/i1017_thailand">tom kha kai</a>, <a href="http://ronrothman.com/gallery/thailand-2006/i1025_thailand">panaeng curry</a> and <a href="http://ronrothman.com/gallery/thailand-2006/i1026_thailand">green curry</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-4-chiang-mai/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 3: Bangkok</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-3-bangkok/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-3-bangkok/#comments</comments>
		<pubDate>Tue, 19 Dec 2006 12:00:11 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/19/southeast-asia-trip-day-3-bangkok/</guid>
		<description><![CDATA[Spent the day with our guide, Tong, who was every bit as wonderful as we&#8217;d expected. She made an indelible impression on us, taught us more about Buddhism and Thailand than we could ever hope to remember, and gave us a day full of memories. We also made an impression on her. Apparently, I&#8217;m the [...]]]></description>
			<content:encoded><![CDATA[<p>Spent the day with our guide, <a href="http://ronrothman.com/gallery/thailand-2006/i0804_thailand">Tong</a>, who was every bit as wonderful as we&#8217;d expected.  She made an indelible impression on us, taught us more about Buddhism and Thailand than we could ever hope to remember, and gave us a day full of memories.</p>
<p>We also made an impression on her.  Apparently, I&#8217;m the first person ever to ask about the shoes that the giant <a href="http://ronrothman.com/gallery/thailand-2006/i0894_thailand">reclining Buddha of Wat Pho</a> was wearing.  As it turns out, the Buddha never wears shoes.  Ever.  And, Thais seem to find it amusing as hell if you think that he did.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-3-bangkok/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 2: Bangkok</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-2-bangkok/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-2-bangkok/#comments</comments>
		<pubDate>Mon, 18 Dec 2006 11:54:05 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/18/southeast-asia-trip-day-2-bangkok/</guid>
		<description><![CDATA[Spent today exploring the city. I bought (and wore) a bright yellow shirt today, bearing the King&#8217;s crest and some other symbols which I hope don&#8217;t say &#8220;Kick Me&#8221; in Thai. Follow the logic of this purchase: The King of Thailand (King Rama IX) was born on a Monday Monday&#8217;s color is&#8230; yellow. Every Monday, [...]]]></description>
			<content:encoded><![CDATA[<p>Spent today exploring the city.  I bought (and wore) a bright <a href="http://ronrothman.com/gallery/thailand-2006/i0129_thailand">yellow shirt</a> today, bearing the King&#8217;s crest and some other symbols which I hope don&#8217;t say &#8220;Kick Me&#8221; in Thai.  Follow the logic of this purchase:</p>
<ul>
<li>The King of Thailand (King Rama IX) was born on a Monday</li>
<li>Monday&#8217;s color is&#8230; yellow.</li>
<li>Every Monday, most Thais wear yellow in honor of their king.</li>
<li>I prefer to blend in seamlessly when I travel.</li>
<li>I did not bring a yellow shirt with me.</li>
<li>Ergo, I had to buy the yellow shirt.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-2-bangkok/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip, Day 1: Bangkok</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-1-bangkok/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-1-bangkok/#comments</comments>
		<pubDate>Sun, 17 Dec 2006 11:52:37 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/17/southeast-asia-trip-day-1-bangkok/</guid>
		<description><![CDATA[Didn&#8217;t sleep. The 22-hour flight has worn us down, and our very first sight in Thailand was the chaotic Weekend Market. (Relaxing, it ain&#8217;t.) Tonight&#8217;s dinner gets filed under &#8220;Unsuccessful International Dining.&#8221; We went to a highly recommended pad Thai restaurant&#8211;it was bustling with locals (only) so our hopes were high. Alas, not only have [...]]]></description>
			<content:encoded><![CDATA[<p>Didn&#8217;t sleep.  The 22-hour flight has worn us down, and our very first sight in Thailand was the chaotic Weekend Market.  (Relaxing, it ain&#8217;t.)</p>
<p>Tonight&#8217;s dinner gets filed under &#8220;Unsuccessful International Dining.&#8221;  We went to a highly recommended pad Thai restaurant&#8211;it was bustling with locals (only) so our hopes were high.  Alas, not only have we had better pad Thai at home, but every dish we ordered had shrimp <em>and</em> prawns in it, which, between the 3 of us, we don&#8217;t like / don&#8217;t eat / are allergic to.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-day-1-bangkok/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southeast Asia Trip: Intro</title>
		<link>http://ronrothman.com/public/leftbraned/southeast-asia-trip-intro/</link>
		<comments>http://ronrothman.com/public/leftbraned/southeast-asia-trip-intro/#comments</comments>
		<pubDate>Fri, 15 Dec 2006 16:36:06 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/12/15/southeast-asia-trip-intro/</guid>
		<description><![CDATA[Greetings from Thailand! We&#8217;ve just arrived in Ban Thaton, an absolutely lovely little town on the Thai-Burmese border, and we finally find ourselves with enough time to log an entry here. To keep the friction low, my goal is modest: a three-sentence blog entry each day we&#8217;re here. I&#8217;ll try to make daily updates, but [...]]]></description>
			<content:encoded><![CDATA[<p>Greetings from Thailand!  We&#8217;ve just arrived in <a href="http://ronrothman.com/gallery/thailand-2006/i1262_thailand">Ban Thaton</a>, an absolutely lovely little town on the Thai-Burmese border, and we finally find ourselves with enough time to log an entry here.  To keep the friction low, my goal is modest: a three-sentence blog entry each day we&#8217;re here.  I&#8217;ll try to make daily updates, but they may appear in batches&#8230; hope you enjoy!</p>
<p>P.S., Hi Danielle! <img src='http://ronrothman.com/public/leftbraned/smilies/yahoo_smiley.gif' alt='&#58;&#41;' class='wp-smiley' width='18' height='18' title='&#58;&#41;' /></p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/southeast-asia-trip-intro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Travel Insurance Is Looking Good</title>
		<link>http://ronrothman.com/public/leftbraned/travel-insurance-is-looking-good/</link>
		<comments>http://ronrothman.com/public/leftbraned/travel-insurance-is-looking-good/#comments</comments>
		<pubDate>Fri, 03 Nov 2006 13:40:48 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/11/03/travel-insurance-is-looking-good/</guid>
		<description><![CDATA[You know you&#8217;re in for an &#8220;exciting&#8221; vacation when&#8230; &#8220;The thin helmets and pitiful life jackets&#8230; would have done nothing in the case of high speed impact at full throttle, which we came close to more than once.&#8221; &#8211;technotrekker, Death Boats Down the Mekong &#8230;you call a renowned travel clinic to schedule inoculations for your [...]]]></description>
			<content:encoded><![CDATA[<p>You know you&#8217;re in for an &#8220;exciting&#8221; vacation when&#8230;<br />
<span id="more-208"></span></p>
<div class="callout1 callout-l" style="margin-right: 3em;">
<div class="inner">
&#8220;The thin helmets and pitiful life jackets&#8230; would have done nothing in the case of high speed impact at full throttle, which we came close to more than once.&#8221;
<div class="attribution">&#8211;technotrekker, <a href="http://www.travelpod.com/cgi-bin/guest.pl?tweb_UID=technotrekker&#038;tweb_tripID=overland05&#038;tweb_entryID=1131371160&#038;tweb_PID=tpod">Death Boats Down the Mekong</a></div>
</div>
</div>
<ul>
<li>&#8230;you call a renowned travel clinic to schedule inoculations for your upcoming trip to Thailand, Laos and Cambodia, and the nurse asks, &#8220;Is that spelled L-A-U-S?&#8221;
</li>
<li>&#8230;on web pages that list <a href="http://www.travmed.com/maps/country.epl?c=Laos">travel hazards</a>, they don&#8217;t simply say &#8220;leeches;&#8221; it&#8217;s &#8220;<em>large</em> leeches:&#8221;<br />
<blockquote><p>
Animal Hazards: Animal hazards [in Laos] include snakes (cobras, vipers), spiders (black and brown widow), tigers, leopards, and <strong>large leeches</strong>.
</p></blockquote>
</li>
<li>&#8230;new research indicates that <a href="http://en.wikipedia.org/wiki/Elephant#Elephant_rage">some elephants</a>&#8211;one of the planned highlights of your trip&#8211;sometimes attack and kill humans for no reason whatsoever:<br />
<blockquote><p>
Scientific investigation of [this phenomenon] is greatly hindered by the fact that even the most otherwise placid of <strong>elephants may actively try to kill any and all humans</strong>.
</p></blockquote>
</li>
<li>
<div class="callout1 callout-r">
<div class="inner">
&#8220;&#8230;snakes (cobras, vipers), spiders (black and brown widow), tigers, leopards, and large leeches.&#8221;
<div class="attribution">&#8211;Animal hazards in Laos</div>
</div>
</div>
<p>&#8230;other travellers have blogged about your chosen mode of transportation from Thailand to Laos; their blog entries have titles like &#8220;<a href="http://www.travelpod.com/cgi-bin/guest.pl?tweb_UID=technotrekker&#038;tweb_tripID=overland05&#038;tweb_entryID=1131371160&#038;tweb_PID=tpod">Death Boats Down the Mekong</a>.&#8221;<br />
And from the U.S. State Department&#8217;s <a href="http://travel.state.gov/travel/cis_pa_tw/cis/cis_1040.html">Consular Information Sheet</a> on Thailand:</p>
<blockquote><p>
Boat safety has become an increasing concern in Thailand&#8230;.  In January 2005, three U.S. citizen <strong>tourists died</strong> when the over-crowded speedboat they were in capsized and sank off the coast of Koh Samui.  Three months later, two U.S. citizens <strong>narrowly escaped death</strong> when their dive boat sank off the coast near Phuket.
</p></blockquote>
</li>
<li>&#8230;your destination is under <a href="http://en.wikipedia.org/wiki/2006_Thailand_coup_d'%C3%A9tat">martial law</a>.  (But on the bright side, it <em>was</em> a bloodless coup.)
</li>
</ul>
<p>See you <span style="text-decoration: line-through;">when</span>if we get back!</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/travel-insurance-is-looking-good/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Separated at Birth II</title>
		<link>http://ronrothman.com/public/leftbraned/separated-at-birth-ii/</link>
		<comments>http://ronrothman.com/public/leftbraned/separated-at-birth-ii/#comments</comments>
		<pubDate>Tue, 31 Oct 2006 05:29:26 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/10/31/separated-at-birth-ii/</guid>
		<description><![CDATA[For these celebrity look-alikes, choosing a Halloween costume must be a breeze: Miss Haley Ashley Olsen&#8230; or is it Mary Kate? &#160; Vlad Richard Tyson (the villain from Kindergarten Cop) &#160; Patricia (and a beautiful right eye) Winona Ryder (and a beautiful right eye) &#160; The lovely Danielle The lovely Jeanne Tripplehorn &#160; Steve Viggo [...]]]></description>
			<content:encoded><![CDATA[<p>For these celebrity look-alikes, choosing a Halloween costume must be a breeze:<br />
<span id="more-192"></span></p>
<table style="width: 100%; margin: 0; padding: 0;">
<colgroup>
<col width="25%" align="right"></col>
<col width="155" align="center"></col>
<col width="155" align="center"></col>
<col align="left"></col>
</colgroup>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Miss Haley</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab23b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab23a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Ashley Olsen&#8230; or is it Mary Kate?</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Vlad</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab22b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab22a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Richard Tyson (the villain from <i>Kindergarten Cop</i>)</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Patricia (and a beautiful right eye)</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab20b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab20a2.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Winona Ryder (and a beautiful right eye)</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">The lovely Danielle</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab21b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab21a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">The lovely Jeanne Tripplehorn</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Steve</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab24b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab24a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Viggo Mortensen as Aragorn</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/separated-at-birth-ii/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eating Well</title>
		<link>http://ronrothman.com/public/leftbraned/eating-well/</link>
		<comments>http://ronrothman.com/public/leftbraned/eating-well/#comments</comments>
		<pubDate>Sat, 14 Oct 2006 19:37:36 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/10/14/eating-well/</guid>
		<description><![CDATA[I&#8217;m planning on attending two food events next month. Leave a comment below if you want to join me or just meet up afterwards for a debriefing. I&#8217;m Cuckoo for Cocoa! (Hold the Puffs) Update: We went. See comments below and photos for details. The first one (chronologically and gastronomically) is the 2006 Chocolate Show. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m planning on attending two food events next month.  Leave a comment below if you want to join me or just meet up afterwards for a debriefing.</p>
<h3>I&#8217;m Cuckoo for Cocoa! (Hold the Puffs)</h3>
<div class="callout1 callout-r">
<div class="inner">
Update: We went.<br />
See <a href="#comment-id-8806">comments</a> below and <a href="http://ronrothman.com/gallery/chocolate-show-weekend">photos</a> for details.</div>
</div>
<p>The first one (chronologically and gastronomically) is <span id="more-207"></span>the 2006 <a href="http://chocolateshow.com/index.php">Chocolate Show</a>.  I missed it last year, so I&#8217;m doubling my consumption goals for this year.</p>
<p>November 10-12.  (<span style="text-decoration: line-through;">We&#8217;re thinking of going on the 12th (Sunday)</span>. Change of plans: we&#8217;re going on Saturday.)</p>
<h3>You Are What You Eat&#8230; But Do You Know What You&#8217;re Eating?</h3>
<div class="callout1 callout-l">
<div class="inner">
See <a href="#comment-id-9180">comments</a> below for details about the conference.  (I also snapped a few <a href="http://ronrothman.com/gallery/misc?page=2">photos</a>.)</div>
</div>
<p>The second one, <a href="http://www.princeton.edu/~eating/">Food, Ethics and the Environment</a>, is less tasty but more important.  I&#8217;m not overly concerned with animal ethics; I&#8217;m much more worried about the health problems that modern farming techniques create.  But the two frequently overlap, since, for example, a happier cow makes healthier beef.</p>
<p>That said, this conference interests me more for its <a href="http://www.princeton.edu/~eating/program.html">guest list</a> than its topic.  Some of my favorite food authors will be there&#8211;and I don&#8217;t mean the the Ruth Reichl / Peter Mayle kind.  I mean the Upton Sinclair kind.  Check out this line-up:</p>
<div class="center">
<img style="border: 1px solid black; margin: auto 4px auto 4px;" src="/public/img/lb/fastfoodnation1.jpg" alt="" title="Fast Food Nation" /><img style="border: 1px solid black; margin: auto 4px auto 4px;" src="/public/img/lb/foodpolitics1.jpg" alt="" title="Food Politics" /><img style="border: 1px solid black; margin: auto 4px auto 4px;" src="/public/img/lb/omnivoresdilemma2.jpg" alt="" title="The Omnivore's Dilemma" /><img style="border: 1px solid black; margin: auto 4px auto 4px;" src="/public/img/lb/thewayweeat1.jpg" alt="" title="The Way We Eat" />
</div>
<ul>
<li><a href="http://www.mcspotlight.org/media/books/schlosser.html">Eric Schlosser</a>, author of <i>Fast Food Nation</i>&#8211;the book that started it all for me.</li>
<li><a href="http://www.foodpolitics.com/">Marion Nestle</a>, author of <i>Food Politics</i>, which I&#8217;m reading now.</li>
<li>And the one I&#8217;m most excited about, <a href="http://www.michaelpollan.com/">Michael Pollan</a>, author of <i>The Omnivore&#8217;s Dilemma</i>&#8211;the best nonfiction book I&#8217;ve read in&#8230; ever.</li>
<li>The conference is run by <a href="http://www.princeton.edu/~psinger/">Peter Singer</a> (author of <i>Animal Liberation</i>), whose recent book, <i>The Way We Eat</i>, presented some useful information, despite its annoyingly polemic tone.</li>
</ul>
<p>From the conference&#8217;s web site:</p>
<div class="blockquote1">
Presentations, discussions and panel debate will include:</p>
<ul>
<li>How industrial food production systems affect the environment, including such issues as water pollution, biodiversity and global warming.</li>
<li>Comparison of locally grown and organic foods versus large scale industrial food production systems.</li>
<li>Concern for the welfare of animals raised for meat, eggs and dairy products.</li>
<li>Issues for institutions of scale, (e.g. universities), regarding food choices.</li>
</ul>
</div>
<p>November 16-17.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/eating-well/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Letter to Florence, April 16th, 1896</title>
		<link>http://ronrothman.com/public/leftbraned/letter-to-florence-april-16th-1896/</link>
		<comments>http://ronrothman.com/public/leftbraned/letter-to-florence-april-16th-1896/#comments</comments>
		<pubDate>Sat, 30 Sep 2006 21:51:09 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Overheard]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/09/30/letter-to-florence-april-16th-1896/</guid>
		<description><![CDATA[Below is the opening of an 1896 letter to Sara&#8217;s great-great-grandmother Florence, from Florence&#8217;s aunt Mary. We thought it contained some timeless advice (like, &#8220;never write to a boy or man if you can avoid it&#8221;), so we decided to post it. April 16th, 196 My dear Florence, Your very interesting letter received yesterday morning: [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 15px;">Below is the opening of an <a title="letter to Florence" href="/public/img/lb/letter-img_7456ed.jpg">1896 letter</a> to Sara&#8217;s great-great-grandmother Florence, from Florence&#8217;s aunt Mary.  We thought it contained some timeless advice (like, &#8220;never write to a boy or man if you can avoid it&#8221;), so we decided to post it. <span id="more-205"></span></p>
<table style="width: 100%;">
<tr>
<td style="padding: 0; margin: 0;"><a title="letter to Florence" href="/public/img/lb/letter-img_7456ed.jpg"><img style="margin: auto; margin-left: 20px; border-width: 2px;" alt="" src="/public/img/lb/letter-sm-img_7456ed.jpg" /></a>
</td>
<td style="padding: 0; margin: 0; width: 60%;">
<div style="border: 3px outset #fcc; padding: 10px; margin: auto;">
<div class="center" style="font-family: garamond; font-size: 1.2em;">April 16<span style="vertical-align: super; text-decoration: underline;">th</span>, 1<span style="vertical-align: super;">96</span></div>
<p style="margin-bottom: 0; font-family: garamond; font-size: 1.2em;">My dear Florence, </p>
<p style="text-indent: 6em; text-align: left; font-family: garamond; font-size: 1.2em;">Your very interesting letter received yesterday morning: it brings back my youthful days and thoughts of my own little conquests. I can <u>understand</u> and sympathize with you in all your triumphs, and know how very sweet it is to be feted, admired, loved; and over all, how grand it is to move an audience of 500, or 10,000 with a single throb of music; stick to your art and be gracious as a queen to all the male sex; you do right (I think) not to allow any of them libertys; the boy as you call him, would no doubt have been flattered if you had allowed him to “see you home.”  Perhaps he would have boasted of his conquest; and made your name cheap, unless you know a young man <span style="text-decoration: underline;">well</span> steer clear of him, not that I mean to be “offish” or “prudish.”  You can be affable, kind, etc, and not be free, neither a flirt, and if you will let your old Auntie give a little advice, be very careful to whom and what you write, never write to a boy or man if you can avoid it; in after years these letters might cause you annoyance.</p>
</div>
</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/letter-to-florence-april-16th-1896/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>You Are What You Watch</title>
		<link>http://ronrothman.com/public/leftbraned/fox-news-viewers-are-misinformed/</link>
		<comments>http://ronrothman.com/public/leftbraned/fox-news-viewers-are-misinformed/#comments</comments>
		<pubDate>Thu, 24 Aug 2006 05:00:36 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Says Me]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/08/24/you-are-what-you-watch/</guid>
		<description><![CDATA[In decreasing order of preference, I&#8217;d like my fellow citizens to be: &#8220;A learned blockhead is a greater blockhead than an ignorant one.&#8221; &#8211; Benjamin Franklin &#8220;Don&#8217;t be an ignoranus; don&#8217;t get your news [solely] from FOX.&#8221; &#8211; Ron Rothman, NPR listener and decidedly not an ignoranus 1. informed: &#8220;Iraq is a mess; here&#8217;s why&#8230;.&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>In decreasing order of preference, I&#8217;d like my fellow citizens to be:<br />
<span id="more-200"></span></p>
<div style="margin-left: 24px;">
<div class="callout1 callout-r">
<div class="inner">
<p style="margin: 0;">
&#8220;A learned blockhead is a greater blockhead than an ignorant one.&#8221;</p>
<div class="attribution" style="margin-bottom: 15px;">&#8211; Benjamin Franklin</div>
</p>
<p style="margin: 0;">
&#8220;Don&#8217;t be an ignoranus; don&#8217;t get your news [solely] from FOX.&#8221;</p>
<div class="attribution">&#8211; Ron Rothman, NPR listener and decidedly not an <a style="text-decoration: none; border-bottom: 1px dashed #900;" href="http://www.urbandictionary.com/define.php?term=ignoranus">ignoranus</a></div>
</p>
</div>
</div>
<p style="margin: 0;">
<strong>1. informed:</strong>
<p style="margin-left: 32px; text-align: left;"><em>&#8220;Iraq is a mess; here&#8217;s why&#8230;.&#8221;</em>
</p>
<p style="margin: 0;">
<strong>2. uninformed:</strong>
<p style="margin-left: 32px; text-align: left;"><em>&#8220;I don&#8217;t know enough about Iraq to speak intelligently.&#8221;</em>
</p>
<p style="margin: 0;">
<strong>3. misinformed:</strong>
<p style="margin-left: 32px; text-align: left;"><em>&#8220;Eye-raq is going great.<br />
God Bless the U.S.A.<br />
U.S.A.!  U.S.A.!  <strong>U.S.A.!</strong>&#8220;</em>
</p>
</div>
<p>So this tidbit caught my eye: it turns out that people who get their so-called news from FOX tend to have a distorted, incorrect and somewhat frightening view of reality.  They are, as a group, more misinformed than viewers of any other network.</p>
<p>Now would be a good time to point out that FOX reaches a gazillion people (102,565,710 households, to be exact).  And 18% of those gazillion people report that FOX is their <em>only</em> source of news (versus 3% whose sole source is PBS or NPR):</p>
<div style="width: 80%; padding: 0 9px 9px 9px; margin: 14px auto 14px auto; border: 1px solid black; border-right: 2px solid black; border-bottom: 2px solid black; background-color: #fffdf4;">
<h4 style="text-align: center;">From Where Do You Get Your News?</h4>
<table style="width: 100%; white-space: nowrap;">
<tr>
<td style="text-align: right; width: 10%;">Two or more networks</td>
<td>
<div style="width: 60%; text-align: right; margin: 0; padding: 0; background-color: #999; border: 1px solid black; border-top: 2px solid #ddd; border-right: 2px solid #bbb;"><span style="color: #ffc;">30%</span></div>
</td>
</tr>
<tr>
<td style="text-align: right; width: 10%;">FOX</td>
<td>
<div style="width: 36%; text-align: right; margin: 0; padding: 0; background-color: #f00; border: 1px solid black; border-top: 2px solid #faa; border-right: 2px solid #f55;"><span style="color: #ffc;">18%</span></div>
</td>
</tr>
<tr>
<td style="text-align: right; width: 10%;">CNN</td>
<td>
<div style="width: 32%; text-align: right; margin: 0; padding: 0; background-color: #999; border: 1px solid black; border-top: 2px solid #ddd; border-right: 2px solid #bbb;"><span style="color: #ffc;">16%<span></div>
</td>
</tr>
<tr>
<td style="text-align: right; width: 10%;">NBC</td>
<td>
<div style="width: 28%; text-align: right; margin: 0; padding: 0; background-color: #999; border: 1px solid black; border-top: 2px solid #ddd; border-right: 2px solid #bbb;"><span style="color: #ffc;">14%</span></div>
</td>
</tr>
<tr>
<td style="text-align: right; width: 10%;">ABC</td>
<td>
<div style="width: 22%; text-align: right; margin: 0; padding: 0; background-color: #999; border: 1px solid black; border-top: 2px solid #ddd; border-right: 2px solid #bbb;"><span style="color: #ffc;">11%</span></div>
</td>
</tr>
<tr>
<td style="text-align: right; width: 10%;">CBS</td>
<td>
<div style="width: 18%; text-align: right; margin: 0; padding: 0; background-color: #999; border: 1px solid black; border-top: 2px solid #ddd; border-right: 2px solid #bbb;"><span style="color: #ffc;">9%</span></div>
</td>
</tr>
<tr>
<td style="text-align: right; width: 10%;">PBS+NPR</td>
<td>
<div style="width: 6%; text-align: right; margin: 0; padding: 0; background-color: #00a; border: 1px solid black; border-top: 2px solid #aaf; border-right: 2px solid #55f;"><span style="color: #ffc;">3%</span></div>
</td>
</tr>
</table>
</div>
<p>And what those gazillion people hear on FOX is the &#8220;fair and balanced&#8221; truth.  Well,  except for those inconvenient times when the truth makes FOX&#8217;s right-wing, religious allies look wrong; or stupid; or greedy; or downright criminal.  Which is to say, frequently.</p>
<p>Take, for example, the invasion of Iraq:</p>
<div style="width: 80%; padding: 0 9px 9px 9px; margin: 14px auto 14px auto; border: 1px solid black; border-right: 2px solid black; border-bottom: 2px solid black; background-color: #fffdf4;">
<h4 style="text-align: center;">Weapons of Mass Destruction</h4>
<p><em>Since the war with Iraq ended, is it your impression that the US has or has not found Iraqi weapons of mass destruction?</em></p>
<p>Incorrectly answered <em>has found</em>:</p>
<table style="width: 100%; white-space: nowrap;">
<tr>
<td style="text-align: right; width: 10%;">FOX</td>
<td>
<div style="width: 66%; text-align: right; margin: 0; padding: 0; background-color: #f00; border: 1px solid black; border-top: 2px solid #faa; border-right: 2px solid #f55;"><span style="color: #ffc;">33%</span></div>
</td>
</tr>
<tr>
<td style="text-align: right; width: 10%;">PBS+NPR</td>
<td>
<div style="width: 22%; text-align: right; margin: 0; padding: 0; background-color: #00a; border: 1px solid black; border-top: 2px solid #aaf; border-right: 2px solid #55f;"><span style="color: #ffc;">11%</span></div>
</td>
</tr>
</table>
</div>
<div style="width: 80%; padding: 0 9px 9px 9px; margin: 14px auto 14px auto; border: 1px solid black; border-right: 2px solid black; border-bottom: 2px solid black; background-color: #fffdf4;">
<h4 style="text-align: center;">World Public Opinion</h4>
<p><em>Thinking about how all the people in the world feel about the US having gone to war with Iraq, do you think the majority of people favor the US having gone to war?</em></p>
<p>Incorrectly answered <em>Yes</em>:</p>
<table style="width: 100%; white-space: nowrap;">
<tr>
<td style="text-align: right; width: 10%;">FOX</td>
<td>
<div style="width: 70%; text-align: right; margin: 0; padding: 0; background-color: #f00; border: 1px solid black; border-top: 2px solid #faa; border-right: 2px solid #f55;"><span style="color: #ffc;">35%</span></div>
</td>
</tr>
<tr>
<td style="text-align: right; width: 10%;">PBS+NPR</td>
<td>
<div style="width: 10%; text-align: right; margin: 0; padding: 0; background-color: #00a; border: 1px solid black; border-top: 2px solid #aaf; border-right: 2px solid #55f;"><span style="color: #ffc;">5%</span></div>
</td>
</tr>
</table>
</div>
<p>This is hardly news; the <a href="http://65.109.167.118/pipa/pdf/oct03/IraqMedia_Oct03_rpt.pdf">survey</a> is almost 3 years old.  Plus, all of this borders on obvious to anyone who has spent a few hours watching FOX.</p>
<p>But if we really are what we watch, then don&#8217;t be an ignoranus; don&#8217;t get your news [solely] from FOX.  I love my country.  I don&#8217;t want it hijacked by misinformed masses.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/fox-news-viewers-are-misinformed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I Always Suspected As Much</title>
		<link>http://ronrothman.com/public/leftbraned/i-always-suspected-as-much/</link>
		<comments>http://ronrothman.com/public/leftbraned/i-always-suspected-as-much/#comments</comments>
		<pubDate>Mon, 21 Aug 2006 21:54:15 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/08/21/i-always-suspected-as-much/</guid>
		<description><![CDATA[From The Syrian Bride: LIV Did you know you could tell a lot about people just by looking at their teeth? Especially men. JEANNE Really? How? LIV Well for example, men with neat little teeth&#8230; stay away from them, they&#8217;re way too square. And, men with buck teeth&#8230; are incredible in bed. JEANNE (purposefully) What [...]]]></description>
			<content:encoded><![CDATA[<div style="border: 2px solid black;">
<div style="width: 180px; float: left; margin: 0 20px 6px 0;">
<a href="http://ronrothman.com/gallery/misc/IMG_7086ed"><img style="border: 1px solid black; margin-top: 0;" src="http://ronrothman.com/public/albums/misc/IMG_7086ed.thumb.jpg" alt="" /></a>
</div>
<div>
<p>From <i>The Syrian Bride</i>:</p>
<div style="margin: 0 60px 0 60px; text-align: center; font-family: courier new;">
<p>LIV<br />
Did you know you could tell a lot about people just by looking at their teeth?  Especially men.</p>
<p>JEANNE<br />
Really?  How?</p>
<p>LIV<br />
Well for example, men with neat little teeth&#8230; stay away from them, they&#8217;re <em>way</em> too square.  And, men with buck teeth&#8230; are incredible in bed.</p>
<p>JEANNE<br />
(purposefully)<br />
What about men with a gap between their front teeth?</p>
<p>LIV<br />
Oh, they&#8217;re warm and sensuous.  <em>Too</em> sensuous, in fact.  One woman is never enough for them.</p>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/i-always-suspected-as-much/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Hunger, I Can Take&#8230; But *Somebody Get Me a Hamburger*</title>
		<link>http://ronrothman.com/public/leftbraned/the-hunger-i-can-take-but-somebody-get-me-a-hamburger/</link>
		<comments>http://ronrothman.com/public/leftbraned/the-hunger-i-can-take-but-somebody-get-me-a-hamburger/#comments</comments>
		<pubDate>Fri, 11 Aug 2006 22:17:48 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/08/11/the-hunger-i-can-take-but-somebody-get-me-a-hamburger/</guid>
		<description><![CDATA[Well, we did it again; another juice fast. This time, for 10 days&#8230; er, not counting the unfortunate hot dog I had to eat on Day 6. We timed it to coincide with Sara&#8217;s wisdom tooth extraction, since she&#8217;d have to be on soft foods for several days anyway. Our food log is below. It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Well, we did it again; <a href="http://ronrothman.com/public/leftbraned/archives/juicetopia-the-aftermath/">another</a> juice fast.  This time, for 10 days&#8230; er, not counting the unfortunate hot dog I had to eat on Day 6.  We timed it to coincide with Sara&#8217;s wisdom tooth extraction, since she&#8217;d have to be on soft foods for several days anyway.</p>
<p>Our food log is below.  It&#8217;s comprehensive&#8211;nothing that entered my body is omitted (except for copious amounts of water).  Vegetables listed below were local or organic (in that order), where possible.</p>
<div class="callout1 callout-r">
<div class="inner">
Most memorable moment? Day 2: Sara passing out on the bathroom floor in front of me.
</div>
</div>
<p>I was hungry for the first couple of days, but by the second half of the fast, I felt hunger only in very short (5 minutes) tolerable bursts, just once or twice a day.  Surprisingly easy to bear.  The cravings, on the other hand, were harder to bear.  I just missed the <em>taste</em> of certain foods; oddly enough, they were mostly meats.  Not a single craving for ice cream (my perennial favorite), but I was seeing lamb chops in my sleep.</p>
<p>Most memorable moment? Day 2: Sara passing out on the bathroom floor in front of me.  Had I not been there to catch her, she very well could have smashed her head on the sink/toilet/floor.  Ugh.  (Note to all juice fast detractors: she more than likely fainted due to her strong pain killers and dehydration, not due to the juice fast.)</p>
<p>Without further ado, I present my food log:<br />
<span id="more-197"></span></p>
<h4>Sunday &#8211; Transition In (Day 0)</h4>
<ul>
<li>lunch: guacamole boats in endive, stir fried veggies (cabbage, mushroom, broccoli, onion)</li>
<li>dinner: sauteed veggies (corn, zucchini, tomato), broiled sweet potato</li>
<li>juice: carrot, celery, cucumber, kale, ginger, parsley</li>
</ul>
<h4>Monday (Day 1)</h4>
<ul>
<li>juice: carrot, cucumber, kale, sweet potato, ginger, parsley</li>
<li>juice: watermelon, grape, strawberry</li>
<li>juice: celery, cucumber, dandelion, green cabbage, broccoli, turnip, carrot</li>
<li>vegetable broth: parsnip, green cabbage, broccoli, garlic, barley, corn, cayenne</li>
<li>herb tea</li>
</ul>
<h4>Tuesday (Day 2)</h4>
<ul>
<li>juice: carrot, kale, dandelion, cucumber, ginger</li>
<li>juice: apple, pear</li>
<li>Odwalla juice</li>
<li>juice: carrot, celery, dandelion, yellow squash, cucumber, tomato, green cabbage, broccoli, parsley, garlic, turnip</li>
<li>vegetable broth: from tonight&#8217;s juice pulp, plus onion, barley, additional summer squash, additional dandelion, sea salt, turmeric</li>
<li>juice: orange</li>
<li>herb tea</li>
</ul>
<h4>Wednesday (Day 3)</h4>
<ul>
<li>juice: orange</li>
<li>juice: dried apricot and raisin broth</li>
<li>juice: carrot, parsley, dandelion green, green bean, celery, beet, garlic</li>
<li>vegetable broth: same batch as last night</li>
<li>juice: watermelon, peach, grape</li>
<li>vegetable broth: from tonight&#8217;s juice pulp, plus onion, mushroom, sea salt, turmeric, cayenne</li>
<li><span style="text-decoration: line-through;">juice: papaya, pineapple</span> (discarded because it was too pulpy)</li>
</ul>
<h4>Thursday (Day 4)</h4>
<ul>
<li>juice: orange, grapefruit</li>
<li>juice: carrot, celery, green cabbage, radish (root plus greens), kale</li>
<li>juice: watermelon, peach, grape</li>
<li>fresh ginger tea (with honey)</li>
<li>vegetable broth: same batch as last night</li>
<li>juice: carrot cucumber, celery, red cabbage, beet, garlic, parsley</li>
</ul>
<h4>Friday (Day 5)</h4>
<ul>
<li>juice: apple, pear, peach</li>
<li>juice: carrot, cucumber, celery, red cabbage, beet, garlic, parsley</li>
<li>herb tea</li>
<li>juice: carrot, broccoli, kale, celery, radish, ginger</li>
<li>juice: carrot, cucumber, sweet potato, red cabbage, celery, garlic</li>
<li>dandelion root tea (sweetened with dried apricot and raisin juice)</li>
<li>1 apple, whole (in preparation for tomorrow)</li>
</ul>
<h4>Saturday &#8211; BBQ Detour (Day 6)</h4>
<ul>
<li>1 whole-grain waffle with maple syrup</li>
<li>juice: carrot, parsley, ginger</li>
<li>bbq: watermelon, pineapple, shepherd&#8217;s salad, 1/3 of a hot dog with bun, 1/3 ear corn, grilled chicken drumstick, grilled salmon, lemon tart</li>
<li>juice: carrot, cucumber, celery, broccoli, garlic</li>
<li>vegetable broth: pulp from tonight&#8217;s juice, plus swiss chard, parsley root, onion, garlic</li>
</ul>
<h4>Sunday (Day 7)</h4>
<ul>
<li>juice: carrot, parsley root, red cabbage, beet, dandelion green</li>
<li>Odwalla juice</li>
<li>juice: orange, grapefruit</li>
<li>Knudsen&#8217;s Peach Spritzer</li>
<li>juice: carrot, watercress, celery, radish, cucumber, parsley</li>
<li>vegetable broth: same batch as last night</li>
<li>juice: apple, pear, grape</li>
</ul>
<h4>Monday (Day 8)</h4>
<ul>
<li>juice: apple, pear, grape, orange</li>
<li>juice: carrot, celery, dandelion green, parsley root, ginger</li>
<li>juice: watermelon, peach</li>
<li>juice: carrot, celery, beet, parsley, garlic, green cabbage, spinach</li>
<li>Knudsen&#8217;s Peach Spritzer</li>
<li>herb tea</li>
</ul>
<h4>Tuesday (Day 9)</h4>
<ul>
<li>juice: carrot, spinach, green cabbage, kohlrabi</li>
<li>juice: watermelon, peach</li>
<li>juice: carrot, celery, parsley root, parsley, collard green</li>
<li>vegetable broth: pulp from tonight&#8217;s juice, plus corn, zucchini, onion, barley</li>
<li>juice: pineapple, orange, grapefruit</li>
</ul>
<h4>Wednesday (Day 10)</h4>
<ul>
<li>juice: pineapple</li>
<li>juice: carrot, cucumber, parsley, beet</li>
<li>vegetable broth: same batch as last night</li>
<li>juice: pear, apple</li>
<li>juice: carrot, celery, cucumber, parsley, collard green, garlic</li>
</ul>
<h4>Thursday &#8211; Transition Out (Day 11)</h4>
<ul>
<li>juice: peach, orange</li>
<li>lunch: salad</li>
<li>grapes</li>
<li>dinner: sauteed veggies (corn, zucchini, onion), broiled sweet potato</li>
<li>yogurt</li>
</ul>
<h4>Friday &#8211; Depurification Begins (Day 12)</h4>
<ul>
<li>2 whole-grain waffle with maple syrup (pure, dark, grade B, of course)</li>
<li>several hot dogs</li>
<li><i>&#8230;you don&#8217;t even wanna know the rest</i></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/the-hunger-i-can-take-but-somebody-get-me-a-hamburger/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Real Places</title>
		<link>http://ronrothman.com/public/leftbraned/real-places/</link>
		<comments>http://ronrothman.com/public/leftbraned/real-places/#comments</comments>
		<pubDate>Wed, 19 Jul 2006 23:25:46 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Says Me]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/07/19/real-places/</guid>
		<description><![CDATA[&#160; This is a map of our travels through Israel last September&#8211;ten months ago. The purple line shows the routes we drove. The red diamonds indicate some of the targets of recent Lebanese rocket attacks. (According to The Guardian, Hezbollah had fired at least 700 rockets into Israel as of July 18th, so I couldn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-196"></span><img class="paraleft" src="http://ronrothman.com/public/img/lb/israel-route-with-rocket-attacks.jpg" alt="our route through israel, indicating lebanese rocket attack sites" /></p>
<p>&nbsp;</p>
<p>This is a map of our travels through Israel last September&#8211;ten months ago.</p>
<p>The purple line shows the routes we drove.</p>
<p>The red diamonds indicate some of the targets of recent Lebanese rocket attacks.</p>
<p>(According to The Guardian,<br />
<a href="http://www.upi.com/InternationalIntelligence/view.php?StoryID=20060717-095632-6039r">Hezbollah</a> had fired at least <a href="http://www.guardian.co.uk/israel/Story/0,,1822213,00.html">700 rockets</a> into Israel as of July 18th, so I couldn&#8217;t display them all.  For a more detailed map of the attacks, see this <a href="http://www.nytimes.com/packages/khtml/2006/07/19/world/middleeast/20060719_MIDEAST_GRAPHIC.html">interactive chronological map</a> from the New York Times.)</p>
<p>Some of the towns/cities we visited that were recently targeted:</p>
<ul>
<li style="margin-left: 15px;"><a href="http://ronrothman.com/gallery/israel_2005/147_4756">Acco</a></li>
<li style="margin-left: 15px;"><a href="http://ronrothman.com/gallery/israel_2005/147_4790">Tzfat</a> (Safed)</li>
<li style="margin-left: 15px;"><a href="http://ronrothman.com/gallery/israel_2005/148_4834">Tiberias</a> (Tverya)</li>
<li style="margin-left: 15px;"><a href="http://ronrothman.com/gallery/israel_2005/148_4857">Mt. Ben Tal</a>, 50km from Tiberias, 25km from Kiryat Shmona.  Situated on the Israeli-Syrian border, you can also clearly <a href="http://ronrothman.com/gallery/israel_2005/148_4849">see Lebanon</a> from here.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/real-places/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Separated at Birth?</title>
		<link>http://ronrothman.com/public/leftbraned/separated-at-birth/</link>
		<comments>http://ronrothman.com/public/leftbraned/separated-at-birth/#comments</comments>
		<pubDate>Sun, 30 Apr 2006 16:01:54 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Says Me]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/04/30/separated-at-birth/</guid>
		<description><![CDATA[You be the judge: Irina Maggie Gyllenhaal &#160; Lance Donny Osmond &#160; Rami Mark Ruffalo &#160; Eileen Jenna Elfman &#160; Kartal Bo Duke &#160; Eric Brad Pitt &#160; G-Man Yosemite Sam &#160; Evil Joe Evil Spock]]></description>
			<content:encoded><![CDATA[<p class="center"><strong>You be the judge:</strong></p>
<p><span id="more-113"></span></p>
<table style="width: 100%; margin: 0; padding: 0;">
<colgroup>
<col width="25%" align="right"></col>
<col width="155" align="center"></col>
<col width="155" align="center"></col>
<col align="left"></col>
</colgroup>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Irina</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab1b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab1a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Maggie Gyllenhaal</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Lance</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab2b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab2a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Donny Osmond</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Rami</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab3b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab3a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Mark Ruffalo</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Eileen</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab6b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab6a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Jenna Elfman</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Kartal</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab4b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab4a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Bo Duke</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Eric</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab8b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab8a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Brad Pitt</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">G-Man</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab5b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab5a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Yosemite Sam</td>
</tr>
<tr>
<td colspan="4" style="text-align: center;">&nbsp;<br />
<hr style='margin: 6px auto 6px auto; color: black; height: 1px; width: 66%; border: 1px dotted black;'/></td>
</tr>
<tr style="border-bottom: 3px double black;">
<td style="text-align: right; padding: 3px;">Evil Joe</td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab7b.jpg" style="border: 1px solid black;" /></td>
<td><img alt="" src="http://ronrothman.com/public/img/lb/sab7a.jpg" style="border: 1px solid black;" /></td>
<td style="padding: 3px;">Evil Spock</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/separated-at-birth/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>You Know You&#8217;re Getting Old When&#8230;</title>
		<link>http://ronrothman.com/public/leftbraned/you-know-youre-getting-old-when/</link>
		<comments>http://ronrothman.com/public/leftbraned/you-know-youre-getting-old-when/#comments</comments>
		<pubDate>Thu, 27 Apr 2006 13:49:29 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Good Times]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/04/27/you-know-youre-getting-old-when/</guid>
		<description><![CDATA[&#8230;you spend an awesome evening at a concert with friends, and, the next day, can only remember that it was too loud and that you went to bed too late. &#8230;the only club you want to get into now is your wife&#8217;s book club. (Some things never change, though: (a) clubs are still full of [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><a href='http://ronrothman.com/gallery/misc/IMG_5934'><img class='pararight' alt="canadians are weird" title="canadians are weird" src='http://ronrothman.com/public/albums/misc/IMG_5934.thumb.jpg'/></a><br />
<br />
&#8230;you spend an <em>awesome</em> evening at a <a href="http://ronrothman.com/gallery/misc/IMG_5934">concert</a> with friends, and, the next day, can only remember that it was too loud and that you went to bed too late.<br />
<br style="clear: both;" />
</p>
<p><a href='http://ronrothman.com/gallery/family/IMG_5962ed'><img class='paraleft' alt="book club hotties" title="book club hotties" src='http://ronrothman.com/public/albums/family/IMG_5962ed.thumb.jpg'/></a><br />
<br />
&#8230;the only club you want to get into now is your wife&#8217;s book club.  (Some things never change, though:<br />
(a) clubs are still full of <a href="http://ronrothman.com/gallery/family/IMG_5962ed">hotties</a>, and<br />
(b) they still won&#8217;t let me in.)<br />
<br style="clear: both;" /></p>
<p>&#8230;your friends aren&#8217;t students anymore; <a href="http://ronrothman.com/gallery/family/139_3911">they&#8217;re professors</a>.</p>
<p>&#8230;the <a href="http://www.andybell.com/">lead singer</a> of your lifelong favorite band has had hip replacement surgery.</p>
<p>&#8230;you don&#8217;t think myspace is <em>k00l</em>; you think it&#8217;s a piece of shit.  (Besides, &#8220;<a href="http://ronrothman.com/gallery/family/150_5095">Real men</a> host their own blogs.&#8221;)</p>
<p>&#8230;you stop caring <a href="http://ronrothman.com/gallery/misc/115_1565">how you look</a> in public.</p>
<p>&#8230;<a href="http://ronrothman.com/gallery/family/saranewyears03">you</a> turn&#8230; THIRTY. <img src='http://ronrothman.com/public/leftbraned/smilies/yahoo_party.gif' alt='&#60;&#58;&#45;&#80;' class='wp-smiley' width='38' height='18' title='&#60;&#58;&#45;&#80;' /></p>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/you-know-youre-getting-old-when/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Cognitive Elite, Apply Within</title>
		<link>http://ronrothman.com/public/leftbraned/cognitive-elite-apply-within/</link>
		<comments>http://ronrothman.com/public/leftbraned/cognitive-elite-apply-within/#comments</comments>
		<pubDate>Mon, 24 Apr 2006 04:12:06 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ronrothman.com/public/leftbraned/archives/2006/04/23/cognitive-elite-apply-within/</guid>
		<description><![CDATA[Let&#8217;s face the obvious: yesterday we were nerds, today we&#8217;re the cognitive elite. Let&#8217;s conquer. &#8212;Chester G. Edwards Do the words &#8220;core dump&#8221; make you shiver with fear? (My wife just giggles whenever she hears it.) If I asked you to &#8220;debug an Apache vfork problem&#8221; (again, she giggles), would you know that I&#8217;m referring [...]]]></description>
			<content:encoded><![CDATA[<blockquote style="width: 70%;"><p>Let&#8217;s face the obvious: yesterday we were nerds, today we&#8217;re the cognitive elite. Let&#8217;s conquer.</p>
<p><i>&#8212;Chester G. Edwards</i>
</p></blockquote>
<p>Do the words &#8220;<a href="http://www.cafepress.com/shopgeek.6723158">core dump</a>&#8221; make you shiver with fear?  (My wife just giggles whenever she hears it.)</p>
<p>If I asked you to &#8220;debug an <a href="http://www.cafepress.com/meepzor.11764740">Apache</a> vfork problem&#8221; (again, she giggles), would you know that I&#8217;m referring neither to an Indian tribe nor to a utensil?</p>
<p>If you answered &#8220;yes&#8221; to both of those questions, then I&#8217;ve got a job opening you may be interested in.  (Location: Cambridge, MA (though we may consider some applicants for our Bridgewater, NJ office.))<br />
<span id="more-186"></span></p>
<p>A copy of the <a href="http://apps.appmail.com/recruitment/candidatebench/jobdetails.jsp?accessKey=55*56!55*66*66*83*100*118*118*115*114*117!119&#038;type=ALL&#038;reqId=32622">official</a> description follows.  If interested, leave a comment below or email me (at <code style="white-space: nowrap;">$my_first_name . '@mail' . $dot . 'ronrothman' . $dot . 'com'</code>).</p>
<h3>Details</h3>
<p><strong>Senior Software Engineer<br />
Posting Date: 04/19/2006<br />
Location: Cambridge, MA (or Bridgewater, NJ)</strong></p>
<h3>Job Description</h3>
<p>Play a key role in building the next generation of CNET Networks&#8217; company-wide personalization and targeting services. You will design, develop, and deliver solutions enabling our family of sites to provide a rich and individual user experience. We are looking for a top-notch, hands-on Software Engineer with a passion for data-driven systems and optimization. This position calls for a dedicated and self-motivated engineer who can work either independently or with other engineers through the product development lifecycle in a fast-paced web-development environment. Our services are important to revenue and are performance sensitive, requiring extreme care in specification, coding, review, and testing.</p>
<h3>Qualifications</h3>
<p>Technical Skills:</p>
<ul>
<li>Bachelor of Science in Computer Science or related subject and 5-7 years professional experience</li>
<li>Advanced skills in C++, experience with the STL in a Linux/Unix environment</li>
<li>Practical experience with Perl, including OOP and library development</li>
<li>Strong understanding of Linux/Unix command line and environment</li>
<li>Strong knowledge of SQL and data modeling</li>
<li>Experience with Apache (including Apache2 module development) a big plus</li>
<li>Experience developing enterprise applications in Java or Python a plus</li>
<li>Statistics, mathematics, or quantitative science background a plus</li>
</ul>
<p>Soft Skills:</p>
<ul>
<li>Excellent teamwork and collaboration skills</li>
<li>Excellent verbal and communication skills</li>
<li>Must be detail oriented and focused on data accuracy</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ronrothman.com/public/leftbraned/cognitive-elite-apply-within/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.557 seconds -->
<!-- Cached page served by WP-Cache -->
