<?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>CheckThisShitOut.com</title>
	<atom:link href="http://www.checkthisshitout.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.checkthisshitout.com</link>
	<description>ninja adventures in life...</description>
	<lastBuildDate>Sun, 11 Dec 2011 01:45:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Synology start/stop init.d scripts for SABnzbd, Sickbeard and CouchPotato</title>
		<link>http://www.checkthisshitout.com/2011/07/synology-startstop-init-d-scripts-for-sabnzbd-sickbeard-and-couchpotato/</link>
		<comments>http://www.checkthisshitout.com/2011/07/synology-startstop-init-d-scripts-for-sabnzbd-sickbeard-and-couchpotato/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 16:08:25 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[synology]]></category>
		<category><![CDATA[couchpotato]]></category>
		<category><![CDATA[dsm 3.1]]></category>
		<category><![CDATA[init.d]]></category>
		<category><![CDATA[nas]]></category>
		<category><![CDATA[sabnzbd]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sickbeard]]></category>

		<guid isPermaLink="false">http://www.checkthisshitout.com/?p=378</guid>
		<description><![CDATA[Disclaimer:The following init.d scripts assume some linux knowledge and that your Synology NAS device has been bootstrapped allowing you to install the required dependancies using ipkg. These instructions do not describe how to download, install or configure SABnzbd, Sickbeard or CouchPotato. All init.d scripts have been tested and work fine on a Synology 411+ running [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-4750042041616020";
/* 468x60, created 3/10/10 */
google_ad_slot = "9509283487";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p><p><em><u>Disclaimer:</u>The following init.d scripts assume some linux knowledge and that your <a href="http://www.synology.com/">Synology NAS</a> device has been <a href="http://forum.synology.com/wiki/index.php/Overview_on_modifying_the_Synology_Server,_bootstrap,_ipkg_etc#How_to_install_ipkg">bootstrapped</a> allowing you to install the required dependancies using ipkg.</p>
<p>These instructions do not describe how to download, install or configure SABnzbd, Sickbeard or CouchPotato.  All init.d scripts have been tested and work fine on a Synology 411+ running DSM 3.1.  All init.d scripts expect certain packages to be installed in order to work correctly.  </p>
<p>These scripts should be placed in /opt/etc/init.d/ and be given the same filenames and permissions as shown below.</p>
<p><u>All init.d scripts require some values to be defined by you in order to work correctly</u>.<br />
</em></p>
<p><strong>Required Packages</strong></p>
<ul>
<li>openssl</li>
<li>py26-cheetah</li>
<li>py26-openssl</li>
<li>python26</li>
<li>wget</li>
</ul>
<p><strong><a href="http://sabnzbd.org/">SABnzbd</a></strong> &#8211; /opt/etc/init.d/S99sabnzbd.sh (rwxr-xr-x)<br />
Download: <a href='http://www.checkthisshitout.com/wp-content/uploads/2011/08/S99sabnzbd.sh' >S99sabnzbd.sh</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># Synology DSM init script for SABnzbd</span>
<span style="color: #666666; font-style: italic;"># Requires: sabnzbd</span>
<span style="color: #666666; font-style: italic;">#           python</span>
<span style="color: #666666; font-style: italic;">#           wget</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># Configured Variables:</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #007800;">PYTHON_EXEC</span>=<span style="color: #ff0000;">&quot;/opt/bin/python2.6&quot;</span>
<span style="color: #007800;">SABNZBD_EXEC</span>=<span style="color: #ff0000;">&quot;/opt/share/sabnzbd/SABnzbd.py&quot;</span>
<span style="color: #007800;">SABNZBD_PORT</span>=<span style="color: #ff0000;">&quot;9200&quot;</span>
<span style="color: #007800;">SAB_API_KEY</span>=<span style="color: #ff0000;">&quot;YOUR API KEY GOES HERE&quot;</span>
<span style="color: #007800;">SAB_INI_FILE</span>=<span style="color: #ff0000;">&quot;ABSOLUTE PATH TO sabnzbd.ini&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Begin script</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">&quot;$1&quot;</span> <span style="color: #000000; font-weight: bold;">in</span>
start<span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #007800;">PATH</span>=<span style="color: #007800;">$PATH</span>:<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>bin
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;%-30s&quot;</span> <span style="color: #ff0000;">&quot;Starting SABnzbd&quot;</span>
  <span style="color: #800000;">${PYTHON_EXEC}</span> <span style="color: #800000;">${SABNZBD_EXEC}</span> <span style="color: #660033;">-s</span> 0.0.0.0:<span style="color: #800000;">${SABNZBD_PORT}</span> <span style="color: #660033;">-f</span> <span style="color: #800000;">${SAB_INI_FILE}</span> <span style="color: #660033;">-d</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;[%4s]<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> <span style="color: #ff0000;">&quot;done&quot;</span>
  <span style="color: #000000; font-weight: bold;">;;</span>
stop<span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;%-30s&quot;</span> <span style="color: #ff0000;">&quot;Stopping SABnzbd&quot;</span>
  <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-q</span> <span style="color: #660033;">--delete-after</span> <span style="color: #ff0000;">&quot;http://127.0.0.1:<span style="color: #007800;">${SABNZBD_PORT}</span>/shutdown?session=<span style="color: #007800;">${SAB_API_KEY}</span>&quot;</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;[%4s]<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> <span style="color: #ff0000;">&quot;done&quot;</span>
  <span style="color: #000000; font-weight: bold;">;;</span>
<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Usage: $0 {start|stop}&quot;</span>
  <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>
<span style="color: #000000; font-weight: bold;">esac</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span></pre></td></tr></table></div>

<p><strong><a href="http://sickbeard.com/">SickBeard</a></strong> &#8211; /opt/etc/init.d/S99sickbeard.sh (rwxr-xr-x)<br />
Download: <a href='http://www.checkthisshitout.com/wp-content/uploads/2011/08/S99sickbeard.sh' >S99sickbeard.sh</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># Synology DSM init script for SickBeard</span>
<span style="color: #666666; font-style: italic;"># Requires: sickbeard</span>
<span style="color: #666666; font-style: italic;">#           python</span>
<span style="color: #666666; font-style: italic;">#           wget</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># Configured Variables:</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #007800;">PYTHON_EXEC</span>=<span style="color: #ff0000;">&quot;/opt/bin/python2.6&quot;</span>
<span style="color: #007800;">SICKBEARD_EXEC</span>=<span style="color: #ff0000;">&quot;/opt/share/sickbeard/SickBeard.py&quot;</span>
<span style="color: #007800;">SICKBEARD_PORT</span>=<span style="color: #ff0000;">&quot;9201&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Begin script</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">&quot;$1&quot;</span> <span style="color: #000000; font-weight: bold;">in</span>
start<span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;%-30s&quot;</span> <span style="color: #ff0000;">&quot;Starting SickBeard&quot;</span>
  <span style="color: #c20cb9; font-weight: bold;">nohup</span> <span style="color: #800000;">${PYTHON_EXEC}</span> <span style="color: #800000;">${SICKBEARD_EXEC}</span> <span style="color: #660033;">-q</span> <span style="color: #660033;">-d</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">&amp;</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;[%4s]<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> <span style="color: #ff0000;">&quot;done&quot;</span>
  <span style="color: #000000; font-weight: bold;">;;</span>
stop<span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;%-30s&quot;</span> <span style="color: #ff0000;">&quot;Stopping SickBeard&quot;</span>
  <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-q</span> <span style="color: #660033;">--delete-after</span> <span style="color: #ff0000;">&quot;http://127.0.0.1:<span style="color: #007800;">${SICKBEARD_PORT}</span>/home/shutdown/&quot;</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;[%4s]<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> <span style="color: #ff0000;">&quot;done&quot;</span>
  <span style="color: #000000; font-weight: bold;">;;</span>
<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Usage: $0 {start|stop}&quot;</span>
  <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>
<span style="color: #000000; font-weight: bold;">esac</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span></pre></td></tr></table></div>

<p><strong><a href="http://couchpotatoapp.com/">CouchPotato</a></strong> &#8211; /opt/etc/init.d/S99couchpotato.sh (rwxr-xr-x)<br />
Download: <a href='http://www.checkthisshitout.com/wp-content/uploads/2011/08/S99couchpotato.sh' >S99couchpotato.sh</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># Synology DSM init script for CouchPotato</span>
<span style="color: #666666; font-style: italic;"># Requires: couchpotato</span>
<span style="color: #666666; font-style: italic;">#           python</span>
<span style="color: #666666; font-style: italic;">#           wget</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># Configured Variables:</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #007800;">PYTHON_EXEC</span>=<span style="color: #ff0000;">&quot;/opt/bin/python2.6&quot;</span>
<span style="color: #007800;">COUCHPOTATO_EXEC</span>=<span style="color: #ff0000;">&quot;/opt/share/couchpotato/CouchPotato.py&quot;</span>
<span style="color: #007800;">COUCHPOTATO_PORT</span>=<span style="color: #ff0000;">&quot;9203&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Begin script</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">&quot;$1&quot;</span> <span style="color: #000000; font-weight: bold;">in</span>
start<span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;%-30s&quot;</span> <span style="color: #ff0000;">&quot;Starting CouchPotato&quot;</span>
  <span style="color: #800000;">${PYTHON_EXEC}</span> <span style="color: #800000;">${COUCHPOTATO_EXEC}</span> <span style="color: #660033;">-d</span> <span style="color: #000000; font-weight: bold;">&amp;</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;[%4s]<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> <span style="color: #ff0000;">&quot;done&quot;</span>
  <span style="color: #000000; font-weight: bold;">;;</span>
stop<span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;%-30s&quot;</span> <span style="color: #ff0000;">&quot;Stopping CouchPotato&quot;</span>
  <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-q</span> <span style="color: #660033;">--delete-after</span> <span style="color: #ff0000;">&quot;http://127.0.0.1:<span style="color: #007800;">${COUCHPOTATO_PORT}</span>/config/exit/&quot;</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;[%4s]<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> <span style="color: #ff0000;">&quot;done&quot;</span>
  <span style="color: #000000; font-weight: bold;">;;</span>
<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
  <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Usage: $0 {start|stop}&quot;</span>
  <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>
<span style="color: #000000; font-weight: bold;">esac</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span></pre></td></tr></table></div>

<p>If you find this helpful or found a problem with any of the scripts let me know in the comments section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.checkthisshitout.com/2011/07/synology-startstop-init-d-scripts-for-sabnzbd-sickbeard-and-couchpotato/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Demoing the flickr wordpress plugin</title>
		<link>http://www.checkthisshitout.com/2010/03/demo/</link>
		<comments>http://www.checkthisshitout.com/2010/03/demo/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 01:40:55 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[posts]]></category>

		<guid isPermaLink="false">http://www.checkthisshitout.com/?p=333</guid>
		<description><![CDATA[This is a demo of the flickr plugin]]></description>
			<content:encoded><![CDATA[<p>This is a demo of the flickr plugin</p>
<!-- Awesome Flickr Gallery Start --><!-- - Version - 3.2.8 - User ID - 48257328@N02 - Photoset ID - 72157623472070259 - Gallery ID -  - Group ID -  - Tags -  - Popular -  - Per Page - 100 - Sort Order - flickr - Photo Size - _m - Custom Size - 0 - Square - false - Captions - off - Description - on - Columns - 2 - Credit Note - off - Background Color - Transparent - Width - auto - Pagination - on - Slideshow - colorbox - Disable slideshow? - --><div class='afg-gallery custom-gallery-1' style='background-color:Transparent; width:100%; color:; border-color:Transparent;'><div class='afg-table' style='width:100%'><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example41'  href='http://farm5.staticflickr.com/4043/4423946030_a99b271cd3_b.jpg' title='View from my deck'><img class='afg-img' src='http://farm5.static.flickr.com/4043/4423946030_a99b271cd3_m.jpg' alt='View from my deck'/></a><div class='afg-description'>Red sky at night</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example41'  href='http://farm5.static.flickr.com/4049/4425556579_6a1ff92e7f_z.jpg' title='Point Pleasant Park'><img class='afg-img' src='http://farm5.static.flickr.com/4049/4425556579_6a1ff92e7f_m.jpg' alt='Point Pleasant Park'/></a><div class='afg-description'></div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example41'  href='http://farm5.static.flickr.com/4044/4426321278_a862a7e97e_z.jpg' title='Point Pleasant Park'><img class='afg-img' src='http://farm5.static.flickr.com/4044/4426321278_a862a7e97e_m.jpg' alt='Point Pleasant Park'/></a><div class='afg-description'></div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example41'  href='http://farm5.static.flickr.com/4029/4425556653_92900521a6_z.jpg' title='Point Pleasant Park'><img class='afg-img' src='http://farm5.static.flickr.com/4029/4425556653_92900521a6_m.jpg' alt='Point Pleasant Park'/></a><div class='afg-description'></div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example41'  href='http://farm3.static.flickr.com/2746/4426321362_6b235f2509_z.jpg' title='Point Pleasant Park'><img class='afg-img' src='http://farm3.static.flickr.com/2746/4426321362_6b235f2509_m.jpg' alt='Point Pleasant Park'/></a><div class='afg-description'></div></div></div></div></div><!-- Awesome Flickr Gallery End -->
]]></content:encoded>
			<wfw:commentRss>http://www.checkthisshitout.com/2010/03/demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing the Skylight</title>
		<link>http://www.checkthisshitout.com/2009/07/installing-the-skylight/</link>
		<comments>http://www.checkthisshitout.com/2009/07/installing-the-skylight/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 05:44:52 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[cottage]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.checkthisshitout.com/?p=292</guid>
		<description><![CDATA[Well it was time to replace that old skylight in our cottage so I collected all the supplies I&#8217;d need and set to work. After two days of working non stop I got the old window out, the hole reframed and widened. Removed some of the old shingles around the hole and put the new [...]]]></description>
			<content:encoded><![CDATA[<p>Well it was time to replace that old skylight in our cottage so I collected all the supplies I&#8217;d need and set to work.  After two days of working non stop I got the old window out, the hole reframed and widened.  Removed some of the old shingles around the hole and put the new skylight in place.  After careful reading of the instructions re-shingling<br />
and flashing went fairly well.</p>
<p>Unfortunately I was unable to fix the two short shingles from the original window.  They wrapped up over the peak and would have involved a lot more shingle tear out.  So for now I left them intact.</p>
<!-- Awesome Flickr Gallery Start --><!-- - Version - 3.2.8 - User ID - 48257328@N02 - Photoset ID - 72157623614586400 - Gallery ID -  - Group ID -  - Tags -  - Popular -  - Per Page - 100 - Sort Order - flickr - Photo Size - _m - Custom Size - 0 - Square - false - Captions - off - Description - on - Columns - 2 - Credit Note - off - Background Color - Transparent - Width - auto - Pagination - on - Slideshow - colorbox - Disable slideshow? - --><div class='afg-gallery custom-gallery-2' style='background-color:Transparent; width:100%; color:; border-color:Transparent;'><div class='afg-table' style='width:100%'><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4004/4430119519_4ffccca028_b.jpg' title='Original rotten skylight'><img class='afg-img' src='http://farm5.static.flickr.com/4004/4430119519_4ffccca028_m.jpg' alt='Original rotten skylight'/></a><div class='afg-description'>This is the original wooden skylight at our cottage.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4052/4430119821_90c4ab8a2f_b.jpg' title='Rotten, leaky skylight'><img class='afg-img' src='http://farm5.static.flickr.com/4052/4430119821_90c4ab8a2f_m.jpg' alt='Rotten, leaky skylight'/></a><div class='afg-description'>The ancient wooden skylight at our cottage, in need of replacement.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm3.staticflickr.com/2714/4430886506_d0a58deed5_b.jpg' title='Peeling paint'><img class='afg-img' src='http://farm3.static.flickr.com/2714/4430886506_d0a58deed5_m.jpg' alt='Peeling paint'/></a><div class='afg-description'>Not much left on the original skylight.  The wood has mostly rotted away.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4027/4430886886_fbfbcc2823_b.jpg' title='Patches and more patches'><img class='afg-img' src='http://farm5.static.flickr.com/4027/4430886886_fbfbcc2823_m.jpg' alt='Patches and more patches'/></a><div class='afg-description'>The skylight has been patched and patched and still leaks, its time to go.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm3.staticflickr.com/2714/4430887540_098475190c_b.jpg' title='Original skylight'><img class='afg-img' src='http://farm3.static.flickr.com/2714/4430887540_098475190c_m.jpg' alt='Original skylight'/></a><div class='afg-description'>Moss grows freely in the rotten wood.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm3.staticflickr.com/2701/4430885328_b5e0e88e45_b.jpg' title='Skylight removed'><img class='afg-img' src='http://farm3.static.flickr.com/2701/4430885328_b5e0e88e45_m.jpg' alt='Skylight removed'/></a><div class='afg-description'>Rotten skylight removed and in the fire pit where it belongs.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4004/4430117609_a42f1ff670_b.jpg' title='Skylight removed'><img class='afg-img' src='http://farm5.static.flickr.com/4004/4430117609_a42f1ff670_m.jpg' alt='Skylight removed'/></a><div class='afg-description'>The old skylight will make better firewood than it would a skylight at this point.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm3.staticflickr.com/2794/4430884470_7d5bd4f970_b.jpg' title='Original skylight opening'><img class='afg-img' src='http://farm3.static.flickr.com/2794/4430884470_7d5bd4f970_m.jpg' alt='Original skylight opening'/></a><div class='afg-description'>The framed opening where the existing skylight used to be.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm3.staticflickr.com/2730/4430115737_b768181117_b.jpg' title='Skylight opening'><img class='afg-img' src='http://farm3.static.flickr.com/2730/4430115737_b768181117_m.jpg' alt='Skylight opening'/></a><div class='afg-description'>This is an inside view of where the skylight used to be.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4019/4430115397_2251227a3a_b.jpg' title='Widening the opening'><img class='afg-img' src='http://farm5.static.flickr.com/4019/4430115397_2251227a3a_m.jpg' alt='Widening the opening'/></a><div class='afg-description'>The new skylight is much wider than the original so I needed to resize and reframe the opening.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4055/4430882944_78eb8cff3e_b.jpg' title='New skylight opening'><img class='afg-img' src='http://farm5.static.flickr.com/4055/4430882944_78eb8cff3e_m.jpg' alt='New skylight opening'/></a><div class='afg-description'>Once the opening was widened and reframed, the next step was preparing the surrounding shingles.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm3.staticflickr.com/2777/4430880904_4a0794ba0e_b.jpg' title='New skylight installed'><img class='afg-img' src='http://farm3.static.flickr.com/2777/4430880904_4a0794ba0e_m.jpg' alt='New skylight installed'/></a><div class='afg-description'>The new skylight although wider was much shorter, so  it left an area above that needed to be dealt with.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm3.staticflickr.com/2704/4430882010_2e94d746d7_b.jpg' title='Roof closed in above skylight'><img class='afg-img' src='http://farm3.static.flickr.com/2704/4430882010_2e94d746d7_m.jpg' alt='Roof closed in above skylight'/></a><div class='afg-description'>Framed in the area above the skylight and installed roof decking to close in the gap.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4072/4430112181_0dff27d78e_b.jpg' title='Left side flashed and shingled'><img class='afg-img' src='http://farm5.static.flickr.com/4072/4430112181_0dff27d78e_m.jpg' alt='Left side flashed and shingled'/></a><div class='afg-description'>After surrounding the skylight with a self adhesive membrane, I got to work flashing and shingling the bottom and left side of the skylight.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4037/4430111831_14347a5bc5_b.jpg' title='More shingling and flashing'><img class='afg-img' src='http://farm5.static.flickr.com/4037/4430111831_14347a5bc5_m.jpg' alt='More shingling and flashing'/></a><div class='afg-description'>Bottom and both sides are flashed and shingled.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm3.staticflickr.com/2766/4430879392_c209dc775d_b.jpg' title='Top flashing installed'><img class='afg-img' src='http://farm3.static.flickr.com/2766/4430879392_c209dc775d_m.jpg' alt='Top flashing installed'/></a><div class='afg-description'>Installing the top flashing to complete the process.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm3.staticflickr.com/2785/4430878794_f99e74c602_b.jpg' title='Top shingled'><img class='afg-img' src='http://farm3.static.flickr.com/2785/4430878794_f99e74c602_m.jpg' alt='Top shingled'/></a><div class='afg-description'>Unfortunately I was unable to remove the short shingles at the top as they are wrapped over another ridge.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4036/4430109777_d3efe315c9_b.jpg' title='Shingling complete'><img class='afg-img' src='http://farm5.static.flickr.com/4036/4430109777_d3efe315c9_m.jpg' alt='Shingling complete'/></a><div class='afg-description'>Skylight installed and water tight.  No longer will we have rain coming into the cottage.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4021/4430110321_7c8e845e05_b.jpg' title='Skylight installed'><img class='afg-img' src='http://farm5.static.flickr.com/4021/4430110321_7c8e845e05_m.jpg' alt='Skylight installed'/></a><div class='afg-description'>Completed installation.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4041/4430881532_d214c0ee9e_b.jpg' title='Reframed opening'><img class='afg-img' src='http://farm5.static.flickr.com/4041/4430881532_d214c0ee9e_m.jpg' alt='Reframed opening'/></a><div class='afg-description'>Inside view of the reframed opening.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4037/4430116669_b5ac080cce_b.jpg' title='Reframed opening'><img class='afg-img' src='http://farm5.static.flickr.com/4037/4430116669_b5ac080cce_m.jpg' alt='Reframed opening'/></a><div class='afg-description'></div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4019/4430114185_99651b50ba_b.jpg' title='Reframed opening'><img class='afg-img' src='http://farm5.static.flickr.com/4019/4430114185_99651b50ba_m.jpg' alt='Reframed opening'/></a><div class='afg-description'></div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4019/4430877414_da84f9b7cd_b.jpg' title='New skylight'><img class='afg-img' src='http://farm5.static.flickr.com/4019/4430877414_da84f9b7cd_m.jpg' alt='New skylight'/></a><div class='afg-description'>Skylight installed.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm3.staticflickr.com/2738/4430876698_e9f2edd3e1_b.jpg' title='New skylight'><img class='afg-img' src='http://farm3.static.flickr.com/2738/4430876698_e9f2edd3e1_m.jpg' alt='New skylight'/></a><div class='afg-description'>Another view of the cottage showing the skylight installed.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example42'  href='http://farm5.staticflickr.com/4031/4430876936_764b4c2b3c_b.jpg' title='New skylight installed'><img class='afg-img' src='http://farm5.static.flickr.com/4031/4430876936_764b4c2b3c_m.jpg' alt='New skylight installed'/></a><div class='afg-description'>Complete now the inside of the cottage will stay dry.</div></div></div></div></div><!-- Awesome Flickr Gallery End -->
<p>Now its back to work and rest up for the next project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.checkthisshitout.com/2009/07/installing-the-skylight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hanging the Moon</title>
		<link>http://www.checkthisshitout.com/2009/06/hanging-the-moon/</link>
		<comments>http://www.checkthisshitout.com/2009/06/hanging-the-moon/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 17:36:50 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[cottage]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.checkthisshitout.com/?p=277</guid>
		<description><![CDATA[This weekend we were able to complete the exterior paint and do those last minute things like hang a toilet paper holder and add a latch on the inside so you can lock the door and for the most part the weather was with us. There were some set backs however as Friday night brought [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend we were able to complete the exterior paint and do those last minute things like hang a toilet paper holder and add a latch on the inside so you can lock the door and for the most part the weather was with us.  </p>
<p>There were some set backs however as Friday night brought rain and destroyed the first coat of red paint we had put on the door.  After which we brought it inside and it was given another 3 coats of red on Saturday.  Sunday being final assembly day, I think it came together rather nicely.</p>
<!-- Awesome Flickr Gallery Start --><!-- - Version - 3.2.8 - User ID - 48257328@N02 - Photoset ID - 72157627541185504 - Gallery ID -  - Group ID -  - Tags -  - Popular -  - Per Page - 100 - Sort Order - flickr - Photo Size - _m - Custom Size - 0 - Square - false - Captions - off - Description - on - Columns - 2 - Credit Note - off - Background Color - Transparent - Width - auto - Pagination - on - Slideshow - colorbox - Disable slideshow? - --><div class='afg-gallery custom-gallery-7' style='background-color:Transparent; width:100%; color:; border-color:Transparent;'><div class='afg-table' style='width:100%'><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6072/6090323891_e97fd46ac7_b.jpg' title='DSC00381'><img class='afg-img' src='http://farm7.static.flickr.com/6072/6090323891_e97fd46ac7_m.jpg' alt='DSC00381'/></a><div class='afg-description'>Trim receives its last coat of white</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6196/6090869342_3e16ae8c68_b.jpg' title='DSC00382'><img class='afg-img' src='http://farm7.static.flickr.com/6196/6090869342_3e16ae8c68_m.jpg' alt='DSC00382'/></a><div class='afg-description'>Door receives yet another coat of red</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6206/6090323409_27b1eb06a3_b.jpg' title='DSC00384'><img class='afg-img' src='http://farm7.static.flickr.com/6206/6090323409_27b1eb06a3_m.jpg' alt='DSC00384'/></a><div class='afg-description'>After the second coat of paint, solar panel is also reinstalled</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6187/6090869682_482c713633_b.jpg' title='DSC00395'><img class='afg-img' src='http://farm7.static.flickr.com/6187/6090869682_482c713633_m.jpg' alt='DSC00395'/></a><div class='afg-description'>A side view after the first coat</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6182/6090868836_c7e7f8bfa5_b.jpg' title='DSC00400'><img class='afg-img' src='http://farm7.static.flickr.com/6182/6090868836_c7e7f8bfa5_m.jpg' alt='DSC00400'/></a><div class='afg-description'>Rear of the outhouse showing the paint</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6190/6090328909_ef7159cdcd_b.jpg' title='DSC00405'><img class='afg-img' src='http://farm7.static.flickr.com/6190/6090328909_ef7159cdcd_m.jpg' alt='DSC00405'/></a><div class='afg-description'>Front after its first coat of blue/grey on the main body</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6192/6090327111_79a503a064_b.jpg' title='DSC00408'><img class='afg-img' src='http://farm7.static.flickr.com/6192/6090327111_79a503a064_m.jpg' alt='DSC00408'/></a><div class='afg-description'>Door after its second coat of red</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6062/6090872698_2d949cd2ff_b.jpg' title='DSC00419'><img class='afg-img' src='http://farm7.static.flickr.com/6062/6090872698_2d949cd2ff_m.jpg' alt='DSC00419'/></a><div class='afg-description'>The moon gets painted white</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6088/6090872354_13ff39ba4b_b.jpg' title='DSC00425'><img class='afg-img' src='http://farm7.static.flickr.com/6088/6090872354_13ff39ba4b_m.jpg' alt='DSC00425'/></a><div class='afg-description'>Side view of eves showing grey paint and white trim</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6185/6090325757_11f797a397_b.jpg' title='DSC00427'><img class='afg-img' src='http://farm7.static.flickr.com/6185/6090325757_11f797a397_m.jpg' alt='DSC00427'/></a><div class='afg-description'>Completed paint job</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6195/6090326331_a1d5d92218_b.jpg' title='DSC00429'><img class='afg-img' src='http://farm7.static.flickr.com/6195/6090326331_a1d5d92218_m.jpg' alt='DSC00429'/></a><div class='afg-description'>Door and handle get reinstalled</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6087/6090871162_dec681e6b5_b.jpg' title='DSC00435'><img class='afg-img' src='http://farm7.static.flickr.com/6087/6090871162_dec681e6b5_m.jpg' alt='DSC00435'/></a><div class='afg-description'>The moon is now attached to the door</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6204/6090330397_f5d7f53bae_b.jpg' title='DSC00436'><img class='afg-img' src='http://farm7.static.flickr.com/6204/6090330397_f5d7f53bae_m.jpg' alt='DSC00436'/></a><div class='afg-description'>The moon is now attached to the door</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6088/6090330875_27c1c4a600_b.jpg' title='DSC00437'><img class='afg-img' src='http://farm7.static.flickr.com/6088/6090330875_27c1c4a600_m.jpg' alt='DSC00437'/></a><div class='afg-description'>Side view of the completed outhouse</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example47'  href='http://farm7.staticflickr.com/6073/6090873658_c82d714388_b.jpg' title='DSC00438'><img class='afg-img' src='http://farm7.static.flickr.com/6073/6090873658_c82d714388_m.jpg' alt='DSC00438'/></a><div class='afg-description'>Thats one red door, making the moon stand out.</div></div></div></div></div><!-- Awesome Flickr Gallery End -->
<p>Finally! We&#8217;re finished!  This project took 6 weekends of effort from hole digging to hanging the moon, but at last it has been completed.  </p>
<p><a href="http://www.checkthisshitout.com/archives/building-an-outhouse-the-complete-series/">See all the posts, from start to finish.</a></p>
<p>What&#8217;s next, how about that pesky skylight&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.checkthisshitout.com/2009/06/hanging-the-moon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Couple of boards, lick of paint and presto</title>
		<link>http://www.checkthisshitout.com/2009/06/couple-of-boards-lick-of-paint-and-presto/</link>
		<comments>http://www.checkthisshitout.com/2009/06/couple-of-boards-lick-of-paint-and-presto/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 09:40:54 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[cottage]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.checkthisshitout.com/?p=267</guid>
		<description><![CDATA[Another weekend of outhouse construction has gone and passed, we arrived late Friday evening in the rain. Saturday brought oddly enough no bugs, yet it was damp and there loomed a thick heavy fog all around the lake. There was the occasional black-fly or mosquito but they obeyed the laws of the bug spray and [...]]]></description>
			<content:encoded><![CDATA[<p>Another weekend of outhouse construction has gone and passed, we arrived late Friday evening in the rain.  Saturday brought oddly enough no bugs, yet it was damp and there loomed a thick heavy fog all around the lake.  There was the occasional black-fly or mosquito but they obeyed the laws of the bug spray and left us in peace.</p>
<p>So we set to work, finishing off the bench and mounting the toilet seat. Once that was complete it was time to prepare the door for paint.  The old green paint was cracked and peeling so the entire thing had to be sanded down before finally applying primer.  The next step was to caulk some of the larger gaps between the boards and give it an initial coat of paint.</p>
<p>While we had our brushes full of primer it was time to coat the entire building.  Unfortunately we ran out of painters tape before we could start painting the trim of the building. </p>
<!-- Awesome Flickr Gallery Start --><!-- - Version - 3.2.8 - User ID - 48257328@N02 - Photoset ID - 72157627540921542 - Gallery ID -  - Group ID -  - Tags -  - Popular -  - Per Page - 100 - Sort Order - flickr - Photo Size - _m - Custom Size - 0 - Square - false - Captions - off - Description - on - Columns - 2 - Credit Note - off - Background Color - Transparent - Width - auto - Pagination - on - Slideshow - colorbox - Disable slideshow? - --><div class='afg-gallery custom-gallery-6' style='background-color:Transparent; width:100%; color:; border-color:Transparent;'><div class='afg-table' style='width:100%'><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6065/6090262215_1ea0300128_b.jpg' title='DSC00241'><img class='afg-img' src='http://farm7.static.flickr.com/6065/6090262215_1ea0300128_m.jpg' alt='DSC00241'/></a><div class='afg-description'>Completed sub structure and inner hole plywood mounted</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6089/6090263845_2648fa9c49_b.jpg' title='DSC00244'><img class='afg-img' src='http://farm7.static.flickr.com/6089/6090263845_2648fa9c49_m.jpg' alt='DSC00244'/></a><div class='afg-description'>Left storage compartment</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6203/6090806430_6e14ec9443_b.jpg' title='DSC00246'><img class='afg-img' src='http://farm7.static.flickr.com/6203/6090806430_6e14ec9443_m.jpg' alt='DSC00246'/></a><div class='afg-description'>Right storage compartment</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6068/6090806796_1b6f848c5c_b.jpg' title='DSC00247'><img class='afg-img' src='http://farm7.static.flickr.com/6068/6090806796_1b6f848c5c_m.jpg' alt='DSC00247'/></a><div class='afg-description'>Screen on the eves to keep the bugs out</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6066/6090264407_9d6b75ce5b_b.jpg' title='DSC00249'><img class='afg-img' src='http://farm7.static.flickr.com/6066/6090264407_9d6b75ce5b_m.jpg' alt='DSC00249'/></a><div class='afg-description'>Plywood top in place and toilet seat installed</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6090/6090808818_da4e9c8414_b.jpg' title='DSC00250'><img class='afg-img' src='http://farm7.static.flickr.com/6090/6090808818_da4e9c8414_m.jpg' alt='DSC00250'/></a><div class='afg-description'>View of the seat down and the bench top mounted with hinges</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6203/6090812570_05bcb1ec2b_b.jpg' title='DSC00254'><img class='afg-img' src='http://farm7.static.flickr.com/6203/6090812570_05bcb1ec2b_m.jpg' alt='DSC00254'/></a><div class='afg-description'>Found this recycling bin works perfectly as a hole liner, we had to notch around the nuts that mount the seat</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6192/6090266541_0373c14919_b.jpg' title='DSC00260'><img class='afg-img' src='http://farm7.static.flickr.com/6192/6090266541_0373c14919_m.jpg' alt='DSC00260'/></a><div class='afg-description'>Completed bench</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6077/6090269521_2b52d133dd_b.jpg' title='DSC00268'><img class='afg-img' src='http://farm7.static.flickr.com/6077/6090269521_2b52d133dd_m.jpg' alt='DSC00268'/></a><div class='afg-description'>Burning the final remains of the old outhouse</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6070/6090267389_e11c064c54_b.jpg' title='DSC00278'><img class='afg-img' src='http://farm7.static.flickr.com/6070/6090267389_e11c064c54_m.jpg' alt='DSC00278'/></a><div class='afg-description'>Painters tape set around the bench top</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6089/6090809710_a532c0267f_b.jpg' title='DSC00298'><img class='afg-img' src='http://farm7.static.flickr.com/6089/6090809710_a532c0267f_m.jpg' alt='DSC00298'/></a><div class='afg-description'>Added some scrap roofing to the back as the barrel in the ground was still slightly exposed</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6074/6090270181_bc2f68cb05_b.jpg' title='DSC00300'><img class='afg-img' src='http://farm7.static.flickr.com/6074/6090270181_bc2f68cb05_m.jpg' alt='DSC00300'/></a><div class='afg-description'>Bench and floor finally primed</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6181/6090811958_5701875229_b.jpg' title='DSC00320'><img class='afg-img' src='http://farm7.static.flickr.com/6181/6090811958_5701875229_m.jpg' alt='DSC00320'/></a><div class='afg-description'>Door after spending hours sanding it downv</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6202/6090816022_c737db5ae9_b.jpg' title='DSC00326'><img class='afg-img' src='http://farm7.static.flickr.com/6202/6090816022_c737db5ae9_m.jpg' alt='DSC00326'/></a><div class='afg-description'>Door completely primed</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6189/6090273713_582b179839_b.jpg' title='DSC00328'><img class='afg-img' src='http://farm7.static.flickr.com/6189/6090273713_582b179839_m.jpg' alt='DSC00328'/></a><div class='afg-description'>After caulking the door, not that you can see the white caulking</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6070/6090818252_8b9aaab1f9_b.jpg' title='DSC00329'><img class='afg-img' src='http://farm7.static.flickr.com/6070/6090818252_8b9aaab1f9_m.jpg' alt='DSC00329'/></a><div class='afg-description'>Final coat of paint for the bench and floor, the building gets its primer</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6197/6090815110_d19854f9a2_b.jpg' title='DSC00332'><img class='afg-img' src='http://farm7.static.flickr.com/6197/6090815110_d19854f9a2_m.jpg' alt='DSC00332'/></a><div class='afg-description'>Completed priming the entire building</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example46'  href='http://farm7.staticflickr.com/6200/6090272591_db34cce868_b.jpg' title='DSC00336'><img class='afg-img' src='http://farm7.static.flickr.com/6200/6090272591_db34cce868_m.jpg' alt='DSC00336'/></a><div class='afg-description'>Door remounted after being painted white on the inside</div></div></div></div></div><!-- Awesome Flickr Gallery End -->
<p>Oh well at least the inside is done so it should be functional the next time we go out.</p>
<p><a href="http://www.checkthisshitout.com/archives/building-an-outhouse-the-complete-series/">See all the posts, from start to finish.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.checkthisshitout.com/2009/06/couple-of-boards-lick-of-paint-and-presto/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Here&#8217;s Your Damn Door</title>
		<link>http://www.checkthisshitout.com/2009/05/heres-your-damn-door/</link>
		<comments>http://www.checkthisshitout.com/2009/05/heres-your-damn-door/#comments</comments>
		<pubDate>Tue, 26 May 2009 10:47:34 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[cottage]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.checkthisshitout.com/?p=261</guid>
		<description><![CDATA[Well the weather was with us, and we had our supplies ready to go. So when Friday rolled around we headed back to finish the building of the outhouse. What we weren&#8217;t counting on was the sheer volume of black-flies and their hunger for human flesh. These things were just plain awful, attacking in numbers [...]]]></description>
			<content:encoded><![CDATA[<p>Well the weather was with us, and we had our supplies ready to go.  So when Friday rolled around we headed back to finish the building of the outhouse.  What we weren&#8217;t counting on was the sheer volume of black-flies and their hunger for human flesh.</p>
<p>These things were just plain awful, attacking in numbers to high to count.  Whenever you&#8217;d stop to hold a piece of wood, or attempted to screw two pieces together they were all over you.  Needless to say while up shingling the roof I was a sitting duck.  By the end of the day Saturday my arms were covered in bites.  My ears were swollen and bright red causing them to stick out, not unlike the Mad magazine &#8220;What me worry&#8221; guy.</p>
<p>Despite it all we did get somethings accomplished, but did not manage to complete the project.  We got the roof on, the door hung, solar light installed, trim and screened vents in place.  We started work on the bench, but had to pack it in when the rain started on Sunday.</p>
<!-- Awesome Flickr Gallery Start --><!-- - Version - 3.2.8 - User ID - 48257328@N02 - Photoset ID - 72157627540713396 - Gallery ID -  - Group ID -  - Tags -  - Popular -  - Per Page - 100 - Sort Order - flickr - Photo Size - _m - Custom Size - 0 - Square - false - Captions - off - Description - on - Columns - 2 - Credit Note - off - Background Color - Transparent - Width - auto - Pagination - on - Slideshow - colorbox - Disable slideshow? - --><div class='afg-gallery custom-gallery-5' style='background-color:Transparent; width:100%; color:; border-color:Transparent;'><div class='afg-table' style='width:100%'><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6196/6090679012_9d4053bc7e_b.jpg' title='DSC00182'><img class='afg-img' src='http://farm7.static.flickr.com/6196/6090679012_9d4053bc7e_m.jpg' alt='DSC00182'/></a><div class='afg-description'>Roof finally shingled</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6081/6090141317_24ec505a5e_b.jpg' title='DSC00184'><img class='afg-img' src='http://farm7.static.flickr.com/6081/6090141317_24ec505a5e_m.jpg' alt='DSC00184'/></a><div class='afg-description'>I did a fine job shingling if I do say so myself.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6069/6090137759_1bcc8acefa_b.jpg' title='DSC00186'><img class='afg-img' src='http://farm7.static.flickr.com/6069/6090137759_1bcc8acefa_m.jpg' alt='DSC00186'/></a><div class='afg-description'>Roof complete, starting to get the trim on.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6072/6090677646_04c6573f2b_b.jpg' title='DSC00187'><img class='afg-img' src='http://farm7.static.flickr.com/6072/6090677646_04c6573f2b_m.jpg' alt='DSC00187'/></a><div class='afg-description'>Its taking shape, still a number of things left to do</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6062/6090136031_2ef7f908c4_b.jpg' title='DSC00202'><img class='afg-img' src='http://farm7.static.flickr.com/6062/6090136031_2ef7f908c4_m.jpg' alt='DSC00202'/></a><div class='afg-description'>Door trimmed out and the repurposed door was rebuilt and sized for the opening.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6186/6090679384_e25e1ca727_b.jpg' title='DSC00211'><img class='afg-img' src='http://farm7.static.flickr.com/6186/6090679384_e25e1ca727_m.jpg' alt='DSC00211'/></a><div class='afg-description'>Hinges worked like a charm, not the first door I've hung.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6192/6090140303_b999c971b5_b.jpg' title='DSC00225'><img class='afg-img' src='http://farm7.static.flickr.com/6192/6090140303_b999c971b5_m.jpg' alt='DSC00225'/></a><div class='afg-description'>Solar panel installed.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6185/6090680618_9bff9d3dd6_b.jpg' title='DSC00228'><img class='afg-img' src='http://farm7.static.flickr.com/6185/6090680618_9bff9d3dd6_m.jpg' alt='DSC00228'/></a><div class='afg-description'>Solar light installed at a kid accessible height.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6062/6090138823_433c3766e7_b.jpg' title='DSC00229'><img class='afg-img' src='http://farm7.static.flickr.com/6062/6090138823_433c3766e7_m.jpg' alt='DSC00229'/></a><div class='afg-description'>The light is on in this shot but the camera flash makes the whole thing kinda pointless.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6087/6090684534_2c2d90366d_b.jpg' title='DSC00230'><img class='afg-img' src='http://farm7.static.flickr.com/6087/6090684534_2c2d90366d_m.jpg' alt='DSC00230'/></a><div class='afg-description'>Close up view of the light.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6183/6090138199_155daf9e74_b.jpg' title='DSC00233'><img class='afg-img' src='http://farm7.static.flickr.com/6183/6090138199_155daf9e74_m.jpg' alt='DSC00233'/></a><div class='afg-description'>View of the inside of the door, and door latch installed.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6075/6090139509_67756f3dd4_b.jpg' title='DSC00237'><img class='afg-img' src='http://farm7.static.flickr.com/6075/6090139509_67756f3dd4_m.jpg' alt='DSC00237'/></a><div class='afg-description'>Bench starting to take shape, the plywood on the front hasn't been fastened down yet.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example45'  href='http://farm7.staticflickr.com/6064/6090134371_c1d267ce09_b.jpg' title='DSC00239'><img class='afg-img' src='http://farm7.static.flickr.com/6064/6090134371_c1d267ce09_m.jpg' alt='DSC00239'/></a><div class='afg-description'>Underlying structure of the bench.</div></div></div></div></div><!-- Awesome Flickr Gallery End -->
<p>Till next weekend&#8230;</p>
<p><a href="http://www.checkthisshitout.com/archives/building-an-outhouse-the-complete-series/">See all the posts, from start to finish.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.checkthisshitout.com/2009/05/heres-your-damn-door/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building an OutHouse</title>
		<link>http://www.checkthisshitout.com/2009/05/building-an-outhouse/</link>
		<comments>http://www.checkthisshitout.com/2009/05/building-an-outhouse/#comments</comments>
		<pubDate>Mon, 18 May 2009 16:07:56 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[cottage]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.checkthisshitout.com/?p=252</guid>
		<description><![CDATA[Well with the collapse of the outhouse at our cottage last summer it was time to build a new one. We chose a location and started digging, after striking several unmovable rocks we gave up&#8230; The next weekend we set out to dig in a new location, while we didn&#8217;t hit any large rocks we [...]]]></description>
			<content:encoded><![CDATA[<p>Well with the collapse of the outhouse at our cottage last summer it was time to build a new one.  We chose a location and started digging, after striking several unmovable rocks we gave up&#8230;</p>
<p>The next weekend we set out to dig in a new location, while we didn&#8217;t hit any large rocks we did encounter several difficult layers.  The first 7 inches was dirt and roots.  Then we hit about a foot of grey material that was like digging in a litter box.  Next came a dark rusty layer that was harder than hell and had to be busted apart with a steel bar.  This layer also brought ground water which started seeping into the hole.</p>
<p>Every inch after the rusty layer for over the next foot or more consisted of hard packed sandy rocks.  This layer was so tightly packed we had to use the steel bar to break it up before we could shovel it.  We couldn&#8217;t stop digging at this point as water continued to come into the hole.  </p>
<p>In the end we where exhausted but managed to sink a plastic barrel into the hole to keep the hole from collapsing.</p>
<!-- Awesome Flickr Gallery Start --><!-- - Version - 3.2.8 - User ID - 48257328@N02 - Photoset ID - 72157623824788556 - Gallery ID -  - Group ID -  - Tags -  - Popular -  - Per Page - 100 - Sort Order - flickr - Photo Size - _m - Custom Size - 0 - Square - false - Captions - off - Description - on - Columns - 2 - Credit Note - off - Background Color - Transparent - Width - auto - Pagination - on - Slideshow - colorbox - Disable slideshow? - --><div class='afg-gallery custom-gallery-3' style='background-color:Transparent; width:100%; color:; border-color:Transparent;'><div class='afg-table' style='width:100%'><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example43'  href='http://farm3.staticflickr.com/2075/4507594481_6aa100c277_b.jpg' title='Barrel in hole'><img class='afg-img' src='http://farm3.static.flickr.com/2075/4507594481_6aa100c277_m.jpg' alt='Barrel in hole'/></a><div class='afg-description'>The barrel finally in place.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example43'  href='http://farm5.staticflickr.com/4024/4508234490_a14101f80b_b.jpg' title='Barrel in hole'><img class='afg-img' src='http://farm5.static.flickr.com/4024/4508234490_a14101f80b_m.jpg' alt='Barrel in hole'/></a><div class='afg-description'>The barrel finally in place.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example43'  href='http://farm3.staticflickr.com/2376/4507596349_0087009e3c_b.jpg' title='Hole dug and barrel inserted'><img class='afg-img' src='http://farm3.static.flickr.com/2376/4507596349_0087009e3c_m.jpg' alt='Hole dug and barrel inserted'/></a><div class='afg-description'>Barrel in place in the hole.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example43'  href='http://farm3.staticflickr.com/2339/4508236376_d9be26974f_b.jpg' title='Barrel with gravel base'><img class='afg-img' src='http://farm3.static.flickr.com/2339/4508236376_d9be26974f_m.jpg' alt='Barrel with gravel base'/></a><div class='afg-description'>The hole and barrel done, and the gravel base.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example43'  href='http://farm3.staticflickr.com/2117/4508237402_778245cfec_b.jpg' title='Gravel base'><img class='afg-img' src='http://farm3.static.flickr.com/2117/4508237402_778245cfec_m.jpg' alt='Gravel base'/></a><div class='afg-description'>The gravel in place around the barrel.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example43'  href='http://farm3.staticflickr.com/2282/4508238320_cff853fda9_b.jpg' title='Barrel with gravel base'><img class='afg-img' src='http://farm3.static.flickr.com/2282/4508238320_cff853fda9_m.jpg' alt='Barrel with gravel base'/></a><div class='afg-description'>The gravel in place around the barrel.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example43'  href='http://farm5.staticflickr.com/4027/4508239200_f3825c0840_b.jpg' title='Barrel with gravel base'><img class='afg-img' src='http://farm5.static.flickr.com/4027/4508239200_f3825c0840_m.jpg' alt='Barrel with gravel base'/></a><div class='afg-description'>The gravel in place around the barrel.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example43'  href='http://farm3.staticflickr.com/2334/4507600785_52be26af7a_b.jpg' title='Barrel in the hole'><img class='afg-img' src='http://farm3.static.flickr.com/2334/4507600785_52be26af7a_m.jpg' alt='Barrel in the hole'/></a><div class='afg-description'>The hole and barrel done, and the gravel base.</div></div></div></div></div><!-- Awesome Flickr Gallery End -->
<p>That was it for that weekend, next weekend it was time to build.  We got some concrete footers and a pile of lumber based on the plans in our heads and set to work.  The black flies were out in full force, and there wasn&#8217;t any wind to blow them away, but we kept going.  After two days of working from morning to sun down we managed to get everything up and sheeted before the weekend was gone and the rain started.</p>
<!-- Awesome Flickr Gallery Start --><!-- - Version - 3.2.8 - User ID - 48257328@N02 - Photoset ID - 72157627416142025 - Gallery ID -  - Group ID -  - Tags -  - Popular -  - Per Page - 100 - Sort Order - flickr - Photo Size - _m - Custom Size - 0 - Square - false - Captions - off - Description - on - Columns - 2 - Credit Note - off - Background Color - Transparent - Width - auto - Pagination - on - Slideshow - colorbox - Disable slideshow? - --><div class='afg-gallery custom-gallery-4' style='background-color:Transparent; width:100%; color:; border-color:Transparent;'><div class='afg-table' style='width:100%'><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6205/6090598548_10fcbcd0c0_b.jpg' title='DSC00136'><img class='afg-img' src='http://farm7.static.flickr.com/6205/6090598548_10fcbcd0c0_m.jpg' alt='DSC00136'/></a><div class='afg-description'>Outhouse base and footers in place on the gravel base.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6072/6090061757_40ab344835_b.jpg' title='DSC00138'><img class='afg-img' src='http://farm7.static.flickr.com/6072/6090061757_40ab344835_m.jpg' alt='DSC00138'/></a><div class='afg-description'>First stud wall in place.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6185/6090053679_8a8b02fdac_b.jpg' title='DSC00141'><img class='afg-img' src='http://farm7.static.flickr.com/6185/6090053679_8a8b02fdac_m.jpg' alt='DSC00141'/></a><div class='afg-description'>Second stud wall in place.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6081/6090055989_89f523a182_b.jpg' title='DSC00145'><img class='afg-img' src='http://farm7.static.flickr.com/6081/6090055989_89f523a182_m.jpg' alt='DSC00145'/></a><div class='afg-description'>Third stud wall in place.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6068/6090051889_f6ea2b2e42_b.jpg' title='DSC00147'><img class='afg-img' src='http://farm7.static.flickr.com/6068/6090051889_f6ea2b2e42_m.jpg' alt='DSC00147'/></a><div class='afg-description'>Front stud wall in place, framed for the door.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6194/6090598948_cf8c0da5cf_b.jpg' title='DSC00148'><img class='afg-img' src='http://farm7.static.flickr.com/6194/6090598948_cf8c0da5cf_m.jpg' alt='DSC00148'/></a><div class='afg-description'>First wall panel goes up.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6182/6090060191_73587a5aff_b.jpg' title='DSC00149'><img class='afg-img' src='http://farm7.static.flickr.com/6182/6090060191_73587a5aff_m.jpg' alt='DSC00149'/></a><div class='afg-description'>Second wall panel installed.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6187/6090056839_1a60e5410a_b.jpg' title='DSC00150'><img class='afg-img' src='http://farm7.static.flickr.com/6187/6090056839_1a60e5410a_m.jpg' alt='DSC00150'/></a><div class='afg-description'>Half the roof, this photo doesn't represent the hours required to figure out the angles involved.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6088/6090062505_792a68c006_b.jpg' title='DSC00151'><img class='afg-img' src='http://farm7.static.flickr.com/6088/6090062505_792a68c006_m.jpg' alt='DSC00151'/></a><div class='afg-description'>Roof studs completed.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6083/6090060839_3ba1b20c52_b.jpg' title='DSC00152'><img class='afg-img' src='http://farm7.static.flickr.com/6083/6090060839_3ba1b20c52_m.jpg' alt='DSC00152'/></a><div class='afg-description'>Front view of the completed roof studs.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6194/6090595156_3c7323f7d0_b.jpg' title='DSC00154'><img class='afg-img' src='http://farm7.static.flickr.com/6194/6090595156_3c7323f7d0_m.jpg' alt='DSC00154'/></a><div class='afg-description'>Top view of the roof, back wall panel in place.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6188/6090596380_59d3c4f44c_b.jpg' title='DSC00157'><img class='afg-img' src='http://farm7.static.flickr.com/6188/6090596380_59d3c4f44c_m.jpg' alt='DSC00157'/></a><div class='afg-description'>Back panel installed.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6185/6090603232_4c5443244e_b.jpg' title='DSC00158'><img class='afg-img' src='http://farm7.static.flickr.com/6185/6090603232_4c5443244e_m.jpg' alt='DSC00158'/></a><div class='afg-description'>Hole in the floor screened to keep bugs from sneaking in.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6061/6090602558_2a0f0020ca_b.jpg' title='DSC00161'><img class='afg-img' src='http://farm7.static.flickr.com/6061/6090602558_2a0f0020ca_m.jpg' alt='DSC00161'/></a><div class='afg-description'>Front wall panel installed.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6078/6090601904_57cfb44f0c_b.jpg' title='DSC00164'><img class='afg-img' src='http://farm7.static.flickr.com/6078/6090601904_57cfb44f0c_m.jpg' alt='DSC00164'/></a><div class='afg-description'>Inside view of the roof peak.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6203/6090607418_d77419165d_b.jpg' title='DSC00170'><img class='afg-img' src='http://farm7.static.flickr.com/6203/6090607418_d77419165d_m.jpg' alt='DSC00170'/></a><div class='afg-description'>Completed roof sheeting.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6083/6090053015_8b1b7f31f8_b.jpg' title='DSC00171'><img class='afg-img' src='http://farm7.static.flickr.com/6083/6090053015_8b1b7f31f8_m.jpg' alt='DSC00171'/></a><div class='afg-description'>Inside view of the completed roof peak.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example44'  href='http://farm7.staticflickr.com/6075/6090603832_bec02af212_b.jpg' title='DSC00172'><img class='afg-img' src='http://farm7.static.flickr.com/6075/6090603832_bec02af212_m.jpg' alt='DSC00172'/></a><div class='afg-description'>Completed outhouse structure.</div></div></div></div></div><!-- Awesome Flickr Gallery End -->
<p>We still need to install the door, shingle the roof, build the bench, add trim and paint.  Next weekend&#8230;</p>
<p><a href="http://www.checkthisshitout.com/archives/building-an-outhouse-the-complete-series/">See all the posts, from start to finish.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.checkthisshitout.com/2009/05/building-an-outhouse/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Down in the basement</title>
		<link>http://www.checkthisshitout.com/2009/05/down-in-the-basement/</link>
		<comments>http://www.checkthisshitout.com/2009/05/down-in-the-basement/#comments</comments>
		<pubDate>Mon, 18 May 2009 14:17:41 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.checkthisshitout.com/?p=246</guid>
		<description><![CDATA[My mother owns a house just up the street from out family cottage. Which works out well as our cottage does not have running water. However as the house was closed up over the winter we ran into some problems. Mainly the sump pump burned out and the basement flooded with water. On top of [...]]]></description>
			<content:encoded><![CDATA[<p>My mother owns a house just up the street from out family cottage.  Which works out well as our cottage does not have running water.  However as the house was closed up over the winter we ran into some problems.  Mainly the sump pump burned out and the basement flooded with water.  On top of this the platform holding the water pump finally rotted away and collapsed leaving everything dangling from a single pipe.</p>
<p>We bought a new sump pump and drained the basement and set to work removing all of the years of crap plumbing and stuck together bits in an effort to remove as many of the future potential leaks as possible.  We also installed a number of shut off valves as any that were down there either went to some long ago piece of pipe that no longer exists or where so badly corroded they refused to move.  Some did both and just slowly dripped showing their age.</p>
<p>I failed to get any before pictures but grabbed some after everything was redone.</p>
<!-- Awesome Flickr Gallery Start --><!-- - Version - 3.2.8 - User ID - 48257328@N02 - Photoset ID - 72157623824279914 - Gallery ID -  - Group ID -  - Tags -  - Popular -  - Per Page - 100 - Sort Order - flickr - Photo Size - _m - Custom Size - 0 - Square - false - Captions - off - Description - on - Columns - 2 - Credit Note - off - Background Color - Transparent - Width - auto - Pagination - on - Slideshow - colorbox - Disable slideshow? - --><div class='afg-gallery custom-gallery-8' style='background-color:Transparent; width:100%; color:; border-color:Transparent;'><div class='afg-table' style='width:100%'><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2251/4508007874_fac2f2bf10_b.jpg' title='New pump, plumbing and stand'><img class='afg-img' src='http://farm3.static.flickr.com/2251/4508007874_fac2f2bf10_m.jpg' alt='New pump, plumbing and stand'/></a><div class='afg-description'>New pump and plumbing all installed and working.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2287/4508008502_e42fac6e72_b.jpg' title='New plumbing stand'><img class='afg-img' src='http://farm3.static.flickr.com/2287/4508008502_e42fac6e72_m.jpg' alt='New plumbing stand'/></a><div class='afg-description'>New platform, up on concrete blocks to prevent any future floods from rotting the wood.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2383/4508009198_8627f051ba_b.jpg' title='Rebuilt pump installed'><img class='afg-img' src='http://farm3.static.flickr.com/2383/4508009198_8627f051ba_m.jpg' alt='Rebuilt pump installed'/></a><div class='afg-description'>All plumbed in, notice the two disconnects on the water in and out pipes. Now we can remove the pump in the fall.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2693/4507371213_0399123f96_b.jpg' title='New plumbing completed'><img class='afg-img' src='http://farm3.static.flickr.com/2693/4507371213_0399123f96_m.jpg' alt='New plumbing completed'/></a><div class='afg-description'>All new fittings, removing years of hose clamps and different sized pipes and adapters.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2007/4507371905_2401e7dcda_b.jpg' title='New plumbing completed'><img class='afg-img' src='http://farm3.static.flickr.com/2007/4507371905_2401e7dcda_m.jpg' alt='New plumbing completed'/></a><div class='afg-description'>All new fittings, removing years of hose clamps and different sized pipes and adapters.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm5.staticflickr.com/4041/4507372643_47a3bf3b2d_b.jpg' title='Compression tank'><img class='afg-img' src='http://farm5.static.flickr.com/4041/4507372643_47a3bf3b2d_m.jpg' alt='Compression tank'/></a><div class='afg-description'>The original compression tank, thank god it didn't leak.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm5.staticflickr.com/4034/4507373303_ff66ebcd5b_b.jpg' title='Mess of pipes and connectors removed'><img class='afg-img' src='http://farm5.static.flickr.com/4034/4507373303_ff66ebcd5b_m.jpg' alt='Mess of pipes and connectors removed'/></a><div class='afg-description'>Straight runs of pipe replacing years of T connectors and leaking valves.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2709/4508012378_6aa7095020_b.jpg' title='Hotwater tank shutoff valves'><img class='afg-img' src='http://farm3.static.flickr.com/2709/4508012378_6aa7095020_m.jpg' alt='Hotwater tank shutoff valves'/></a><div class='afg-description'>Shutoff valves installed for the hot water tank.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2759/4507374635_12e58d43d5_b.jpg' title='Upstairs washroom shutoff valves'><img class='afg-img' src='http://farm3.static.flickr.com/2759/4507374635_12e58d43d5_m.jpg' alt='Upstairs washroom shutoff valves'/></a><div class='afg-description'>New shutoff valves for the upstairs washroom.  These are off until we can fix the problems up there.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2729/4507375357_4b1441a88d_b.jpg' title='Downstairs washroom shutoff valves'><img class='afg-img' src='http://farm3.static.flickr.com/2729/4507375357_4b1441a88d_m.jpg' alt='Downstairs washroom shutoff valves'/></a><div class='afg-description'>New shutoff valves installed for the downstairs washroom.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2101/4507376017_6947830d51_b.jpg' title='Sump pump installed'><img class='afg-img' src='http://farm3.static.flickr.com/2101/4507376017_6947830d51_m.jpg' alt='Sump pump installed'/></a><div class='afg-description'>Why does the wall say &quot;leak&quot;?</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2313/4508015182_408c88ed5a_b.jpg' title='Sump pump installed'><img class='afg-img' src='http://farm3.static.flickr.com/2313/4508015182_408c88ed5a_m.jpg' alt='Sump pump installed'/></a><div class='afg-description'>Damn rock in the well caused us nothing but problems.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm3.staticflickr.com/2742/4508015962_00e23dd8de_b.jpg' title='Sump pump installed'><img class='afg-img' src='http://farm3.static.flickr.com/2742/4508015962_00e23dd8de_m.jpg' alt='Sump pump installed'/></a><div class='afg-description'>The new sump pump, installed in its well.</div></div><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm5.staticflickr.com/4014/4508016684_706107e690_b.jpg' title='Sump pump installed'><img class='afg-img' src='http://farm5.static.flickr.com/4014/4508016684_706107e690_m.jpg' alt='Sump pump installed'/></a><div class='afg-description'>The new sump pump, installed in its well.</div></div></div><div class='afg-row'><div class='afg-cell' style='width:50%;'><a class='afgcolorbox' rel='example48'  href='http://farm5.staticflickr.com/4047/4507379041_a05527da85_b.jpg' title='Sump pump installed'><img class='afg-img' src='http://farm5.static.flickr.com/4047/4507379041_a05527da85_m.jpg' alt='Sump pump installed'/></a><div class='afg-description'>Mystery pipe in the well, no idea why but its in the way.</div></div></div></div></div><!-- Awesome Flickr Gallery End -->
<p>I should also mention that I did all of the solder connections and didn&#8217;t have a single leak.  Not bad for a guy who&#8217;s only training was soldering electronics and DIY shows on TV.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.checkthisshitout.com/2009/05/down-in-the-basement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Head to Neck Ratio is Way Off</title>
		<link>http://www.checkthisshitout.com/2009/03/237/</link>
		<comments>http://www.checkthisshitout.com/2009/03/237/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 16:18:37 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.checkthisshitout.com/?p=237</guid>
		<description><![CDATA[Moose has found a new sleeping spot, parking himself at the end of the weight bench. He is often found here in this position resting his head on the little metal post. This leaves me to believe that either his head is too heavy, or his neck it too small.]]></description>
			<content:encoded><![CDATA[<p>Moose has found a new sleeping spot, parking himself at the end of the weight bench.  He is often found here in this position resting his head on the little metal post.</p>
<p><img src="http://www.checkthisshitout.com/wp-content/uploads/2009/03/dsc00067-300x225.jpg" alt="dsc00067" title="dsc00067" width="300" height="225" class="aligncenter size-medium wp-image-236" /></p>
<p>This leaves me to believe that either his head is too heavy, or his neck it too small.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.checkthisshitout.com/2009/03/237/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Botany Mike</title>
		<link>http://www.checkthisshitout.com/2009/03/botany-mike/</link>
		<comments>http://www.checkthisshitout.com/2009/03/botany-mike/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 13:34:37 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.checkthisshitout.com/?p=232</guid>
		<description><![CDATA[Noticed new leaves unfurling on our fern. Thought it was interesting the way all the tips were still connected together so I grabbed some shots. Still not sure if &#8220;leaves&#8221; or &#8220;leafs&#8221; is correct, I&#8217;m leaning towards &#8220;leaves&#8221;.]]></description>
			<content:encoded><![CDATA[<p>Noticed new leaves unfurling on our fern.  Thought it was interesting the way all the tips were still connected together so I grabbed some shots.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-15-232">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.checkthisshitout.com/2009/03/botany-mike/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-446" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.checkthisshitout.com/wp-content/gallery/fern/dsc00060.jpg" title=" " class="shutterset_set_15" >
								<img title="                               " alt="                               " src="http://www.checkthisshitout.com/wp-content/gallery/fern/thumbs/thumbs_dsc00060.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-447" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.checkthisshitout.com/wp-content/gallery/fern/dsc00063.jpg" title=" " class="shutterset_set_15" >
								<img title="                               " alt="                               " src="http://www.checkthisshitout.com/wp-content/gallery/fern/thumbs/thumbs_dsc00063.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-448" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.checkthisshitout.com/wp-content/gallery/fern/dsc00065.jpg" title=" " class="shutterset_set_15" >
								<img title="                               " alt="                               " src="http://www.checkthisshitout.com/wp-content/gallery/fern/thumbs/thumbs_dsc00065.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<p>Still not sure if &#8220;leaves&#8221; or &#8220;leafs&#8221; is correct, I&#8217;m leaning towards &#8220;leaves&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.checkthisshitout.com/2009/03/botany-mike/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

