<?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>Jamie&#039;s Blog</title>
	<atom:link href="http://www.angelforge.org/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.angelforge.org/wordpress</link>
	<description>My life is words.</description>
	<lastBuildDate>Wed, 10 Mar 2010 20:26:43 +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>Connie Duckworth Talk</title>
		<link>http://www.angelforge.org/wordpress/presentations/connie-duckworth-talk/</link>
		<comments>http://www.angelforge.org/wordpress/presentations/connie-duckworth-talk/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 20:26:43 +0000</pubDate>
		<dc:creator>Jamie</dc:creator>
				<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://www.angelforge.org/wordpress/?p=2345</guid>
		<description><![CDATA[I went to hear Connie Duckworth speak today. I thought she was a great  and inspiring speaker. There were two main takeaways that I got from the  talk were that one should treat every job as a learning experience and  that people are their own roadblocks.
These are two ideas that I  [...]]]></description>
			<content:encoded><![CDATA[<p>I went to hear Connie Duckworth speak today. I thought she was a great  and inspiring speaker. There were two main takeaways that I got from the  talk were that one should treat every job as a learning experience and  that people are their own roadblocks.</p>
<p>These are two ideas that I  try to live by in my everyday life. Firstly, I try to make all of life a  learning experience. Every interaction with a person is something I can  learn from. Every minute of the day can be spent either consuming  information or processing information I already have. Even when I&#8217;m  physically busy doing something else such as exercising, that time can  be spent in deep contemplation and learning.</p>
<p>The other idea that I  thought was especially important is that idea that people limit  themselves with their own preconceptions. I am someone who believes in  the infinite possibilities of the human mind, and try to live to that  ideal. I have often heard acquaintances and friends idly wish that they  possessed some knowledge or a particular skill, and then lament that  they cannot do so. There is often some made up reason that they cannot  reach their goal or be what they want to be.</p>
<p>It was a great talk  and I hope to hear from many great minds during my time here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.angelforge.org/wordpress/presentations/connie-duckworth-talk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Date Validation in ColdFusion</title>
		<link>http://www.angelforge.org/wordpress/programming/date-validation-in-coldfusion/</link>
		<comments>http://www.angelforge.org/wordpress/programming/date-validation-in-coldfusion/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 14:26:18 +0000</pubDate>
		<dc:creator>Jamie</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[NaN]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.angelforge.org/wordpress/?p=2295</guid>
		<description><![CDATA[Someone asked me about Date Validation the other day. Here are two simple approaches for use in your CF apps.
Assume that the strDate variable contains your date. On the server-side, you may use IsDate(strDate). On the client side, !isNaN(new Date(strDate)). I don&#8217;t know for sure if the client-side code is the best way to do [...]]]></description>
			<content:encoded><![CDATA[<p>Someone asked me about Date Validation the other day. Here are two simple approaches for use in your CF apps.</p>
<p>Assume that the strDate variable contains your date. On the server-side, you may use IsDate(strDate). On the client side, !isNaN(new Date(strDate)). I don&#8217;t know for sure if the client-side code is the best way to do it. There are RE-based techniques, but these are the most concise.</p>
<p>CFML:</p>
<pre class="brush: sql;">
    &lt;cfoutput&gt;
      &lt;cfset strDate1 = &quot;2001 Fazuary 1&quot;/&gt;
      &lt;cfset strDate2 = &quot;2001 Feb 1&quot; /&gt;

        #IsDate(strDate1)#&lt;br&gt;
        #isDate(strDate2)#

    &lt;/cfoutput&gt;

    &lt;!---

    Outputs:

    NO
    YES

    ---&gt;
</pre>
<p>Client-side Javascript:</p>
<pre class="brush: jscript;">
    &lt;script&gt;
    // This creates a function to test the string.
    // What is this function doing? It takes the
    // strDate string and attempts to convert it into
    // a Date object using the Date constructor.
    // When the Date constructor cannot convert the
    // string, it returns NaN (not a number).
    // So, we wind up testing for NOT NaN using
    // !isNaN. Don't ask me why the Date constructor
    // returns NaN and not NaD (not a date)! =D
    function isDate(strDate) { return !isNaN(new Date(strDate)); }

    var strDate1 = &quot;2001 Fazuary 1&quot;,
        strDate2 = &quot;2001 Feb 1&quot;;

    alert(
        isDate(strDate1) + '\n' +
        isDate(strDate2)
    );

    //
    // Brings up an alert window that says:
    //
    // false
    // true

    &lt;/script&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.angelforge.org/wordpress/programming/date-validation-in-coldfusion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-03-07</title>
		<link>http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-03-07-2/</link>
		<comments>http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-03-07-2/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 15:22:00 +0000</pubDate>
		<dc:creator>Jamie</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-03-07-2/</guid>
		<description><![CDATA[
I subscribed to HuskyStarcraft&#39;s channel on YouTube http://www.youtube.com/user/HuskyStarcraft?feature=autoshare_twitter #
watir automated web browser testing framework http://icio.us/gw03rf #
vg boxart http://icio.us/yemrpa #
@dalig @hectcastro google burn! in reply to dalig #
@hectcastro lol, touche! in reply to hectcastro #
New comment this week on &#34;We Will Beat the Top 5 Games In This Thread (without sleeping)&#34; http://bt.io/EbKV #

Powered by Twitter Tools
]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>I subscribed to HuskyStarcraft&#39;s channel on YouTube <a href="http://www.youtube.com/user/HuskyStarcraft?feature=autoshare_twitter" rel="nofollow">http://www.youtube.com/user/HuskyStarcraft?feature=autoshare_twitter</a> <a href="http://twitter.com/jamiealy/statuses/9802962780" class="aktt_tweet_time">#</a></li>
<li>watir automated web browser testing framework <a href="http://icio.us/gw03rf" rel="nofollow">http://icio.us/gw03rf</a> <a href="http://twitter.com/jamiealy/statuses/9829848847" class="aktt_tweet_time">#</a></li>
<li>vg boxart <a href="http://icio.us/yemrpa" rel="nofollow">http://icio.us/yemrpa</a> <a href="http://twitter.com/jamiealy/statuses/9906954821" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dalig" class="aktt_username">dalig</a> @hectcastro google burn! <a href="http://twitter.com/dalig/statuses/9938828447" class="aktt_tweet_reply">in reply to dalig</a> <a href="http://twitter.com/jamiealy/statuses/9939331185" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/hectcastro" class="aktt_username">hectcastro</a> lol, touche! <a href="http://twitter.com/hectcastro/statuses/9939405866" class="aktt_tweet_reply">in reply to hectcastro</a> <a href="http://twitter.com/jamiealy/statuses/9939518884" class="aktt_tweet_time">#</a></li>
<li>New comment this week on &quot;We Will Beat the Top 5 Games In This Thread (without sleeping)&quot; <a href="http://bt.io/EbKV" rel="nofollow">http://bt.io/EbKV</a> <a href="http://twitter.com/jamiealy/statuses/9951400563" class="aktt_tweet_time">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-03-07-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-03-07</title>
		<link>http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-03-07/</link>
		<comments>http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-03-07/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 15:22:00 +0000</pubDate>
		<dc:creator>Jamie</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-03-07/</guid>
		<description><![CDATA[
I subscribed to HuskyStarcraft&#39;s channel on YouTube http://www.youtube.com/user/HuskyStarcraft?feature=autoshare_twitter #
watir automated web browser testing framework http://icio.us/gw03rf #
vg boxart http://icio.us/yemrpa #
@dalig @hectcastro google burn! in reply to dalig #
@hectcastro lol, touche! in reply to hectcastro #
New comment this week on &#34;We Will Beat the Top 5 Games In This Thread (without sleeping)&#34; http://bt.io/EbKV #

Powered by Twitter Tools
]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>I subscribed to HuskyStarcraft&#39;s channel on YouTube <a href="http://www.youtube.com/user/HuskyStarcraft?feature=autoshare_twitter" rel="nofollow">http://www.youtube.com/user/HuskyStarcraft?feature=autoshare_twitter</a> <a href="http://twitter.com/jamiealy/statuses/9802962780" class="aktt_tweet_time">#</a></li>
<li>watir automated web browser testing framework <a href="http://icio.us/gw03rf" rel="nofollow">http://icio.us/gw03rf</a> <a href="http://twitter.com/jamiealy/statuses/9829848847" class="aktt_tweet_time">#</a></li>
<li>vg boxart <a href="http://icio.us/yemrpa" rel="nofollow">http://icio.us/yemrpa</a> <a href="http://twitter.com/jamiealy/statuses/9906954821" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dalig" class="aktt_username">dalig</a> @hectcastro google burn! <a href="http://twitter.com/dalig/statuses/9938828447" class="aktt_tweet_reply">in reply to dalig</a> <a href="http://twitter.com/jamiealy/statuses/9939331185" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/hectcastro" class="aktt_username">hectcastro</a> lol, touche! <a href="http://twitter.com/hectcastro/statuses/9939405866" class="aktt_tweet_reply">in reply to hectcastro</a> <a href="http://twitter.com/jamiealy/statuses/9939518884" class="aktt_tweet_time">#</a></li>
<li>New comment this week on &quot;We Will Beat the Top 5 Games In This Thread (without sleeping)&quot; <a href="http://bt.io/EbKV" rel="nofollow">http://bt.io/EbKV</a> <a href="http://twitter.com/jamiealy/statuses/9951400563" class="aktt_tweet_time">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-03-07/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4-Ball Juggling Practice</title>
		<link>http://www.angelforge.org/wordpress/hobbies/4-ball-juggling-practice/</link>
		<comments>http://www.angelforge.org/wordpress/hobbies/4-ball-juggling-practice/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 02:27:40 +0000</pubDate>
		<dc:creator>Jamie</dc:creator>
				<category><![CDATA[Hobbies]]></category>
		<category><![CDATA[juggling]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.angelforge.org/wordpress/?p=2306</guid>
		<description><![CDATA[The next trick I am trying to work on is 4-ball juggling. Here are some practice takes:


]]></description>
			<content:encoded><![CDATA[<p>The next trick I am trying to work on is 4-ball juggling. Here are some practice takes:</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/HFjYf_yLoqI&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HFjYf_yLoqI&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/PskbZVjZnVw&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/PskbZVjZnVw&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.angelforge.org/wordpress/hobbies/4-ball-juggling-practice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacBook Pro Desktop</title>
		<link>http://www.angelforge.org/wordpress/workstation/macbook-pro-desktop/</link>
		<comments>http://www.angelforge.org/wordpress/workstation/macbook-pro-desktop/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 03:25:09 +0000</pubDate>
		<dc:creator>Jamie</dc:creator>
				<category><![CDATA[Workstation]]></category>
		<category><![CDATA[cute]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[domo]]></category>
		<category><![CDATA[icon]]></category>

		<guid isPermaLink="false">http://www.angelforge.org/wordpress/?p=2120</guid>
		<description><![CDATA[My MacBook desktop. Is there such a thing as too cute?

]]></description>
			<content:encoded><![CDATA[<p>My MacBook desktop. Is there such a thing as too cute?</p>
<p><a href="http://www.angelforge.org/wordpress/wp-content/uploads/2010/02/Screen-shot-2010-02-04-at-10.23.38-PM.png"><img src="http://www.angelforge.org/wordpress/wp-content/uploads/2010/02/Screen-shot-2010-02-04-at-10.23.38-PM-300x187.png" alt="" title="Screen shot 2010-02-04 at 10.23.38 PM" width="300" height="187" class="aligncenter size-medium wp-image-2121" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.angelforge.org/wordpress/workstation/macbook-pro-desktop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bubble Breaker Using Canvas!</title>
		<link>http://www.angelforge.org/wordpress/programming/bubble-breaker-using-canvas/</link>
		<comments>http://www.angelforge.org/wordpress/programming/bubble-breaker-using-canvas/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 13:00:20 +0000</pubDate>
		<dc:creator>Jamie</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[bubble breaker]]></category>
		<category><![CDATA[canvas]]></category>
		<category><![CDATA[foss]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[game programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[puzzle]]></category>

		<guid isPermaLink="false">http://www.angelforge.org/wordpress/?p=2325</guid>
		<description><![CDATA[I wanted to try out some canvas element functionality, given that I have a feeling it will steal a lot of Flash&#8217;s thunder. I whipped up a bubble-breaker game (the mechanic should be very familiar to you) in a few hours. Enjoy the demo! I may do a quick write up at a later point.
I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to try out some canvas element functionality, given that I have a feeling it will steal a lot of Flash&#8217;s thunder. I whipped up a bubble-breaker game (the mechanic should be very familiar to you) in a few hours. Enjoy the demo! I may do a quick write up at a later point.</p>
<p>I&#8217;ve only tested it in Firefox 3.6. I do not know whether it will work in other browsers.</p>
<p><a href="/demos/bubble-breaker-canvas/">Demo</a><br />
<a href="http://code.google.com/p/bubble-breaker-canvas/">Project site</a></p>
<p><a href="http://www.angelforge.org/wordpress/wp-content/uploads/2010/03/Screen-shot-2010-02-28-at-2.40.34-AM.png"></p>
<div id="attachment_2340" class="wp-caption aligncenter" style="width: 284px"><a href="http://www.angelforge.org/wordpress/wp-content/uploads/2010/03/Screen-shot-2010-02-28-at-1.11.33-PM.png"><img class="size-full wp-image-2340" title="bubble breaker 13x13" src="http://www.angelforge.org/wordpress/wp-content/uploads/2010/03/Screen-shot-2010-02-28-at-1.11.33-PM.png" alt="bubble breaker 13x13" width="274" height="325" /></a><p class="wp-caption-text">bubble breaker 13x13</p></div>
<p></a></p>
<div id="attachment_2341" class="wp-caption aligncenter" style="width: 627px"><a href="http://www.angelforge.org/wordpress/wp-content/uploads/2010/03/Screen-shot-2010-02-28-at-1.11.11-PM.png"><img class="size-full wp-image-2341" title="bubble breaker 30x30" src="http://www.angelforge.org/wordpress/wp-content/uploads/2010/03/Screen-shot-2010-02-28-at-1.11.11-PM.png" alt="bubble breaker 30x30" width="617" height="659" /></a><p class="wp-caption-text">bubble breaker 30x30</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.angelforge.org/wordpress/programming/bubble-breaker-using-canvas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-02-28</title>
		<link>http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-02-28/</link>
		<comments>http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-02-28/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 15:22:00 +0000</pubDate>
		<dc:creator>Jamie</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-02-28/</guid>
		<description><![CDATA[
http://icio.us/tbfdxv #
jsFiddle web IDE http://icio.us/21oj0o #
codemirror in-browser editing http://icio.us/qlwyr4 #
New comment this week on &#34;We Will Beat the Top 5 Games In This Thread (without sleeping)&#34; http://bt.io/EYZW #
doom iphone code review http://icio.us/kb1ycy #

Powered by Twitter Tools
]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li><a href="http://icio.us/tbfdxv" rel="nofollow">http://icio.us/tbfdxv</a> <a href="http://twitter.com/jamiealy/statuses/9536039090" class="aktt_tweet_time">#</a></li>
<li>jsFiddle web IDE <a href="http://icio.us/21oj0o" rel="nofollow">http://icio.us/21oj0o</a> <a href="http://twitter.com/jamiealy/statuses/9549110974" class="aktt_tweet_time">#</a></li>
<li>codemirror in-browser editing <a href="http://icio.us/qlwyr4" rel="nofollow">http://icio.us/qlwyr4</a> <a href="http://twitter.com/jamiealy/statuses/9549210800" class="aktt_tweet_time">#</a></li>
<li>New comment this week on &quot;We Will Beat the Top 5 Games In This Thread (without sleeping)&quot; <a href="http://bt.io/EYZW" rel="nofollow">http://bt.io/EYZW</a> <a href="http://twitter.com/jamiealy/statuses/9603543519" class="aktt_tweet_time">#</a></li>
<li>doom iphone code review <a href="http://icio.us/kb1ycy" rel="nofollow">http://icio.us/kb1ycy</a> <a href="http://twitter.com/jamiealy/statuses/9643334633" class="aktt_tweet_time">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.angelforge.org/wordpress/twitter/twitter-weekly-updates-for-2010-02-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summary: The Checklist Manifesto – Chapter 9: The Save</title>
		<link>http://www.angelforge.org/wordpress/books/summary-the-checklist-manifesto-%e2%80%93-chapter-9-the-save/</link>
		<comments>http://www.angelforge.org/wordpress/books/summary-the-checklist-manifesto-%e2%80%93-chapter-9-the-save/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 03:39:58 +0000</pubDate>
		<dc:creator>Jamie</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[checklist]]></category>
		<category><![CDATA[checklist manifesto]]></category>
		<category><![CDATA[gawande]]></category>

		<guid isPermaLink="false">http://www.angelforge.org/wordpress/?p=2157</guid>
		<description><![CDATA[Even after all this research Gawande still doesn&#8217;t instill all his faith into the checklist as a tool for surgeons. Then, in the spring of 2007, he has a close call with a patient, who experiences complications. Thanks to the checklist, they have a supply of blood ready that is able to keep the patient [...]]]></description>
			<content:encoded><![CDATA[<p>Even after all this research Gawande still doesn&#8217;t instill all his faith into the checklist as a tool for surgeons. Then, in the spring of 2007, he has a close call with a patient, who experiences complications. Thanks to the checklist, they have a supply of blood ready that is able to keep the patient alive to complete the surgery. Gawande becomes a true believer.</p>
<p><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=angelforgeorg-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=1846683130" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.angelforge.org/wordpress/books/summary-the-checklist-manifesto-%e2%80%93-chapter-9-the-save/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summary: The Checklist Manifesto – Chapter 8: The Hero in the Age of Checklists</title>
		<link>http://www.angelforge.org/wordpress/books/summary-the-checklist-manifesto-%e2%80%93-chapter_8_the_hero_in_the_age_of_checklists/</link>
		<comments>http://www.angelforge.org/wordpress/books/summary-the-checklist-manifesto-%e2%80%93-chapter_8_the_hero_in_the_age_of_checklists/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 03:34:46 +0000</pubDate>
		<dc:creator>Jamie</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[checklist]]></category>
		<category><![CDATA[checklist manifesto]]></category>
		<category><![CDATA[gawande]]></category>

		<guid isPermaLink="false">http://www.angelforge.org/wordpress/?p=2145</guid>
		<description><![CDATA[Even though checklists seem like a simple, effective solution to the problem of mistakes in procedure, there are behavioral problems to surmount in adoption. Institutions seem more willing to pay for multimillion dollar surgical robots with limited cost-benefit than try to imprlmeent checklists. Doctors are reluctant to accept them, and see the true spirit of [...]]]></description>
			<content:encoded><![CDATA[<p>Even though checklists seem like a simple, effective solution to the problem of mistakes in procedure, there are behavioral problems to surmount in adoption. Institutions seem more willing to pay for multimillion dollar surgical robots with limited cost-benefit than try to imprlmeent checklists. Doctors are reluctant to accept them, and see the true spirit of these tools, which are to encourage teamwork and strive for discipline. The medical field is still a little liek the test pilot culture of the 50s. There is a cultural legacy that seems threatened by checklists. In finance, there is also hesitation to adopt the checklist as a tool. Psychologist Geoff Smart found the same hesitation in venture capital. Those investors dubbed &#8220;Airline Captains&#8221; take a methodical approach but most are &#8220;Art Critics&#8221; or &#8220;Sponges.&#8221;</p>
<p>Gawande talks about US Airways Flight 1549 and its emergency landing in the Hudson, which was a triumph of the pilot checklist, rather than a single heroic victory of the captain.</p>
<p>All professional occupations have three elements in common:</p>
<ul>
<li> selflessness</li>
<li> skill</li>
<li> trustworthiness</li>
<li> pilots also have: discipline</li>
</ul>
<p>Maybe we should all strive for more dsicipline? Systems are an integral part of the complex system of heath. The way the health system is designed now is piecemeal. There needs to be more integration. Checklists can be the tool to improve this integration.</p>
<p><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=angelforgeorg-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=1846683130" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.angelforge.org/wordpress/books/summary-the-checklist-manifesto-%e2%80%93-chapter_8_the_hero_in_the_age_of_checklists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
