<?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>Matt Thiessen &#187; Family</title>
	<atom:link href="http://matt.thiessen.us/category/family/feed/" rel="self" type="application/rss+xml" />
	<link>http://matt.thiessen.us</link>
	<description>Learning to make the hard things easy</description>
	<lastBuildDate>Sun, 05 Feb 2012 04:06:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>After UltraLasik</title>
		<link>http://matt.thiessen.us/2009/04/after-ultralasik/</link>
		<comments>http://matt.thiessen.us/2009/04/after-ultralasik/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 01:05:54 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[UltraLasik]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=226</guid>
		<description><![CDATA[The day after my surgery I had a follow up visit and my eyes measured 25/20 in my left eye and 15/20 in my right. The Doctor said that my right eye was over corrected, but may clear up in a couple of weeks. If not I may need to have a touch up. During [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://matt.thiessen.us/wp-content/uploads/2009/04/matt_after_ultralasik.jpg"><img class="alignleft size-full wp-image-228" style="margin-left: 6px; margin-right: 6px;" title="matt_after_ultralasik" src="http://matt.thiessen.us/wp-content/uploads/2009/04/matt_after_ultralasik.jpg" alt="matt_after_ultralasik" width="200" height="267" /></a>The day after my surgery I had a follow up visit and my eyes measured 25/20 in my left eye and 15/20 in my right.  The Doctor said that my right eye was over corrected, but may clear up in a couple of weeks.  If not I may need to have a touch up.</p>
<p>During the last week I was struggling with dry, and at times fuzzy vision and was using drops every few hours.  Today I was able to go entire day without needing drops.  Both of my eyes are seeing excellent.  I&#8217;m going to guess that tomorrow&#8217;s follow up visit is going to show that both eyes are now 25/20.  That&#8217;s great because I&#8217;m not even sure I was able to see 20/20 when I had my glasses.</p>
<p>It&#8217;s been one week after having UltraLasik surgery.  I am seeing with more clarity than I can ever remember.</p>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2009/04/after-ultralasik/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USPS Web Tools</title>
		<link>http://matt.thiessen.us/2009/03/usps-web-tools/</link>
		<comments>http://matt.thiessen.us/2009/03/usps-web-tools/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 22:06:11 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Z350]]></category>
		<category><![CDATA[shipping]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=211</guid>
		<description><![CDATA[I was trying to add the USPS API into osCommerce. I received the following error when adding this shipping module: RateV3 is not a valid API name for this protocol This is because when you create an account for the Web Tools at USPS you only have access to their test server. The USPS test [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to add the <a href="http://www.usps.com/webtools/" target="_blank">USPS API</a> into <a href="http://www.oscommerce.com/" target="_blank">osCommerce</a>.  I received the following error when adding this <a href="http://www.oscommerce.com/community/contributions,487">shipping module</a>:</p>
<p><strong style="color:red">RateV3 is not a valid API name for this protocol</strong></p>
<p>This is because when you create an account for the Web Tools at USPS you only have access to their test server.  The USPS test server can only use RateV2, so test using this code below, then request to be switched to use the production server.  Then you can use RateV3 on the production server and the USPS module for osCommerce will work.</p>
<pre class="wp-code-highlight prettyprint">&lt;?php

$request1 = &lt;&lt;&lt; XMLREQUEST
&lt;RateV2Request USERID=&quot;xxxxxxxxxxxxx&quot;&gt;
&lt;Package ID=&quot;0&quot;&gt;
&lt;Service&gt;PRIORITY&lt;/Service&gt;
&lt;ZipOrigination&gt;10022&lt;/ZipOrigination&gt;
&lt;ZipDestination&gt;20008&lt;/ZipDestination&gt;
&lt;Pounds&gt;10&lt;/Pounds&gt;
&lt;Ounces&gt;5&lt;/Ounces&gt;
&lt;Container&gt;Flat Rate Box&lt;/Container&gt;
&lt;Size&gt;REGULAR&lt;/Size&gt;
&lt;/Package&gt;
&lt;/RateV2Request&gt;
XMLREQUEST;

$request = &quot;http://testing.shippingapis.com/ShippingAPITest.dll?API=RateV2&amp;XML=&quot; . rawurlencode($request1);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $request);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_HTTPGET, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SLL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

$response = curl_exec($ch);
curl_close($ch);

echo($response);

?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2009/03/usps-web-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>636,580 Tail Wags Paid in Full</title>
		<link>http://matt.thiessen.us/2008/12/tail-wags-paid-in-full/</link>
		<comments>http://matt.thiessen.us/2008/12/tail-wags-paid-in-full/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 05:59:15 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[tibby chihuahua dog]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=50</guid>
		<description><![CDATA[Tibby who was &#8220;My favoritest puppy dog in the whole wide world&#8221; called it quits today.  My little chunky chihuahua was a sweet quiet dog that wagged his tail more times than he barked.  One of his many nicknames was whirly because of his never ending tail wags. He was always ready to perform his [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_53" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-53" title="Tibby" src="http://matt.thiessen.us/wp-content/uploads/2008/12/dscn2995-300x225.jpg" alt="Taken Dec 24, 2008" width="300" height="225" /><p class="wp-caption-text">Tibby - photo taken Dec 24, 2008</p></div>
<p>Tibby who was &#8220;My favoritest puppy dog in the whole wide world&#8221; called it quits today.  My little chunky chihuahua was a sweet quiet dog that wagged his tail more times than he barked.  One of his many nicknames was whirly because of his never ending tail wags.  He was always ready to perform his ear cleaning duties on his big brother Jake.<br />
<br clear="all" /><br />
<span class="youtube">
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/eunXqWszC-k?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;modestbranding=1&amp;loop=&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=1" />
<param name="allowFullScreen" value="true" />
<embed wmode="opaque" src="http://www.youtube.com/v/eunXqWszC-k?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;modestbranding=1&amp;loop=&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355"></embed>
<param name="wmode" value="opaque" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=eunXqWszC-k">www.youtube.com/watch?v=eunXqWszC-k</a></p></p>
<p>He suffered from congestive heart failure a disease in which the heart fails to supply enough oxygen to the body.  He was suffering from shortness of breath which worsened over the last few weeks, until he just ran out of air.  The last two days he became very weak and was barely able to stand.  I&#8217;m happy that I had the day off this day after Christmas as I was able to hold him as we said our good-byes.  </p>
<p>We had a quick backyard burial.  He was eleven years old.  I am relieved that his suffering is over, but very saddened to see him go.  </p>
<p>Tibby we love you and you will be greatly missed.</p>
<p><div id="attachment_63" class="wp-caption alignleft" style="width: 310px"><img src="http://matt.thiessen.us/wp-content/uploads/2008/12/dscn1838-300x225.jpg" alt="Tibby and Zoe - photo taken Nov 8, 2007" title="Tibby and Zoe" width="300" height="225" class="size-medium wp-image-63" /><p class="wp-caption-text">Tibby and Zoe - photo taken Nov 8, 2007</p></div><br />
<div id="attachment_64" class="wp-caption alignleft" style="width: 310px"><img src="http://matt.thiessen.us/wp-content/uploads/2008/12/dscn0389-300x225.jpg" alt="Tibby - photo taken Jul. 22, 2006" title="Tibby" width="300" height="225" class="size-medium wp-image-64" /><p class="wp-caption-text">Tibby - photo taken Jul. 22, 2006</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2008/12/tail-wags-paid-in-full/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

