<?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/"
	>

<channel>
	<title>Matt and Ashley Faus</title>
	<atom:link href="http://mattfaus.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattfaus.com</link>
	<description>Some pictures and text from our most excellent adventure!</description>
	<pubDate>Tue, 24 Aug 2010 17:13:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Get a Helpful Error Message from WinErrors.h in C#</title>
		<link>http://mattfaus.com/2010/08/24/get-a-helpful-error-message-from-winerrorsh-in-c/</link>
		<comments>http://mattfaus.com/2010/08/24/get-a-helpful-error-message-from-winerrorsh-in-c/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 17:13:13 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://mattfaus.com/?p=169</guid>
		<description><![CDATA[It&#8217;s been a while since I&#8217;ve posted something like this, but this is one of those things that did not show up under the search terms I thought to be appropriate.  Hopefully this post will get sorted to the top of the search terms I was using.
The problem is that when you call into [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I&#8217;ve posted something like this, but this is one of those things that did not show up under the search terms I thought to be appropriate.  Hopefully this post will get sorted to the top of the search terms I was using.</p>
<p>The problem is that when you call into Win32 APIs from managed C# code, they often return a simple integer to inform you of the status of your invocation.  Zero means success, and everything greater than zero corresponds to one of the many many <a href="http://help.netop.com/support/errorcodes/win32_error_codes.htm">WinErrors.h error codes</a>.  Of course, you could hard-code these helpful messages into your code, but this is bad for various reasons. Thanksfully, .NET provides you with the <a href="http://msdn.microsoft.com/en-us/library/t8t3ykxc.aspx">Marshal.GetExceptionFromHR()</a> method to dynamically query any helpful error message you may need!</p>
<p>The <a href="http://www.pluralsight-training.net/community/blogs/keith/archive/2005/10/17/15632.aspx">pluralsight blog</a> shows how to wrap this up into a nice set of functions:</p>
<p><code><br />
    static string getWin32ErrorMessage(int errorCode) {<br />
        int hr = HRESULT_FROM_WIN32(errorCode);<br />
        Exception x = Marshal.GetExceptionForHR(hr);<br />
        return x.Message;<br />
    }<br />
    static int HRESULT_FROM_WIN32(int errorCode) {<br />
        if (errorCode <= 0) return errorCode;<br />
        return (int)((0x0000FFFFU &#038;<br />
            ((uint)errorCode)) | (7U << 16) |<br />
            0x80000000U);<br />
    }</code></p>
]]></content:encoded>
			<wfw:commentRss>http://mattfaus.com/2010/08/24/get-a-helpful-error-message-from-winerrorsh-in-c/feed/</wfw:commentRss>
		</item>
		<item>
		<title>San Francisco Triathlon at Treasure Island</title>
		<link>http://mattfaus.com/2010/07/12/san-francisco-triathlon-at-treasure-island/</link>
		<comments>http://mattfaus.com/2010/07/12/san-francisco-triathlon-at-treasure-island/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 07:05:10 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Fitness]]></category>

		<guid isPermaLink="false">http://mattfaus.com/?p=167</guid>
		<description><![CDATA[I completed my first ever triathlon this past weekend and it was incredible!  I set a goal of finishing under 90 minutes, and came in at 82:08!  The event started with a 500m swim in the San Francisco bay.  I wore a wetsuit, but it was still very cold.  The wetsuit [...]]]></description>
			<content:encoded><![CDATA[<p>I completed my first ever triathlon this past weekend and it was incredible!  I set a goal of finishing under 90 minutes, and came in at 82:08!  The event started with a 500m swim in the San Francisco bay.  I wore a wetsuit, but it was still very cold.  The wetsuit was sleeveless, which did not help matters.  When I came out of the water I was very numb and disoriented.  I literally felt like I was about to pass out, and I have never really experienced that before.</p>
<p>I ran towards the bike rack and slipped out of my wetsuit, into my socks, cycling shoes, and helmet.  I was riding away 3 minutes later.  The cycling section went pretty well, the only difficult part was riding against some strong winds.  Some of the other guys in the race sure did fly past me though.  I even saw one racer with a flat tire - I&#8217;m sure glad that didn&#8217;t happen to me!</p>
<p>Transitioning into the run was much easier.  I slipped off my cycling shoes and put on my running shoes at a hat.  I made it out of there in 61 seconds!  I started off with a rather slow pace, but picked it up at the end to bring it home at 1:22:08.</p>
<p>My <a href="http://raceresults.eternaltiming.com/index.cfm/20100710_San_Francisco_Triathlon_Treasure_Island.htm?Fuseaction=Results&#038;Class=Sprint+Distance+Individual~M20-24">official times</a> were .5k Swim 12:57, T1 3:07, 20k Bike 38:40, T2 1:01, 5k Run 26:23. Total = 1:22:08. Age group rank = 5/11.</p>
<p>The main training I had been doing since the beginning of the year was geared towards fat loss, but I really enjoyed the race and will begin training for the Olympic distance triathlon next year.</p>
<p>Be sure to check out the pictures on the website!</p>
]]></content:encoded>
			<wfw:commentRss>http://mattfaus.com/2010/07/12/san-francisco-triathlon-at-treasure-island/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Half Dome, Yosemite National Park</title>
		<link>http://mattfaus.com/2010/07/03/half-dome-yosemite-national-park/</link>
		<comments>http://mattfaus.com/2010/07/03/half-dome-yosemite-national-park/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 23:57:59 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Travel]]></category>

		<category><![CDATA[Video Post]]></category>

		<guid isPermaLink="false">http://mattfaus.com/?p=162</guid>
		<description><![CDATA[Here are some videos cataloging our adventure.






]]></description>
			<content:encoded><![CDATA[<p>Here are some videos cataloging our adventure.<br />
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/rKP4qww2AhY&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/rKP4qww2AhY&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/HohS40E-erw&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HohS40E-erw&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/yOO_F1ac7zo&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/yOO_F1ac7zo&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/sezDjEO2AFw&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/sezDjEO2AFw&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/_mvX7TOeocA&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/_mvX7TOeocA&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/svA3CmZ5kls&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/svA3CmZ5kls&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://mattfaus.com/2010/07/03/half-dome-yosemite-national-park/feed/</wfw:commentRss>
		</item>
		<item>
		<title>3 new galleries added</title>
		<link>http://mattfaus.com/2010/07/03/3-new-galleries-added/</link>
		<comments>http://mattfaus.com/2010/07/03/3-new-galleries-added/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 23:55:42 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Website Updates]]></category>

		<guid isPermaLink="false">http://mattfaus.com/?p=160</guid>
		<description><![CDATA[We just uploaded 3 galleries for our trip to the Dominican Republic, Yosemite, and the Mountain Play.  More posts to come.
]]></description>
			<content:encoded><![CDATA[<p>We just uploaded 3 galleries for our trip to the Dominican Republic, Yosemite, and the Mountain Play.  More posts to come.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattfaus.com/2010/07/03/3-new-galleries-added/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Backpacking at Henry Coe</title>
		<link>http://mattfaus.com/2010/04/26/backpacking-at-henry-coe/</link>
		<comments>http://mattfaus.com/2010/04/26/backpacking-at-henry-coe/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 02:30:48 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://mattfaus.com/?p=158</guid>
		<description><![CDATA[This past weekend I went on my first backpacking trip in the hilly terrain of Henry Coe State Park.  It was incredible, and really gave me some perspective on what “real” camping is like.  We were originally registered to participate in the Backcountry weekend, which is a section of the park that is [...]]]></description>
			<content:encoded><![CDATA[<p>This past weekend I went on my first backpacking trip in the hilly terrain of Henry Coe State Park.  It was incredible, and really gave me some perspective on what “real” camping is like.  We were originally registered to participate in the Backcountry weekend, which is a section of the park that is only opened one weekend per year.  However, some rain during the week made the road inaccessible, so that was cancelled.  We still had a blast in the front section of Henry Coe, though!</p>
<p>We left work a bit early and arrived at the Hunting Hollow entrance around 5pm.  After some preparations, we began the 3 mile, 1800-foot elevation gain hike to Wilson’s Peak – our first campsite.  We didn’t fully realize it at the time, but this was by far the hardest portion of trail on the entire trip.  Luckily we made it there by 7:30pm, or just as the sun was setting.  We got our tents up and enjoyed a hearty dinner.  I slept pretty well until about 4am, when it started getting really cold.  I finally just got up at 6am to wait for the sun.  I sat on a rock in the middle of the hillside on top of the peak and waited for some much needed solar radiation.  It was an amazing time of solitude.  </p>
<p>Finally, the sun came out and we made some oatmeal and protein bars for breakfast.  My friend had a pretty sweet miniature stove made out of soda cans, and it did an excellent job of heating whatever we needed.</p>
<p>On Saturday, we made our way over the Kelly Lake.  Luckily the elevation changes were only +/- 400 feet or so.  The view from hiking along the mountains was really awesome.  We were above the distant clouds at several points.  There were also several different types of flowers growing on the hillside.  It was really cool to witness such beauty with really no one else around.  When we got to Kelly Lake, however, there were about 20 other people with tents set up.  We had a nice lunch of apples and peanut butter, along with some various other goodies that we had packed, then set up camp.  We got a prime location next to the water, complete with a large log that we relaxed on.  After we dropped our gear, we hiked a few miles further, around Coit Lake.  We saw several other hikers, and even a snake on the trail!</p>
<p>The next day we hiked the entire distance back to the parking lot, but it was much easier because it was downhill most of the way.  It was an awesome trip, and taught me that backpacking is truly something that I would like to do more of in the future.  Oh, and I finally have a new Facebook profile picture.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattfaus.com/2010/04/26/backpacking-at-henry-coe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The New Deal</title>
		<link>http://mattfaus.com/2010/04/04/the-new-deal/</link>
		<comments>http://mattfaus.com/2010/04/04/the-new-deal/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 23:36:53 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Day-to-Day]]></category>

		<category><![CDATA[Website Updates]]></category>

		<guid isPermaLink="false">http://mattfaus.com/?p=155</guid>
		<description><![CDATA[Hello world,
As some might have heard, Ashley is going to Dallas for 6 weeks on an extended job hunt, beginning April 6th, 2010.  If she finds a suitable job during this time, she will remain there to begin working.  Meanwhile, Matt will determine the best possible option for joining her in Dallas.  [...]]]></description>
			<content:encoded><![CDATA[<p>Hello world,</p>
<p>As some might have heard, Ashley is going to Dallas for 6 weeks on an extended job hunt, beginning April 6th, 2010.  If she finds a suitable job during this time, she will remain there to begin working.  Meanwhile, Matt will determine the best possible option for joining her in Dallas.  This is a drastic and painful tactic to overcome what has been a growing agony in our marriage since the move to California.  We have spent countless hours discussing all of the paths we may take to arrive at a more harmonious lifestyle, and we are going into this with full knowledge of the difficulty at hand.  The job market and economy may separate us in the short term, but we are both strongly committed to endure these difficulties with hope that both of our lives will be further enriched once they are overcome.  We are, and will continue to be, 100% committed to our marriage and feel that the strength we have as individuals and together is what allows us to execute this long-distance maneuver.  We love each other completely, for better or worse; this just happens to be one of the worse times.  We’ll be sure to keep everyone updated, and we would appreciate your thoughts and prayers. (Oh, and let us know if you need a Marketing Professional! <img src='http://mattfaus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
]]></content:encoded>
			<wfw:commentRss>http://mattfaus.com/2010/04/04/the-new-deal/feed/</wfw:commentRss>
		</item>
		<item>
		<title>We&#8217;re going to Jamaica!</title>
		<link>http://mattfaus.com/2010/01/02/were-going-to-jamaica/</link>
		<comments>http://mattfaus.com/2010/01/02/were-going-to-jamaica/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 09:04:22 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Travel]]></category>

		<category><![CDATA[Video Post]]></category>

		<guid isPermaLink="false">http://mattfaus.com/?p=153</guid>
		<description><![CDATA[Thanks the crazy holiday travels and our willingness to take a 12 hour delay, AirTran gave Ashley and I each two free round-trip tickets to wherever they fly, which includes Jamaica!  Not sure when, but sometime in 2010.

]]></description>
			<content:encoded><![CDATA[<p>Thanks the crazy holiday travels and our willingness to take a 12 hour delay, AirTran gave Ashley and I each two free round-trip tickets to wherever they fly, which includes Jamaica!  Not sure when, but sometime in 2010.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/OZYKmCCEyyE&#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/OZYKmCCEyyE&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://mattfaus.com/2010/01/02/were-going-to-jamaica/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Milwaukee</title>
		<link>http://mattfaus.com/2010/01/02/milwaukee/</link>
		<comments>http://mattfaus.com/2010/01/02/milwaukee/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 09:02:06 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Travel]]></category>

		<category><![CDATA[Video Post]]></category>

		<guid isPermaLink="false">http://mattfaus.com/?p=151</guid>
		<description><![CDATA[We had an overnight layover in Milwaukee on our way home, so we took advantage of the local art museum.


]]></description>
			<content:encoded><![CDATA[<p>We had an overnight layover in Milwaukee on our way home, so we took advantage of the local art museum.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/PpPUQLeUwGo&#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/PpPUQLeUwGo&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/OT-daYlkJFQ&#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/OT-daYlkJFQ&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://mattfaus.com/2010/01/02/milwaukee/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Christmas 2009</title>
		<link>http://mattfaus.com/2010/01/02/christmas-2009/</link>
		<comments>http://mattfaus.com/2010/01/02/christmas-2009/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 08:59:59 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Travel]]></category>

		<category><![CDATA[Video Post]]></category>

		<guid isPermaLink="false">http://mattfaus.com/?p=149</guid>
		<description><![CDATA[We had an awesome Christmas break over the past two weeks.  There are plenty of stories, but it&#8217;s really late and I just spent a good deal of time getting all the pictures up.  I&#8217;ll link in the videos here, and hope Ashley adds some prose to describe our vacation!



]]></description>
			<content:encoded><![CDATA[<p>We had an awesome Christmas break over the past two weeks.  There are plenty of stories, but it&#8217;s really late and I just spent a good deal of time getting all the pictures up.  I&#8217;ll link in the videos here, and hope Ashley adds some prose to describe our vacation!</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/cRxk459oefk&#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/cRxk459oefk&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/TRgKvEL0ABE&#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/TRgKvEL0ABE&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/eE-LtlXcj3M&#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/eE-LtlXcj3M&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://mattfaus.com/2010/01/02/christmas-2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Epic Fail: Blog Posting</title>
		<link>http://mattfaus.com/2009/12/02/epic-fail-blog-posting/</link>
		<comments>http://mattfaus.com/2009/12/02/epic-fail-blog-posting/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 00:53:40 +0000</pubDate>
		<dc:creator>Ashley</dc:creator>
		
		<category><![CDATA[Day-to-Day]]></category>

		<guid isPermaLink="false">http://mattfaus.com/?p=147</guid>
		<description><![CDATA[Sigh. That&#8217;s all there is to say about that. I just haven&#8217;t been on here in forever, and I&#8217;ve left my other two blog projects out in the cold as well. So, that said, EPIC FAIL: BLOG POSTING.
I failed to post about Cinderella. It opened (and closed) way back in October, complete with a family [...]]]></description>
			<content:encoded><![CDATA[<p>Sigh. That&#8217;s all there is to say about that. I just haven&#8217;t been on here in forever, and I&#8217;ve left my other two blog projects out in the cold as well. So, that said, EPIC FAIL: BLOG POSTING.</p>
<p>I failed to post about Cinderella. It opened (and closed) way back in October, complete with a family visit, singing and dancing <img src='http://mattfaus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> The magic came to life in Lyric Theatre&#8217;s presentation of the old classic, and we sold out several performances. I also wrote a few posts on <a href="http://thecreativecap.wordpress.com">TheCreativeCap</a>, and I need to get the pictures from my mom. I enjoyed this show a lot more than &#8220;Yeomen&#8221; because it was more upbeat, and I made some friends. I&#8217;m currently in the middle of &#8220;The Christmas Mouse&#8221;, an original play based on the music of Linda Arnold. I am basically playing the same role that I played in &#8220;Fisherman and His Wife&#8221;, the Storyteller for this children&#8217;s show. I also auditioned for Lyric&#8217;s &#8220;Kismet&#8221;, which opens in March. I will hopefully have positive results to share in the next few weeks <img src='http://mattfaus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>We made a fast and furious trip home for Thanksgiving, and we managed to see a lot of friends. I really enjoyed spending this holiday with my family, and we had a great time stuffing our faces. We went down to my Uncle Alan&#8217;s house on Thursday to celebrate with my mom&#8217;s side of the family, and headed down to my Aunt Beth&#8217;s house on Saturday to celebrate with my dad&#8217;s side of the family. My family is huge on both sides, so it&#8217;s always fun to catch up with all my relatives. We&#8217;ll be spending Christmas in Wisconsin with Matt&#8217;s family this year, so I am sure I&#8217;ll have some fun stories from that.</p>
<p>Ok, so quickest and wimpiest recap ever, but that&#8217;s what you get when you&#8217;ve been negligent in posting. I&#8217;m in Christmas decoration mode, so I should have some fun pictures up soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://mattfaus.com/2009/12/02/epic-fail-blog-posting/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
