<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Food for thought from TheHuey</title>
	<atom:link href="http://www.thehuey.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thehuey.com/blog</link>
	<description>News and other posts for friends and family</description>
	<pubDate>Tue, 02 Sep 2008 16:49:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>NYT Double-click annoyance</title>
		<link>http://www.thehuey.com/blog/2008/09/02/nyt-double-click-annoyance/</link>
		<comments>http://www.thehuey.com/blog/2008/09/02/nyt-double-click-annoyance/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 16:49:26 +0000</pubDate>
		<dc:creator>huey</dc:creator>
		
		<category><![CDATA[General Posts]]></category>

		<category><![CDATA[new york times annoyance]]></category>

		<guid isPermaLink="false">http://www.thehuey.com/blog/?p=47</guid>
		<description><![CDATA[Dear NYT,
I thank you for making your excellent articles available for free and I get a majority of my news from you.  I don&#8217;t even mind paying a bit for archived articles.  However, in your eagerness to boost pageviews and revenue, you created a bastard child called altClickSearch.js.  This little bugger has [...]]]></description>
			<content:encoded><![CDATA[<p>Dear NYT,</p>
<p>I thank you for making your excellent articles available for free and I get a majority of my news from you.  I don&#8217;t even mind paying a bit for archived articles.  However, in your eagerness to boost pageviews and revenue, you created a bastard child called altClickSearch.js.  This little bugger has caused me untold grief as I like to highlight as I read, double-clicking becomes an instinctual action.  I can&#8217;t deal with the pop-ups that even Firefox 3 won&#8217;t block.</p>
<p>As I write this, I would like to put a little more room between us.  I feel smothered with your constant attention to what I highlight.  My other friend Greasemonkey has shown me a wonderful relationship modifier that is allowing me to proceed with my sanity intact, appropriately called &#8220;New York Times (NYT) Sanity&#8221;.</p>
<p>Thanks and please keep up the excellent articles.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehuey.com/blog/2008/09/02/nyt-double-click-annoyance/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zend Layout and Navigation</title>
		<link>http://www.thehuey.com/blog/2008/04/01/zend-layout-and-navigation/</link>
		<comments>http://www.thehuey.com/blog/2008/04/01/zend-layout-and-navigation/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 06:56:20 +0000</pubDate>
		<dc:creator>huey</dc:creator>
		
		<category><![CDATA[Technical Musings]]></category>

		<guid isPermaLink="false">http://www.thehuey.com/blog/archives/44</guid>
		<description><![CDATA[I&#8217;m not sure how everyone else is using Zend_Layout, but I&#8217;m doing the following to render my navigation and footer links.  It&#8217;s not the most DRY code, but works until I learn more about the framework.
In my Action file, I add actions to the stack for nav, footer, etc.

class IndexController extends ....
{
  function [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure how everyone else is using Zend_Layout, but I&#8217;m doing the following to render my navigation and footer links.  It&#8217;s not the most DRY code, but works until I learn more about the framework.</p>
<p>In my Action file, I add actions to the stack for nav, footer, <span id="more-44"></span>etc.<br />
<code><br />
class IndexController extends ....<br />
{<br />
  function indexAction()<br />
  {<br />
      $this->_helper->actionStack('main', 'nav', 'default');<br />
      $this->_helper->actionStack('footer', 'nav', 'default');<br />
      $this->_helper->actionStack('right', 'nav', 'default');<br />
     /* other stuff */<br />
  }<br />
}<br />
</code></p>
<p>Then I have a NavController that simply calls setResponseSegment or renderScript to set the named variables.</p>
<p><code><br />
class NavController ..<br />
{<br />
  function footerAction()<br />
  {<br />
     /* Stuff to display */<br />
    $this->renderScript('nav/footer.phtml', 'nav');<br />
    // Or I could use<br />
    // $this->_helper->viewRenderer->setResponseSegment('nav');<br />
  }<br />
}<br />
</code></p>
<p>This allows me to finally use the nav variable in my layout file<br />
layout/default.phtml<br />
<code><br />
echo $this->layout()->nav;<br />
</code><br />
Simple eh?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehuey.com/blog/2008/04/01/zend-layout-and-navigation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zend Framework 1.5.1 and my Models code</title>
		<link>http://www.thehuey.com/blog/2008/04/01/zend-framework-151-and-my-models-code/</link>
		<comments>http://www.thehuey.com/blog/2008/04/01/zend-framework-151-and-my-models-code/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 22:25:02 +0000</pubDate>
		<dc:creator>huey</dc:creator>
		
		<category><![CDATA[Technical Musings]]></category>

		<guid isPermaLink="false">http://www.thehuey.com/blog/archives/43</guid>
		<description><![CDATA[Someone asked how I get a db connection in my models using ZF1.5.1
Basically I have a ConfigDB singleton pattern that gets one db connection, then sets the default adapter so when I extend the Zend_DB_Table_Abstract class, the default connection gets carried around.
class ConfigDB {
  static private $instance;
  private function __construct() {
  }
 [...]]]></description>
			<content:encoded><![CDATA[<p>Someone asked how I get a db connection in my models using ZF1.5.1</p>
<p>Basically I have a ConfigDB singleton pattern that gets one db connection, then sets the default adapter so when I extend the Zend_DB_Table_Abstract class, the default connection gets carried around.</p>
<p><code>class ConfigDB {<br />
  static private $instance;<br />
  private function __construct() {<br />
  }<br />
  public static function getInstance() {<br />
    if (!ConfigDB::$instance) {<br />
      $params = array(<br />
/* redacted */<br />
      );<br />
      ConfigDB::$instance = Zend_Db::factory('Mysqli', $params);<br />
      Zend_Db_Table_Abstract::setDefaultAdapter(ConfigDB::$instance);<br />
    }<br />
    return ConfigDB::$instance;<br />
  }<br />
  public static function selectDb($db) {<br />
    return ConfigDB::$instance->getConnection()->select_db($db);<br />
  }<br />
}<br />
ConfigDB::getInstance();<br />
</code><br />
That grabs the connection and sets the default adapter.  So in my model class I can do:<br />
<code>class Country extends Zend_Db_Table_Abstract {<br />
 protected $_name = 'countries';<br />
 protected $_primary = 'country_id';<br />
 function __construct($country = 1, $abbr = '')<br />
 {<br />
  parent::__construct();<br />
 }<br />
}</code></p>
<p>That&#8217;s it</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehuey.com/blog/2008/04/01/zend-framework-151-and-my-models-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Baby Kaylan has arrived!</title>
		<link>http://www.thehuey.com/blog/2008/02/28/baby-kaylan-has-arrived/</link>
		<comments>http://www.thehuey.com/blog/2008/02/28/baby-kaylan-has-arrived/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 17:05:27 +0000</pubDate>
		<dc:creator>huey</dc:creator>
		
		<category><![CDATA[Baby News]]></category>

		<guid isPermaLink="false">http://www.thehuey.com/blog/archives/42</guid>
		<description><![CDATA[ I&#8217;ve finally gotten the time to put up pictures of our newest addition, Kaylan.  She arrived Feb. 25th at 9:36AM weighing in just under 8 lbs and measuring 19 inches long.  A little bit under her sister Audrey&#8217;s weight and length, Kaylan came out very angry and hungry.  You see, we [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.thehuey.com/imgs/blog/BirthAnnounce.jpg" alt="Baby Kaylan Hu" /> I&#8217;ve finally gotten the time to put up pictures of our newest addition, Kaylan.  She arrived Feb. 25th at 9:36AM weighing in just under 8 lbs and measuring 19 inches long.  A little bit under her sister Audrey&#8217;s weight and length, Kaylan came out very angry and hungry.  You see, we interrupted her beauty sleep and she wasn&#8217;t quite ready to meet us yet.  Mommy Yun is doing very well.  This time we skipped the long labor part and went with a scheduled C-section so Mom is recovering much faster.  They were doing some pain study at Stanford Hospital so Mommy had a local anesthetic delivery system for the incision.  This reduced the pain quite a bit for the 2 days it was in and if your insurance pays for it, I&#8217;d highly recommend it.  It reduces the side effects of pain pills and IV injections because the medication is delivered straight to the surgery site.</p>
<p>Kaylan is getting in a regular schedule now of crying every two hours, being fed, then sleeping until the next cycle.  Great things come in small packages, unless of course it comes in a disposable diaper.  Once you get used to the lack of sleep and the fatigue, babies are truly wonderful.  Every little tot is a gift to be treasured.  Their smiles, cries, and every little movement is something to be remembered.  They are growing every day and the challenges of parenting change along with them.  Mommy and I are both looking forward to helping our little bit of heaven grow into a beautiful little angel.</p>
<p>-Mom and Dad</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehuey.com/blog/2008/02/28/baby-kaylan-has-arrived/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Business Intelligence Software - What&#8217;s your favorite?</title>
		<link>http://www.thehuey.com/blog/2007/11/16/business-intelligence-whats-your-favorite/</link>
		<comments>http://www.thehuey.com/blog/2007/11/16/business-intelligence-whats-your-favorite/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 01:18:45 +0000</pubDate>
		<dc:creator>huey</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<guid isPermaLink="false">http://www.thehuey.com/blog/archives/40</guid>
		<description><![CDATA[I&#8217;ve been tasked recently with investigating business intelligence tools for our company.  Every business has metrics and trends that they need to keep a good pulse on. Sometimes the things to measure are easy to define, and sometimes no one knows what they are looking for.
There are plenty of offerings out there. Most notably [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been tasked recently with investigating business intelligence tools for our company.  Every business has metrics and trends that they need to keep a good pulse on. Sometimes the things to measure are easy to define, and sometimes no one knows what they are looking for.</p>
<p>There are plenty of offerings out there. Most notably <a href="http://www.microstrat.com/" rel="nofollow">MicroStrategies</a>, <a href="http://www.oracle.com/" rel="nofollow">Oracle</a>, <a href="http://www.sap.com" rel="nofollow">SAP</a>, and more.  Of course most of the ones I just listed are simply not cost feasible for a small company to explore. To pay to play, it&#8217;s easy to lay out over $100K just to get something basic.  Of course my budget was much much smaller than that so my boss pointed me towards an open source project called <a href="http://www.pentaho.org/">Pentaho</a> and I have been steeped in it for the past month.</p>
<p>The <a href="http://community.pentaho.com/index.php">documentation for Pentaho</a> is pretty comprehensive if you are educated in the technologies involved.  But for me, I had to get familiar with quite a few things before getting to do something useful.</p>
<p>Over the next few weeks, I will post up progress and some small tutorials to help someone new get started with the world of Pentaho.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehuey.com/blog/2007/11/16/business-intelligence-whats-your-favorite/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sudoku, Fad or Fun?</title>
		<link>http://www.thehuey.com/blog/2007/08/02/sudoku-fad-or-fun/</link>
		<comments>http://www.thehuey.com/blog/2007/08/02/sudoku-fad-or-fun/#comments</comments>
		<pubDate>Fri, 03 Aug 2007 07:09:38 +0000</pubDate>
		<dc:creator>huey</dc:creator>
		
		<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://www.thehuey.com/blog/archives/38</guid>
		<description><![CDATA[It&#8217;s been more than 2 years since the number game sudoku started spreading internationally.  During that time, it has popped up in many daily publications and numerous websites have created their own dedications to the game.  A subset of latin squares (or magic squares), it is logic based and purports to help sharpen [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been more than 2 years since the number game sudoku started spreading internationally.  During that time, it has popped up in many daily publications and numerous websites have created their own dedications to the game.  A subset of latin squares (or magic squares), it is logic based and purports to help sharpen one&#8217;s mind.  Nintendo has used it (very successfully) to market their DS game platform [<asin>B000EGELP0</asin>]. Palm also has multiple publishers of sudoku games.  My question is &#8220;How long will people play Sudoku?&#8221;</p>
<p>When I first found the game, it was <a href="http://www.websudoku.com" rel="nofollow noindex">Websudoku.com</a> that provided an easy and addictive introduction to the game.  I spent numerous free hours trying to improve my solving skills.  However, after writing a javascript sudoku solver in 2006, I&#8217;ve found that only very occasionally will I even think about it anymore.  Is this common?  How many of you are/were addicted to sudoku?</p>
<p>Seems like I can&#8217;t even goto the grocery store anymore without having sudoku puzzle books taking up valuable checkout line shelf space. Unlike crossword puzzles, sudoku does not expand your vocabulary.  It also doesn&#8217;t help with making word associations and re-enforce current events. Is it just the biggest productivity sapper ever created?</p>
<p>Well, for me anyway, it&#8217;s helped me polish up some javascript coding. I recently finished revamping my solver to allow actual game play. Still needs some more TLC and some sticky features, but some features are fairly unique to the online sudoku games.  For instance, my implementation allows you to take a snapshot of your work so you can go back if it gets hopelessly messy. I should allow you to save the progress and come back, but that&#8217;s for a future release. My <a href="http://www.numbercrazy.com/">best Sudoku puzzle game</a> can be found at http://www.numbercrazy.com/.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehuey.com/blog/2007/08/02/sudoku-fad-or-fun/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft Club Live Games Solved. Flexicon, Clink, CrossWire, and Dingbats solutions search</title>
		<link>http://www.thehuey.com/blog/2007/06/25/microsoft-club-live-games-solved-flexicon-clink-crosswire-and-dingbats-solutions-search/</link>
		<comments>http://www.thehuey.com/blog/2007/06/25/microsoft-club-live-games-solved-flexicon-clink-crosswire-and-dingbats-solutions-search/#comments</comments>
		<pubDate>Mon, 25 Jun 2007 23:27:30 +0000</pubDate>
		<dc:creator>huey</dc:creator>
		
		<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://www.thehuey.com/blog/archives/37</guid>
		<description><![CDATA[This is a follow-up post to my last post Microsoft is desperate.  After writing up a quick Anagram solver for Chicktionary, I&#8217;ve fixed up the script to handle some other games as well.  Now the new GreaseMonkey script can help with Flexicon, Clink, CrossWire and Dingbats.  To get the most out of [...]]]></description>
			<content:encoded><![CDATA[<p>This is a follow-up post to my last post <a href="/blog/archives/35">Microsoft is desperate</a>.  After writing up a quick <a href="http://userscripts.org/scripts/show/10051">Anagram solver</a> for Chicktionary, I&#8217;ve fixed up the script to handle some other games as well.  Now the new GreaseMonkey script can help with Flexicon, Clink, CrossWire and Dingbats.  To get the most out of them (for Club Live), you should<br />
<span id="more-37"></span><br />
 follow these instructions.</p>
<h2>The Easy Way</h2>
<p>If you are not using FireFox, or you are not running the GreaseMonkey plug-in, you can direct navigate to <a href="http://www.anagramssolved.com">http://www.anagramssolved.com</a> .  The tools are all present there in the same form and function.  However, you will have to switch between multiple windows if you&#8217;re trying to gather points quickly.</p>
<h2>The Best Way</h2>
<p>For those of you using IE, you should probably install Firefox. <script type="text/javascript"><!--
google_ad_client = "pub-6705615702873552";
google_ad_output = "textlink";
google_ad_format = "ref_text";
google_cpa_choice = "CAAQzcLH7QEaCBVcCwmT2PieKLGsuIEBMAA";
google_ad_channel = "0826924980";
//-->
</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>.  Once you install that, get <a href="https://addons.mozilla.org/en-US/firefox/addon/748">GreaseMonkey</a>, then the new script for <a href="http://userscripts.org/scripts/show/10208">Microsoft Club Live Helper</a>. The script works by replacing the Live Search with http://www.anagramssolved.com/.  The site makes available an Anagram Solver, and searchable solutions for Clink, CrossWire, Dingbats, and Flexicon. For the searchable solutions, you can also use the available Google Search box to search for individual clues if you&#8217;d rather solve the puzzles yourself.</p>
<p>Watch this demo clip of <a href="http://www.anagramssolved.com/flash/Flexicon.html">how to use it for Flexicon</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehuey.com/blog/2007/06/25/microsoft-club-live-games-solved-flexicon-clink-crosswire-and-dingbats-solutions-search/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Desperate Microsoft Trying to Boost Search Volume</title>
		<link>http://www.thehuey.com/blog/2007/06/13/desperate-microsoft-trying-to-boost-search-volume/</link>
		<comments>http://www.thehuey.com/blog/2007/06/13/desperate-microsoft-trying-to-boost-search-volume/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 00:05:29 +0000</pubDate>
		<dc:creator>huey</dc:creator>
		
		<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://www.thehuey.com/blog/archives/36</guid>
		<description><![CDATA[While reading the business news on NYTimes today I noticed an appealing ad for an anagram game at Microsoft&#8217;s new club.live.com offering.  After clicking over and playing their little game, I realized that they are trying to artificially boost their search volume.  Most of the games are somewhat intellectual and requires some searching [...]]]></description>
			<content:encoded><![CDATA[<p>While reading the business news on NYTimes today I noticed an appealing ad for an anagram game at Microsoft&#8217;s new club.live.com offering.  After clicking over and playing their little game, I realized that they are trying to artificially boost their search volume.  Most of the games are somewhat intellectual and requires some searching to come up with answers, this is fine and all, but the game Chicktionary fires off a search for every word attempt.  This and the fact that they are awarding &#8216;points&#8217; for the play seems to point at a desperate grab by MS to increase their daily search volume.  The implied value of their points is rather high, you can get a Xbox 360 game machine for 35,000 points.  Seems to peg 100 points at over $1.  Games award between 10 to 20 points from what I have seen so far.</p>
<p>They must have just launched this because I played 1 game of Clink and actually made their <a href="http://www.thehuey.com/imgs/misc/MSNDesperate.GIF">high score list</a>!  Seems like the existing scores are all random inserts.</p>
<p>I wonder how long before this hits the news?  You can find more at <a href="http://club.live.com/">Microsoft is Desperate</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehuey.com/blog/2007/06/13/desperate-microsoft-trying-to-boost-search-volume/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Monkey see, Monkey want, Monkey get spaceball.gif</title>
		<link>http://www.thehuey.com/blog/2007/06/11/monkey-see-monkey-want-monket-get-spaceballgif/</link>
		<comments>http://www.thehuey.com/blog/2007/06/11/monkey-see-monkey-want-monket-get-spaceballgif/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 19:54:11 +0000</pubDate>
		<dc:creator>huey</dc:creator>
		
		<category><![CDATA[Technical Musings]]></category>

		<guid isPermaLink="false">http://www.thehuey.com/blog/archives/35</guid>
		<description><![CDATA[Monkey See. I was poking around Flickr recently and was amazed at the amount of &#8216;Interesting Photos&#8217; that users have tagged.  Some of the sunsets and scenery photos are absolutely stunning.  Naturally, I wanted to fetch and use it as my desktop background.  However, (understandably) Flickr doesn&#8217;t like people downloading (or referring [...]]]></description>
			<content:encoded><![CDATA[<p>Monkey See. I was poking around Flickr recently and was amazed at the amount of &#8216;Interesting Photos&#8217; that users have tagged.  Some of the sunsets and scenery photos are absolutely stunning.  Naturally, I wanted to fetch and use it as my desktop background.  However, (understandably) Flickr doesn&#8217;t like people downloading (or referring directly to the images) so they have gone to some lengths to obfuscate and hide the actual image url.  If you try to right-click and copy image source, you get an annoying little image called spaceball.gif.  How does Monkey get around this?</p>
<p>Monkey Do. Having recently downloaded and installed the GreaseMonkey plugin for FireFox, I searched and couldn&#8217;t find a suitable userscript to handle the situation.  Being the obsessive type, I went ahead and wrote two quick scripts to help me get at the actual image urls.  One, &#8216;<a href="http://userscripts.org/scripts/show/9796">Flickr Img Src Exposer</a>&#8216;, exposes the image url on an individual photo.  It adds a link &#8216;IMG LINK&#8217; underneath the image allowing for easy copying.  The second script, &#8216;<a href="http://userscripts.org/scripts/show/9797">Flickr Download Links</a>&#8216;, works when you are exploring the last 7 days&#8217; interesting photos.  I got tired of clicking on each photo and then saving the image, so I put a &#8216;LINK&#8217; under each photo in the page.  Clicking on the link takes you to a gallery of all the available image sizes.  You can click on the download link to get the image downloaded or copy the images source from the image displayed.  The largest size may not be available and you&#8217;ll find out if so after clicking on it.  I chose not to display the largest image size to save Flickr some bandwidth.</p>
<p>Monkey no get spaceball.gif.  This has proved somewhat useful for me and I thought I&#8217;d share it with others.  You can find the scripts on &#8216;<a href="http://userscripts.org">http://userscripts.org</a>&#8216;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehuey.com/blog/2007/06/11/monkey-see-monkey-want-monket-get-spaceballgif/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Worth the Wait</title>
		<link>http://www.thehuey.com/blog/2006/10/05/worth-the-wait/</link>
		<comments>http://www.thehuey.com/blog/2006/10/05/worth-the-wait/#comments</comments>
		<pubDate>Fri, 06 Oct 2006 05:49:11 +0000</pubDate>
		<dc:creator>huey</dc:creator>
		
		<category><![CDATA[Baby News]]></category>

		<guid isPermaLink="false">http://www.thehuey.com/blog/archives/32</guid>
		<description><![CDATA[In this crazy world, we want everything now.  I want my coffee now! I want my Yahoo Videos now! But, sometimes, the end result is well worth the wait.
After going past our due date of Sept. 30th and visiting the doc, an induction date of Oct. 5th was set, due to Audrey&#8217;s large head [...]]]></description>
			<content:encoded><![CDATA[<p>In this crazy world, we want everything now.  I want my coffee now! I want my Yahoo Videos now! But, sometimes, the end result is well worth the wait.</p>
<p>After going past our due date of Sept. 30th and visiting the doc, an induction date of Oct. 5th was set, due to Audrey&#8217;s large head circumference.  At midnight, Audrey pre-empted our scheduled morning call and sent Yun into labor.  After waking me (Huey) up a few times, Yun got up at 1:05 to walk around.  Still half asleep and somewhat disbelieving Yun, I vaguely remembered to tell her to grab a towel in case her water broke. At this point, contractions were irregular and about 10 minutes apart.  Deciding that perhaps she was in false labor, Yun laid down around 1:25 and almost immediately went into another contraction.  Breaking her water on this contraction, I rapidly became alert and started looking for the phone. We had been waiting for this baby for the past 3 weeks (Not counting the whole pregnancy of course) and I was ready to meet her. Calling the doctors office gave me an answering service.  After letting them know the situation, I was told the on-call doctor would be paged.  After what seemed like an eternity, we got the call from the on-call and we were told to head for the delivery room.</p>
<p>Half expecting a relative quick delivery, with the wife having been at 2-3cm for a few weeks, I was completely unprepared for what lay ahead. After checking in and  <span id="more-32"></span> getting situated, we dug in to wait for the progression of labor.  Yun made some progress early but stalled early in the morning.  Stalls around 5cm and 7cm took us deep into the afternoon, what started as a hopeful 10 hour delivery had dragged into a marathon 16 hours.  Our doctor finished with her clinicals and was able to come check our progress.  Knowing beforehand that our baby was atleast 8 pounds, we knew that we might have to prepare for a Caesarean.  At this point, Yun was developing a fever and Audrey&#8217;s heartrate had escalated from a steady 130bpm to 170bpm.  The decision to head for the operation room was quick but not without a few tears.</p>
<p>From decision to delivery, it was only around 40 minutes.  Hearing her first cries of complaint sent Yun and I into emotional tatters.  Gathering my wits, I somehow made it over to the baby&#8217;s crib and was handed a pair of scissors to cut Audrey&#8217;s cord.  Bringing her to show Yun, I couldn&#8217;t help but fall in love with her pursed lips.</p>
<p>The 9 month+ wait was filled with excitment, confusion, anxiety, and some mad scrambling to purchase all sorts of baby furniture.  All that melted away the moment we heard her voice.</p>
<p>So what happened after that? While those details are a bit more mundane, I&#8217;m sure there will be plenty more exciting news to come, but you&#8217;re going to have to wait with the rest of us.  I&#8217;m going to go see my daughter.</p>
<p>-Huey</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehuey.com/blog/2006/10/05/worth-the-wait/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
