<?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>Kevin&#039;s random thoughts</title>
	<atom:link href="http://kbullock.ringworld.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://kbullock.ringworld.org</link>
	<description>god, tech, and other geekery</description>
	<lastBuildDate>Fri, 06 Aug 2010 22:14:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>xpgrep version 0.1.0 has been released!</title>
		<link>http://kbullock.ringworld.org/2010/07/14/xpgrep-version-0-1-0-has-been-released-2/</link>
		<comments>http://kbullock.ringworld.org/2010/07/14/xpgrep-version-0-1-0-has-been-released-2/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 20:07:28 +0000</pubDate>
		<dc:creator>kbullock</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://kbullock.ringworld.org/2010/07/14/xpgrep-version-0-1-0-has-been-released-2/</guid>
		<description><![CDATA[grep(1) for XML, using XPath (or CSS selectors) instead of regex(3).

Changes:

0.1.0 / 2010-07-14


1 major enhancement


Birthday!

http://bitbucket.org/krbullock/xpgrep

]]></description>
			<content:encoded><![CDATA[<p>grep(1) for XML, using XPath (or CSS selectors) instead of regex(3).</p>

<p>Changes:</p>

<h3>0.1.0 / 2010-07-14</h3>

<ul>
<li><p>1 major enhancement</p>

<ul>
<li>Birthday!</li>
</ul></li>
<li><p><a href="http://bitbucket.org/krbullock/xpgrep">http://bitbucket.org/krbullock/xpgrep</a></p></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kbullock.ringworld.org/2010/07/14/xpgrep-version-0-1-0-has-been-released-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache, Rails, and REMOTE_USER</title>
		<link>http://kbullock.ringworld.org/2010/06/05/apache-rails-and-remote_user/</link>
		<comments>http://kbullock.ringworld.org/2010/06/05/apache-rails-and-remote_user/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 22:04:28 +0000</pubDate>
		<dc:creator>kbullock</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[authn]]></category>
		<category><![CDATA[basic]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://kbullock.ringworld.org/?p=1685</guid>
		<description><![CDATA[I&#8217;m currently redeveloping our intranet site at work, rewriting it in Rails. I want to keep authentication as simple as possible, and since the current site is set up to authenticate against our LDAP server using mod_authnz_ldap, I want to keep that setup (and avoid having to build any authentication into the Rails app itself).

I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently redeveloping our intranet site at work, rewriting it in Rails. I want to keep authentication as simple as possible, and since the current site is set up to authenticate against our LDAP server using <code>mod_authnz_ldap</code>, I want to keep that setup (and avoid having to build any authentication into the Rails app itself).</p>

<p>I quickly discovered that the <code>REMOTE_USER</code> environment variable, which for a CGI app would contain the username which was authenticated by Apache, doesn&#8217;t get passed via the proxying magic to Rails (when run via mongrel or the like). My Google-fu turned up <a href="http://www.ruby-forum.com/topic/83067">this thread</a>, which has a solution that sets an <code>X-Forwarded-User</code> header to the value of <code>REMOTE_USER</code>. That header gets passed on in the proxied request to the Rails app. Here&#8217;s the magic incantation:</p>

<pre><code>RewriteCond %{LA-U:REMOTE_USER} (.+)
RewriteRule . - [E=RU:%1]
RequestHeader add X-Forwarded-User %{RU}e
</code></pre>

<p>It put me on the right track, but still wasn&#8217;t working. There&#8217;s two problems with the solution given there:</p>

<p><span id="more-1685"></span>
1. The <code>RewriteRule</code> only matches the root URL of the application (the <code>.</code> matches any single character). Back to <a href="http://en.wikipedia.org/wiki/Regular_expression#Syntax">regex</a> class. It should read <code>^.*$</code>, that is, match all URLs.</p>

<ol>
<li>It uses <code>mod_rewrite</code>&#8217;s <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritecond">&#8216;lookahead&#8217;</a> to determine the final (post-rewriting) value of <code>REMOTE_USER</code>. I, however, am using this in a <em>directory</em> configuration context, which for esoteric implementation reasons doesn&#8217;t require lookahead&#8212;we can use the <code>REMOTE_USER</code> variable directly.</li>
</ol>

<p>Here, then, is my final config, added before the rest of the normal Rails <code>.htaccess</code> rules:</p>

<pre><code>RewriteCond %{REMOTE_USER} (.+)
RewriteRule ^.*$ - [E=RU:%1]
RequestHeader add X-Forwarded-User %{RU}e
</code></pre>

<h2>Using the <code>X-Forwarded-User</code> header in Rails</h2>

<p>The other thing that <a href="http://www.ruby-forum.com/topic/83067">the aforementioned post</a> didn&#8217;t tell me was <em>how to use</em> the forwarded header once Apache was forwarding it. Rails doesn&#8217;t do anything automatically with an <code>X-Forwarded-User</code> header; you have to get at it in your controllers through the <code>request</code> object. I added the following method to <code>ApplicationController</code> (and used <code>helper_method</code> to make it available to views):</p>

<pre><code># app/controllers/application_controller.rb
class ApplicationController &lt; ActionController::Base
  def http_remote_user
    request.env['HTTP_REMOTE_USER'] || request.headers['X-Forwarded-User']
  end
  helper_method :http_remote_user
end
</code></pre>

<p>It checks first for the <code>HTTP_REMOTE_USER</code> environment variable, so that if you want to deploy your app differently you don&#8217;t need to change the code.</p>

<p>You could write a <code>before_filter</code> to enforce authentication, but I&#8217;ll leave that as an exercise for the reader. For this app, I need to know the authenticated username, but I don&#8217;t want the app to have anything more to do with authentication. The above does the job handily.</p>
]]></content:encoded>
			<wfw:commentRss>http://kbullock.ringworld.org/2010/06/05/apache-rails-and-remote_user/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>vlad-hg version 2.1.0 has been released!</title>
		<link>http://kbullock.ringworld.org/2010/06/04/vlad-hg-version-2-1-0-has-been-released/</link>
		<comments>http://kbullock.ringworld.org/2010/06/04/vlad-hg-version-2-1-0-has-been-released/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 00:22:01 +0000</pubDate>
		<dc:creator>kbullock</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://kbullock.ringworld.org/2010/06/04/vlad-hg-version-2-1-0-has-been-released/</guid>
		<description><![CDATA[Mercurial support for Vlad. Using it is as simple as passing
:scm => :mercurial to Vlad when loading it up.

Changes:

2.1.0 / 2010-06-04


1 major enhancement


Add support for deploying with a patch queue. Useful e.g. for setting up a
staging site with minor changes to the production configuration.

http://hitsquad.rubyforge.org/vlad-hg/
http://rubyforge.org/projects/hitsquad/
http://bitbucket.org/krbullock/vlad-hg/

]]></description>
			<content:encoded><![CDATA[<p>Mercurial support for Vlad. Using it is as simple as passing
<tt>:scm => :mercurial</tt> to Vlad when loading it up.</p>

<p>Changes:</p>

<h3>2.1.0 / 2010-06-04</h3>

<ul>
<li><p>1 major enhancement</p>

<ul>
<li>Add support for deploying with a patch queue. Useful e.g. for setting up a
staging site with minor changes to the production configuration.</li>
</ul></li>
<li><p><a href="http://hitsquad.rubyforge.org/vlad-hg/">http://hitsquad.rubyforge.org/vlad-hg/</a></p></li>
<li><p><a href="http://rubyforge.org/projects/hitsquad/">http://rubyforge.org/projects/hitsquad/</a></p></li>
<li><p><a href="http://bitbucket.org/krbullock/vlad-hg/">http://bitbucket.org/krbullock/vlad-hg/</a></p></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kbullock.ringworld.org/2010/06/04/vlad-hg-version-2-1-0-has-been-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More from St. Philippe-St. Jacques</title>
		<link>http://kbullock.ringworld.org/2010/01/31/more-from-st-philippe-st-jacques/</link>
		<comments>http://kbullock.ringworld.org/2010/01/31/more-from-st-philippe-st-jacques/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 04:05:06 +0000</pubDate>
		<dc:creator>kbullock</dc:creator>
				<category><![CDATA[god]]></category>
		<category><![CDATA[haiti]]></category>
		<category><![CDATA[gressier]]></category>
		<category><![CDATA[leogane]]></category>

		<guid isPermaLink="false">http://kbullock.ringworld.org/?p=1591</guid>
		<description><![CDATA[Dianne Pizey spoke again on Saturday to Fr. Kerwin Delicat, priest of St. Philippe-St. Jacques in Gressier, the partner congregation of St. John&#8217;s. She reports from the conversation:


  The Labordes (Joseph Laborde is the lay leader of St. Philippe &#8211; St. Jacques) are all alive and uninjured. Jonas (the oldest son) escaped &#8220;by a [...]]]></description>
			<content:encoded><![CDATA[<p>Dianne Pizey spoke again on Saturday to Fr. Kerwin Delicat, priest of St. Philippe-St. Jacques in Gressier, the partner congregation of <a href="http://www.stjohns-mpls.org/">St. John&#8217;s</a>. She reports from the conversation:</p>

<blockquote>
  <p>The Labordes (Joseph Laborde is the lay leader of St. Philippe &#8211; St. Jacques) are all alive and uninjured. Jonas (the oldest son) escaped &#8220;by a miracle.&#8221; He was at the Episcopal University [in Port-au-Prince], on the roof, when the earthquake occurred. The building collapsed around him, killing many of his classmates and professors. Jonas found a small hole and crawled through &#8220;like a snake.&#8221;</p>
  
  <p>The Labordes&#8217; home is cracked but standing, but, like everyone in the area, they are living and sleeping outside [...] they are having three or four aftershocks a day. Joseph has led morning prayer outside, in front of the collapsed church.</p>
</blockquote>

<p>Kerwin+ himself was reportedly in Port-au-Prince with his brothers, Carlo and Roosnel, when the earthquake occurred. They were stuck in the city overnight, but were able to return to Léogâne on the following day. Kerwin+ has celebrated Eucharist on the grounds at Sainte Croix—Dianne reports, &#8220;he thought nobody would come, but in fact 200 &#8211; 300 people came.&#8221;</p>

<p>With this report, we now know that no one with close ties to St. John&#8217;s, at least, was badly harmed, although their situation remains extremely difficult, and virtually everyone there has lost friends or family. We continue to pray for them, and the Minnesota parishes with partners are discussing how best to help our partner congregations as they begin to rebuild.</p>
]]></content:encoded>
			<wfw:commentRss>http://kbullock.ringworld.org/2010/01/31/more-from-st-philippe-st-jacques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Art exhibition and sale for Haiti relief</title>
		<link>http://kbullock.ringworld.org/2010/01/30/art-exhibition-and-sale-for-haiti-relief/</link>
		<comments>http://kbullock.ringworld.org/2010/01/30/art-exhibition-and-sale-for-haiti-relief/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 05:26:46 +0000</pubDate>
		<dc:creator>kbullock</dc:creator>
				<category><![CDATA[god]]></category>
		<category><![CDATA[haiti]]></category>

		<guid isPermaLink="false">http://kbullock.ringworld.org/?p=1582</guid>
		<description><![CDATA[From a press release from St. James.



On Friday, February 5, 2010,  from 2&#160;p.m. to 8&#160;p.m., the Art for Haiti Relief Committee and St. James on the Parkway (directions) will host an &#8216;Exhibition and Art Sale for Haiti&#8217;.

The exhibit will display paintings, sculpture, and a variety of artifacts at a variety of prices. These works [...]]]></description>
			<content:encoded><![CDATA[<p><em>From a press release from St. James.</em></p>

<p><a href="http://kbullock.ringworld.org/wp-content/uploads/2010/01/100_3265.jpg"><img src="http://kbullock.ringworld.org/wp-content/uploads/2010/01/100_3265-150x150.jpg" alt="Sun metal wall hanging" title="Sun metal wall hanging" width="150" height="150" class="alignright size-thumbnail wp-image-1587" /></a></p>

<p>On <strong>Friday, February 5, 2010,  from 2&nbsp;p.m. to 8&nbsp;p.m.,</strong> the Art for Haiti Relief Committee and <a href="http://www.stjamesotp.org/">St. James on the Parkway</a> (<a href="http://www.stjamesotp.org/contactus/directions.html">directions</a>) will host an &#8216;Exhibition and Art Sale for Haiti&#8217;.</p>

<p>The exhibit will display paintings, sculpture, and a variety of artifacts at a variety of prices. These works are for sale to help raise money for the vast needs of victims in Haiti. All proceeds go to victims of the Haitian earthquake for immediate life saving and sustaining uses.</p>

<p>As everyone now knows, this beautiful but poor country and people have suffered incredible destruction. Haitian history, too, has been rife with difficulties: slavery, colonialism, and natural disasters. Haiti&#8217;s people, by nature, are peaceful, honest, creative and family-loving, which makes their plight all the more close to the hearts of us who have an easier, safer life.</p>

<p>The artworks on display are primarily from Haiti, plus others from the Caribbean and from tribal cultures in Africa, North and South America, India and Oceania. These art pieces and artifacts are infused with essential life-loving and native esthetics, often pure, simple and vivid. Such works have sometimes been called Naive or Primitive Art; at their heart, they invoke warmth, hope, resilience, and joy.</p>

<p><span id="more-1582"></span>
Haitian work includes small paintings of landscapes, farming and village life, as well as reliefs in thin steel that express fantastic animals, figures with foliage, and a &#8216;garden of Eden&#8217;, made of metal cut from oil drums. Small wood carvings show native figures and enchanting animals. Other items for sale include posters, photographs and Haitian coffee.</p>

<p>The &#8220;Exhibition and Art Sale for Haiti&#8221; is free to all. Refreshments will be available.</p>

<p>St. Luke&#8217;s and St. Alban&#8217;s are among Episcopal and other churches helping this one-day activity.</p>

<p>Please help support this relief effort any way you can. Proceeds will be distributed through <a href="http://www.pih.org/">Partners in Health</a> and <a href="http://www.er-d.org/">Episcopal Relief and Development</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kbullock.ringworld.org/2010/01/30/art-exhibition-and-sale-for-haiti-relief/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>News from partner congregations</title>
		<link>http://kbullock.ringworld.org/2010/01/27/news-from-partner-congregations/</link>
		<comments>http://kbullock.ringworld.org/2010/01/27/news-from-partner-congregations/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 04:06:58 +0000</pubDate>
		<dc:creator>kbullock</dc:creator>
				<category><![CDATA[god]]></category>
		<category><![CDATA[haiti]]></category>

		<guid isPermaLink="false">http://kbullock.ringworld.org/?p=1571</guid>
		<description><![CDATA[Since Sunday, several people have established contact with Fr. Kerwin Delicat, the Priest-in-Charge of several of the congregations with partner parishes here in Minnesota. We have received word via Kerwin+ and other sources about the Episcopal congregations in Bigonet and L&#8217;Acul, both partners of Twin Cities parishes, as well as in Jasmine.

Dianne Pizey spoke to [...]]]></description>
			<content:encoded><![CDATA[<p>Since Sunday, several people have established contact with Fr. Kerwin Delicat, the Priest-in-Charge of several of the congregations with partner parishes here in Minnesota. We have received word via Kerwin+ and other sources about the Episcopal congregations in Bigonet and L&#8217;Acul, both partners of Twin Cities parishes, as well as in Jasmine.</p>

<p>Dianne Pizey spoke to Kerwin+ on Monday morning:</p>

<blockquote>
  <p>He told me what we already knew &#8211; Haiti is almost completely destroyed, the church has lost almost everything, every person he knows has lost at least one loved one, everyone is sleeping outside and they have nothing but the clothes on their back, everyone is crying [for] their loved ones.  He didn&#8217;t lose any immediate family, but he lost three cousins in Port au Prince. He lost many, many parishioners from Ste. Croix in Léogâne, including three young people who had just started at the Episcopal University in Port au Prince.</p>
  
  <p>At St. Philippe &#8211; St. Jacques, the church is completely destroyed, and the school is very badly damaged, just like all the other churches and schools. He said there were not many deaths there.</p>
</blockquote>

<p><span id="more-1571"></span></p>

<p>Kerwin+&#8217;s wife, Rholcie, and daughter, Kercie, are both okay but still shaken. Terry Franzen, who leads the Haiti partnership at Christ Church in Norcross, GA, and joined the <a href="http://www.stjohns-mpls.org/">St. John&#8217;s</a> trip to Haiti last June, reports from a conversation with Kerwin+ on Tuesday:</p>

<blockquote>
  <p>[Kerwin+] has made arrangements to get Rholcie and Kercie to the Dominican Republic on Friday and then to Ft. Lauderdale, where Kerwin&#8217;s cousin will meet them.</p>
</blockquote>

<h2>St. Joseph d&#8217;Arimathie, Jasmine</h2>

<p>In the same e-mail, Terry relays news from Kerwin+ about Christ Church&#8217;s partner congregation, of which he is also Priest-in-Charge:</p>

<blockquote>
  <p>Kerwin said that he spoke to Maxo, the lay leader for St. Joseph&#8217;s today. He said that the church is badly cracked and that everyone is sleeping outside because of the damage to their homes and their fear of another quake.</p>
</blockquote>

<h2>Bonne Nouvelle, Bigonet</h2>

<p>Maria Roesler, a friend of Ruth Anne Olson of <a href="http://www.stjamesotp.org/">St. James on the Parkway</a>&#8217;s Haiti partnership, spoke to Kerwin+ on Sunday about Bonne Nouvelle in Bigonet, St. James&#8217; partner congregation.</p>

<blockquote>
  <p>He reports that the church is destroyed and the school was badly damaged, but nobody from the Bonne Nouvelle church or the school died. He did mention another church that is nearby (I didn&#8217;t catch the name) and says that a lot of people from that church died. [...] [M]ost people are sleeping outside, as their houses were destroyed. [...]</p>
  
  <p>He says that they truly need prayer in this time, because many people are crying for family that they have lost. He was encouraged to hear about the <a href="http://www.episcopalmn.org/article224265c3053632.htm">prayer service</a> that was held here for Haiti.</p>
</blockquote>

<h2>Epiphanie, L&#8217;Acul</h2>

<p>Epiphanie, the Episcopal congregation in the town of L&#8217;Acul near Léogâne, is partnered with <a href="http://www.messiahepiscopal.org/">Messiah in Saint Paul</a>. Mike Carlin, co-director of <a href="http://haitifundinc.org/">CODEP</a>, which is located across the road from Epiphanie, sent this report to Suzanne Wiebusch, Messiah&#8217;s liason for their partnership, on Monday:</p>

<blockquote>
  <p>Epiphan[i]e has some serious damage to [its] facility. I will be assessing the damage the[re] later today with an architect that is stopping by.  We worshipped outside yesterday and had a beautiful service.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://kbullock.ringworld.org/2010/01/27/news-from-partner-congregations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accounts of Gressier and Crochu</title>
		<link>http://kbullock.ringworld.org/2010/01/22/accounts-of-gressier-and-crochu/</link>
		<comments>http://kbullock.ringworld.org/2010/01/22/accounts-of-gressier-and-crochu/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 04:43:47 +0000</pubDate>
		<dc:creator>kbullock</dc:creator>
				<category><![CDATA[haiti]]></category>

		<guid isPermaLink="false">http://kbullock.ringworld.org/?p=1555</guid>
		<description><![CDATA[We still haven&#8217;t received any word from our partner congregation in Gressier, but the Boston Haitian Reporter ran this account from Patrick Jean-Louis, who lives in Boston but has a grandmother in Gressier. He had arrived in Haiti the morning of Tuesday the 12th, and twenty-four hours later, running short of food and with no [...]]]></description>
			<content:encoded><![CDATA[<p>We still haven&#8217;t received any word from our partner congregation in Gressier, but the <a href="http://www.bostonhaitian.com/">Boston Haitian Reporter</a> ran <a href="http://www.bostonhaitian.com/2010/eyewitness-boston-man-back-home-earthquake-zone">this account from Patrick Jean-Louis</a>, who lives in Boston but has a grandmother in Gressier. He had arrived in Haiti the morning of Tuesday the 12th, and twenty-four hours later, running short of food and with no way to let his grandmother know that he and the family members he was staying with were okay, set out for Gressier.</p>

<blockquote>
  <p>When Jean-Louis and his family arrived at Gressier, however, they found no one there. Many of the residents had moved to the mountains for fear of remaining near unstable structures or for fear of an oncoming tsunami. Jean-Louis joined his family. [...]</p>
  
  <p>Jean Louis promised the citizens of Gressier, now living in makeshift shelters on the district’s mountainside, he would help raise funds for basic needs like tents, medical supplies, and water.</p>
</blockquote>

<p><a href="http://www.bostonhaitian.com/2010/eyewitness-boston-man-back-home-earthquake-zone">full story</a></p>

<p>We <em>have</em> received word from Crochu, a small mountain village (and also, I believe, an <em>arrondissement</em>) where St. John&#8217;s has done several mobile clinics with Carmel Valdema. <span id="more-1555"></span> Burt Purrington reports:</p>

<blockquote>
  <p>I was especially worried about Berline (&#8220;Méla&#8221;) Vètinèl, a recently-graduated nurse and the daughter of Elinèl Vètinèl, the head lay leader at St. Alban&#8217;s, Crochu. [...] Last Friday, Berline&#8217;s niece, who lives in Atlanta, called to say she&#8217;d talked to Berline and her mother and they were all right although they were staying outside their home because of the fear of aftershocks.</p>
  
  <p>She also told me that there had been some damage at Crochu but that Berline&#8217;s sister, Tazia, and her family were OK.  </p>
  
  <p>This morning, after 10 days of unsuccessful calls from both ways, Tazia and her husband, Louis-Jacques, got through—and I was able to call them back when their calling card got low. [...]</p>
  
  <p>Today I learned that some people in Crochu were injured by the quake, and a cousin of Louis-Jacques was killed (though he may have been in [Port-au-Prince] at the time of the quake).  There was considerable damage at and around Plaisance (and I assume most of southwestern Crochu and perhaps all of Crochu). The damage was especially bad in the poorest communities on top of the mountain above Plaisance and Bouzi.  Vètinèl&#8217;s home collapsed, so Berline doesn&#8217;t have a clinic any more. Tazia &amp; Louis-Jacques&#8217;s home is badly damaged, and their kitchen &amp; twalèt (probably the best in all of [southwest] Crochu) collapsed.  Same with [Louis-Jacques'] mother&#8217;s home on top of the mountain. The sewing machines that Tazia and the young women in her sewing co-op use are badly damaged. A generator that [Louis-Jacques] just bought was damaged too. Thankfully, the spring at Plaisance is still flowing, and people can still go down the mountain to buy rice, cooking oil, spaghetti, canned fish, sugar, salt, etc. at the markets in Bon Repos &amp; Croix-des-Bouquets which is good. The people of Crochu, like most people in rural Haiti, depend on store-bought goods from the cities, and they would be in big trouble if supplies of these staples weren&#8217;t maintained. Because prices for these goods are considerably inflated now, people in poor areas like Crochu will have even greater difficulties keeping their families fed.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://kbullock.ringworld.org/2010/01/22/accounts-of-gressier-and-crochu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Léogâne Nursing School okay after 6.1 quake</title>
		<link>http://kbullock.ringworld.org/2010/01/20/leogane-nursing-school-okay-after-6-1-quake/</link>
		<comments>http://kbullock.ringworld.org/2010/01/20/leogane-nursing-school-okay-after-6-1-quake/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 23:15:38 +0000</pubDate>
		<dc:creator>kbullock</dc:creator>
				<category><![CDATA[god]]></category>
		<category><![CDATA[haiti]]></category>
		<category><![CDATA[medical]]></category>

		<guid isPermaLink="false">http://kbullock.ringworld.org/?p=1547</guid>
		<description><![CDATA[The FSIL School of Nursing reports today that their facility is still standing following this morning&#8217;s magnitude 6.1 earthquake centered at Petit Goave (approximately 20mi west of Léogâne, 40mi west of Port-au-Prince).


  This morning’s quake has widened and lengthened cracks in the walls of the School somewhat, but buildings are still in use.


More importantly, [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.haitinursing.org/">FSIL School of Nursing reports</a> today that their facility is still standing following this morning&#8217;s <a href="http://maps.google.com/maps?f=q&amp;hl=en&amp;q=18.3852,-72.8702(M5.9+-+Haiti+region+-+2010+January+20+11:03:44+UTC)&amp;t=h&amp;ie=UTF8&amp;ll=18.583776,-72.69104&amp;spn=1.408382,1.766052&amp;z=9&amp;iwloc=A">magnitude 6.1 earthquake centered at Petit Goave</a> (approximately 20mi west of Léogâne, 40mi west of Port-au-Prince).</p>

<blockquote>
  <p>This morning’s quake has widened and lengthened cracks in the walls of the School somewhat, but buildings are still in use.</p>
</blockquote>

<p>More importantly, they are still serving patients in Léogâne.</p>

<blockquote>
  <p>Word arrived Tuesday evening that a truck with Dr. Chip Lambert and many supplies arrived at FSIL.  Chip Lambert, M.D. is Director, Mission Service, Medical Benevolence Foundation, partnering with the Presbyterian Church USA. This morning we had word that “Chip is miraculously with Hilda doing great stuff after an heroic effort to pack and transport more than 3000 lbs of just what she needed…”</p>
  
  <p>Dean Hilda Alcindor, students, and a visiting nurse faculty volunteer were mobilized within a half hour after the first quake.  They have set up 10 first aid stations around the town of Léogâne.  The Dean said that 5,000 Léogâne townspeople are being cared for in the yard of the school.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://kbullock.ringworld.org/2010/01/20/leogane-nursing-school-okay-after-6-1-quake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Economics of Aid to Haiti</title>
		<link>http://kbullock.ringworld.org/2010/01/20/the-economics-of-aid-to-haiti/</link>
		<comments>http://kbullock.ringworld.org/2010/01/20/the-economics-of-aid-to-haiti/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 17:22:47 +0000</pubDate>
		<dc:creator>kbullock</dc:creator>
				<category><![CDATA[haiti]]></category>
		<category><![CDATA[charity]]></category>
		<category><![CDATA[economics]]></category>

		<guid isPermaLink="false">http://kbullock.ringworld.org/?p=1540</guid>
		<description><![CDATA[If you&#8217;ll pardon me, I&#8217;ll break from my reporting of confirmed fact today to delve into the realm of analysis and opinion. I shouldn&#8217;t even grace this piece by economist Felix Salmon with a response, but it does bring up many of the misconceptions that might keep people from donating money to charities working in [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ll pardon me, I&#8217;ll break from my reporting of confirmed fact today to delve into the realm of analysis and opinion. I shouldn&#8217;t even grace <a href="http://blogs.reuters.com/felix-salmon/2010/01/15/dont-give-money-to-haiti/">this piece by economist Felix Salmon</a> with a response, but it does bring up many of the misconceptions that might keep people from donating money to charities working in Haiti that is so direly needed. Salmon&#8217;s main point is that giving money that is <em>earmarked</em> for Haiti and Haiti alone can be too restrictive when charities come to use that money. It&#8217;s an ill time to make that observation, but he&#8217;s at least partially right.</p>

<p>What I find more disturbing, though, are the two <em>subtext</em> points he seems to be making:</p>

<ol>
<li><p>Charities working in Haiti already have plenty of money to support their relief efforts there.</p>

<p>His given example is that Doctors Without Borders (Médecins Sans Frontières , or MSF), on their <a href="https://donate.doctorswithoutborders.org/NETCOMMUNITY/SSLPage.aspx?pid=197&amp;hbc=1">US donation page</a>, is asking for unrestricted donations to their general Emergency Relief Fund. From this he extrapolates (<a href="http://blogs.reuters.com/felix-salmon/2010/01/15/dont-give-money-to-haiti/comment-page-1/#comment-11216">falsely</a>) that MSF &#8220;has already received enough money over the past three days to keep its Haiti mission running for the best part of the next decade.&#8221; <span id="more-1540"></span>He goes on to compare the earthquake in Haiti and subsequent outpouring of support to the 2004 tsunami in the Indian Ocean. But as the US Executive Director of Doctors Without Borders <a href="http://blogs.reuters.com/felix-salmon/2010/01/15/dont-give-money-to-haiti/comment-page-1/#comment-11216">points out</a>,</p>

<blockquote>
  <p>comparisons to the Tsunami are misplaced because the medical systems affected by that crisis were not decimated and the short and long term emergency surgical needs of the population were much narrower.</p>
</blockquote>

<p>Furthermore, even if MSF <em>did</em> have plenty of money to support their work in Haiti, <strong>other organizations don&#8217;t.</strong> Groups like <a href="http://www.standwithhaiti.org/">Partners in Health</a>, which is now running the General Hospital in Port-au-Prince, are serving thousands of patients with extremely limited supplies, doing surgery with no anesthesia, making splints out of whatever&#8217;s handy in lieu of casts. They need money to purchase supplies and get them into the country. (Incidentally, they also <a href="http://www.doctorswithoutborders.org/press/release.cfm?id=4176&amp;cat=press-release">need clearance to actually land</a> the planes full of supplies.)</p></li>
<li><p>Money donated to charities working in Haiti won&#8217;t all go to Haiti anyway.</p>

<p>To demonstrate this point Salmon cites the recent <a href="http://www.thesmokinggun.com/archive/years/2010/0114102wyclef1.html">hubbub</a> over accounting at Yéle, and takes particular exception to the fact that 20% of the funds from the <a href="http://news-briefs.ew.com/2010/01/15/haiti-hope-telethon/">George Clooney telethon</a> will go to Yéle. I&#8217;m not convinced that there&#8217;s anything so fishy going on at Yéle as is being alleged, and it may well be racism that&#8217;s partly fueling the scrutiny of that organization in particular. But I would point out that <strong>the other 80%</strong> of money raised by the telethon will go to Oxfam America, Partners in Health, the Red Cross, and UNICEF, organizations that have an established presence in Haiti and are respected for putting all donations to use in the place they&#8217;re needed (although the Red Cross is <a href="http://www.nytimes.com/2006/03/24/national/nationalspecial/24cross.html">not without their share of controversy</a>).</p></li>
</ol>

<p>By all means, when you donate for relief in Haiti, donate unrestricted funds, so that the organizations receiving them can decide for themselves how best to use them. And don&#8217;t let Felix Salmon&#8217;s faulty framing of that point deter you from doing so.</p>

<p>While we&#8217;re at it, let&#8217;s stop referring to Haiti (or any other country?) as a <strong>failed state.</strong> It&#8217;s patronizing and unhelpful, and moreover it insults the Haitian people: Haiti is a country with remarkably functional <em>communities</em>, given the poverty and instability imposed on them (largely by the rest of the world). If its national government is dysfunctional, it&#8217;s not because of any defect in the Haitian temperament or culture that the term &#8216;failed state&#8217; implies.</p>
]]></content:encoded>
			<wfw:commentRss>http://kbullock.ringworld.org/2010/01/20/the-economics-of-aid-to-haiti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CNP Coordinating Léogâne Medical Aid</title>
		<link>http://kbullock.ringworld.org/2010/01/19/cnp-coordinating-leogane-medical-aid/</link>
		<comments>http://kbullock.ringworld.org/2010/01/19/cnp-coordinating-leogane-medical-aid/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 23:16:36 +0000</pubDate>
		<dc:creator>kbullock</dc:creator>
				<category><![CDATA[god]]></category>
		<category><![CDATA[haiti]]></category>

		<guid isPermaLink="false">http://kbullock.ringworld.org/?p=1533</guid>
		<description><![CDATA[Staff of the Children&#8217;s Nutrition Program (CNP) remaining in Haiti are working tirelessly to treat the injured in Léogâne, and to establish a supply chain for medical supplies. Kara Telesmanick reported via e-mail this morning:


  CNP team is in a vehicle on the way to Leogane now to go set up too and jump [...]]]></description>
			<content:encoded><![CDATA[<p>Staff of the <a href="http://www.cnphaiti.org/">Children&#8217;s Nutrition Program (CNP)</a> remaining in Haiti are working tirelessly to treat the injured in Léogâne, and to <a href="http://www.cnphaiti.org/">establish a supply chain</a> for medical supplies. Kara Telesmanick reported via e-mail this morning:</p>

<blockquote>
  <p>CNP team is in a vehicle on the way to Leogane now to go set up too and jump in with what has been started. [...] Save [the Children] and CNP are working on getting camps set up and we&#8217;re addressing food and water issues.</p>
</blockquote>

<p>and in another e-mail:</p>

<blockquote>
  <p>CNP is finalizing a partnership with <a href="http://www.savethechildren.org/">Save the Children</a> and we will work with <a href="http://www.haitinursing.org/">FSIL</a> and the <a href="http://haiti.nd.edu/">Notre Dame Filariasis Program</a> to help in Leogane. Anyone interested in donating to CNP can do so at <a href="http://www.cnphaiti.org/">http://www.cnphaiti.org/</a>.</p>
</blockquote>

<p>According to Suzi Parker, who runs the guesthouse at l&#8217;Hôpital Sainte Croix and has been in relatively regular e-mail communication with CNP staff, the hospital is helping <a href="http://www.doctorswithoutborders.org/">Doctors Without Borders</a> to set up surgical facilities in Léogâne:</p>

<p><span id="more-1533"></span></p>

<blockquote>
  <p>There are 3 areas of medical care in Leogane right now besides at HSC [Hôpital Sainte Croix].  The nursing school [<a href="http://www.haitinursing.org/">FSIL</a>] which operates under the umbrella of HSC has seen an enormous number of people, and had several babies born there. The soccer field in town also has seen lots of patients, and I hear that the UN compound just outside town has a group there. All over town, tent cities have grown up, and folks are building lean-to&#8217;s from salvaged building materials. [...]</p>
  
  <p>Latest news is that Doctors Without Borders is setting up an operating unit in the field behind the hospital, using our electrical and water.  We are lending them gas from the generator until they are operational, hopefully by tomorrow.  Another NGO, Caritas, wearing Catholic Relief Services t-shirts will come and help in the day clinic.  Good news, as they talked about docs, pharmacist, and supplies, and we need more of all of them.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://kbullock.ringworld.org/2010/01/19/cnp-coordinating-leogane-medical-aid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
