<?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>Alec Irwin.com</title>
	<atom:link href="http://alecirwin.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://alecirwin.com</link>
	<description>An Experimental playground - it is Wordpress today</description>
	<lastBuildDate>Tue, 26 Feb 2013 23:09:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>[Macromedia][SQLServer JDBC Driver][SQLServer]Could not find prepared statement with handle 1</title>
		<link>http://alecirwin.com/?p=413</link>
		<comments>http://alecirwin.com/?p=413#comments</comments>
		<pubDate>Tue, 26 Feb 2013 23:01:51 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alecirwin.com/?p=413</guid>
		<description><![CDATA[A query issue with SET QUOTED_IDENTIFIER OFF  and a constructed WHERE For a dealer locator. The idea was to randomize the results of the query. Users tend to pick the link at or near the top of the list returned. &#8230; <a href="http://alecirwin.com/?p=413">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>A query issue with SET QUOTED_IDENTIFIER OFF  and a constructed WHERE</p>
<p>For a dealer locator. The idea was to randomize the results of the query. Users tend to pick the link at or near the top of the list returned. We want an easy to give everyone some chance at the top of the list. Looking up some code on the Internet gave me the solution of using &#8220;SET QUOTED_IDENTIFIER OFF&#8221; at the top of the query, and Order BY newid() at the end. We wanted users that may live on the border of say North and South Dakota to be able to choose both states from a list to search. This query worked great until we attempted to upgrade to ColdFusion 10. Then it brings the entire server down. Any page that runs a query will return an error similar to this:</p>
<table>
<tbody>
<tr>
<td title="click to collapse">ErrorCode</td>
<td>8179</td>
</tr>
<tr>
<td title="click to collapse">Message</td>
<td>[Macromedia][SQLServer JDBC Driver][SQLServer]Could not find prepared statement with handle 1.</td>
</tr>
</tbody>
</table>
<p>Here is what I know.</p>
<p>This is the setup of the wherestring. I see how it could be more efficient, but it isn&#8217;t what is killing the server so let stay for now.</p>
<pre>&lt;cfif listLen(arguments.statelist,",") GT 1&gt;
    &lt;cfloop list="#arguments.statelist#" delimiters="," index="i"&gt;
      &lt;cfset statevar = listgetat(arguments.statelist,i,",")&gt;
      &lt;cfif len(trim(i)) EQ 2&gt;
      &lt;cfif whereString NEQ ""&gt;
        &lt;cfset whereString = whereString &amp; " OR ibos.billSTATE = " &amp; " '" &amp; statevar &amp; "'"&gt;
        &lt;cfelse&gt;
        &lt;cfset whereString = " ibos.billSTATE = " &amp; " '" &amp;  statevar &amp; "' "&gt;
      &lt;/cfif&gt;
      &lt;cfelse&gt;
          &lt;cflocation url="/index.cfm"&gt;&lt;!--- don't try and hack me bro, states should only be 2 characters. ---&gt;
      &lt;/cfif&gt;
    &lt;/cfloop&gt;
    &lt;cfelse&gt;
    &lt;cfset statevar = left(trim(arguments.statelist),2)&gt;
    &lt;cfset whereString = " ibos.billSTATE = " &amp; " '" &amp;  statevar &amp; "' "&gt;
  &lt;/cfif&gt;</pre>
<p>This query used to work:</p>
<pre>&lt;cftry&gt;    
&lt;cfquery name="qGetIbosByStates" datasource="#request.dsn#"&gt;      
SET QUOTED_IDENTIFIER OFF
            SELECT
               ibos.agreeToTerms 
               ,ibos.billAddress1
               ,ibos.billAddress2
               ,ibos.billCity  
               ,ibos.billCompany 
               ,ibos.billEmail 
               ,ibos.billFName 
               ,ibos.billLName  
               ,ibos.billPhone  
               ,ibos.billState 
               ,ibos.billZip  
               ,ibos.cbwActive 
               ,ibos.email 
               ,ibos.homepage 
               ,ibos.homepageFolder 
               ,ibos.iboStatus 
               ,ibos.latitude  
               ,ibos.longitude  
               ,ibos.MemberID  
               ,ibos.Phone  
               ,ibos.startDate  
               ,ibos.tollfree 
               ,ibos.url  
               ,ibos.ContractType  
           FROM ibos  
           WHERE   #preservesinglequotes(whereString)#&lt;!--- This does not play well with Quoted id and newID()'  ---&gt;
             AND (ibos.IBOstatus = 'a'  OR ibos.IBOstatus = 'i')
             AND ibos.ContractType != '30'
             AND ibos.ContractType != '32'
             AND ibos.ContractType != '18' 
             AND ibos.contractType != 'EM'
             AND ibos.contractType != '23'
            &lt;cfif arguments.WebsiteOwners EQ "yes"&gt;AND ibos.cbwActive = '1'&lt;/cfif&gt;
            &lt;cfif arguments.WebsiteOwners EQ "no"&gt;AND ibos.cbwActive != '1'&lt;/cfif&gt;
             Order BY newid()
        &lt;/cfquery&gt;    
&lt;cfcatch type="any"&gt;      
&lt;cfdump var="#cfcatch#" label="Query error line516"&gt;      
&lt;cfabort&gt;    
&lt;/cfcatch&gt;  
&lt;/cftry&gt;</pre>
<p>So to find out what the issue is I took out the multi-state option. You now can only choose one state at a time from a drop down menu.</p>
<p>This query does works and returns randomly ordered results.</p>
<pre> &lt;cfquery name="qGetIbosByStates" datasource="#request.dsn#"&gt;
        <strong>SET QUOTED_IDENTIFIER OFF</strong>
            SELECT 
                ibos.agreeToTerms
                ,ibos.billAddress1
                ,ibos.billAddress2
                ,ibos.billCity
                ,ibos.billCompany
                ,ibos.billEmail
                ,ibos.billFName
                ,ibos.billLName
                ,ibos.billPhone
                ,ibos.billState
                ,ibos.billZip
                ,ibos.cbwActive
                ,ibos.email
                ,ibos.homepage
                ,ibos.homepageFolder
                ,ibos.iboStatus
                ,ibos.latitude
                ,ibos.longitude
                ,ibos.MemberID
                ,ibos.Phone
                ,ibos.startDate
                ,ibos.tollfree
                ,ibos.url
                ,ibos.ContractType            
            FROM ibos 
            WHERE  <strong>ibos.billSTATE = &lt;cfqueryparam cfsqltype="cf_sql_varchar" value="#statelist#"&gt;</strong>&lt;!--- this works with Quoted ID off and newid() ---&gt; 
            AND (ibos.IBOstatus = 'a'
            OR ibos.IBOstatus = 'i') 
            AND ibos.ContractType != '30' 
            AND ibos.ContractType != '32' 
            AND ibos.ContractType != '18'
            AND ibos.contractType != 'EM'
            AND ibos.contractType != '23'            
             &lt;cfif arguments.WebsiteOwners EQ "yes"&gt;AND ibos.cbwActive = '1'&lt;/cfif&gt;
             &lt;cfif arguments.WebsiteOwners EQ "no"&gt;AND ibos.cbwActive != '1'&lt;/cfif&gt; 
            <strong>Order BY newid()</strong>
        &lt;/cfquery&gt;</pre>
<p>So what is the issue? It seems to be with &#8220;SET QUOTED_IDENTIFIER OFF&#8221; because this query works and returns random results:</p>
<pre> &lt;cfquery name="qGetIbosByStates" datasource="#request.dsn#"&gt;
        <strong>&lt;!---  SET QUOTED_IDENTIFIER OFF---&gt;</strong>&lt;!--- commented out ---&gt;
            SELECT 
                ibos.agreeToTerms
                ,ibos.billAddress1
                ,ibos.billAddress2
                ,ibos.billCity
                ,ibos.billCompany
                ,ibos.billEmail
                ,ibos.billFName
                ,ibos.billLName
                ,ibos.billPhone
                ,ibos.billState
                ,ibos.billZip
                ,ibos.cbwActive
                ,ibos.email
                ,ibos.homepage
                ,ibos.homepageFolder
                ,ibos.iboStatus
                ,ibos.latitude
                ,ibos.longitude
                ,ibos.MemberID
                ,ibos.Phone
                ,ibos.startDate
                ,ibos.tollfree
                ,ibos.url
                ,ibos.ContractType            
            FROM ibos 
            WHERE  
            <strong>#preservesinglequotes(whereString)#</strong>&lt;!--- This does not play well with 'Quoted id ---&gt;
            AND (ibos.IBOstatus = 'a'
            OR ibos.IBOstatus = 'i') 
            AND ibos.ContractType != '30' 
            AND ibos.ContractType != '32' 
            AND ibos.ContractType != '18'
            AND ibos.contractType != 'EM'
            AND ibos.contractType != '23'            
             &lt;cfif arguments.WebsiteOwners EQ "yes"&gt;AND ibos.cbwActive = '1'&lt;/cfif&gt;
             &lt;cfif arguments.WebsiteOwners EQ "no"&gt;AND ibos.cbwActive != '1'&lt;/cfif&gt; 
            <strong>Order BY newid()</strong>
        &lt;/cfquery&gt;</pre>
<p>So what does SET QUOTED_IDENTIFIER OFF do anyhow? Doesn&#8217;t seem necessary. This is one of those things where someone copies and pastes off the Internet and doesn&#8217;t really understand what they are doing.</p>
<p>Ok so after reading this: <a title="Set Quoted Identifier" href="http://ranjithk.com/2010/01/10/understanding-set-quoted_identifier-onoff/">http://ranjithk.com/2010/01/10/understanding-set-quoted_identifier-onoff/</a> I just don&#8217;t think I need that at all. Someone must have been trying to do something that was solved by the use of <strong>preservesinglequotes</strong>?</p>
<p>So why does it bring the ColdFusion service down for the entire website? This is the first time I have been able to something like that.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://alecirwin.com/?feed=rss2&#038;p=413</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>United States Zip codes and Latitude &amp; Longitude</title>
		<link>http://alecirwin.com/?p=346</link>
		<comments>http://alecirwin.com/?p=346#comments</comments>
		<pubDate>Tue, 30 Oct 2012 19:27:36 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alecirwin.com/?p=346</guid>
		<description><![CDATA[A list of United States capitals with zip codes and Lat and Long coordinates. Alabama  Ala. AL Montgomery 36101 32.361538 -86.279118 Alaska  Alaska AK Juneau 99801 58.301935 -134.419740 Arizona  Ariz. AZ Phoenix 85001 33.448457 -112.073844 Arkansas  Ark. AR Little Rock &#8230; <a href="http://alecirwin.com/?p=346">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><strong>A list of United States capitals with zip codes and Lat and Long coordinates.</strong></p>
<p>Alabama  Ala. AL Montgomery 36101 32.361538 -86.279118<br />
Alaska  Alaska AK Juneau 99801 58.301935 -134.419740<br />
Arizona  Ariz. AZ Phoenix 85001 33.448457 -112.073844<br />
Arkansas  Ark. AR Little Rock 72201 34.736009 -92.331122<br />
California  Calif. CA Sacramento 94203 38.555605 -121.468926<br />
Colorado  Colo. CO Denver 80201 39.7391667 -104.984167<br />
Connecticut  Conn. CT Hartford 6101 41.767 -72.677<br />
Delaware  Del. DE Dover 19901 39.161921 -75.526755<br />
Florida  Fla. FL Tallahassee 32301 30.4518 -84.27277<br />
Georgia  Ga. GA Atlanta 30301 33.76 -84.39<br />
Hawaii  Hawaii HI Honolulu 96801 21.30895 -157.826182<br />
Idaho  Idaho ID Boise 83701 43.613739 -116.237651<br />
Illinois  Ill. IL Springfield 62701 39.783250 -89.650373<br />
Indiana  Ind. IN Indianapolis 46201 39.790942 -86.147685<br />
Iowa  Iowa IA Des Moines 50301 41.590939 -93.620866<br />
Kansas  Kans. KS Topeka 66601 39.04 -95.69<br />
Kentucky  Ky. KY Frankfort 40601 38.197274 -84.86311<br />
Louisiana  La. LA Baton Rouge 70801 30.45809 -91.140229<br />
Maine  Maine ME Augusta 4330 44.323535 -69.765261<br />
Maryland  Md. MD Annapolis 21401 38.972945 -76.501157<br />
Massachusetts  Mass. MA Boston 2108 42.2352 -71.0275<br />
Michigan  Mich. MI Lansing 48901 42.7335 -84.5467<br />
Minnesota  Minn. MN St. Paul 55101 44.95 -93.094<br />
Mississippi  Miss. MS Jackson 39201 32.320 -90.207<br />
Missouri  Mo. MO Jefferson City 65101 38.572954 -92.189283<br />
Montana  Mont. MT Helena 59601 46.595805 -112.027031<br />
Nebraska  Nebr. NE Lincoln 68501 40.809868 -96.675345<br />
Nevada  Nev. NV Carson City 89701 39.160949 -119.753877<br />
New Hampshire  N.H. NH Concord 3301 43.220093 -71.549127<br />
New Jersey  N.J. NJ Trenton 8601 40.221741 -74.756138<br />
New Mexico  N.M. NM Santa Fe 87501 35.667231 -105.964575<br />
New York  N.Y. NY Albany 12201 42.659829 -73.781339<br />
North Carolina N.C. NC Raleigh 27601 35.771 -78.638<br />
North Dakota  N.D. ND Bismarck 58501 48.813343 -100.779004<br />
Ohio  Ohio OH Columbus 43201 39.962245 -83.000647<br />
Oklahoma  Okla. OK Oklahoma City 73101 35.482309 -97.534994<br />
Oregon  Ore. OR Salem 97301 44.931109 -123.029159<br />
Pennsylvania  Pa. PA Harrisburg 17101 40.269789 -76.875613<br />
Rhode Island  R.I. RI Providence 2901 41.82355 -71.422132<br />
South Carolina S.C. SC Columbia 29201 34.000 -81.035<br />
South Dakota  S.D. SD Pierre 57501 44.367966 -100.336378<br />
Tennessee  Tenn. TN Nashville 37201 36.165 -86.784<br />
Texas  Tex. TX Austin 73301 30.266667 -97.75<br />
Utah  Utah UT Salt Lake City 84101 40.7547 -111.892622<br />
Vermont  Vt. VT Montpelier 5601 44.26639 -72.57194<br />
Virginia  Va. VA Richmond 23218 37.54 -77.46<br />
Washington  Wash. WA Olympia 98501 47.042418 -122.893077<br />
West Virginia  W.Va. WV Charleston 25301 38.349497 -81.633294<br />
Wisconsin  Wis. WI Madison 53701 43.074722 -89.384444<br />
Wyoming  Wyo. WY Cheyenne 82001 41.145548 -104.802042</p>
]]></content:encoded>
			<wfw:commentRss>http://alecirwin.com/?feed=rss2&#038;p=346</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cedar strip canoe project</title>
		<link>http://alecirwin.com/?p=73</link>
		<comments>http://alecirwin.com/?p=73#comments</comments>
		<pubDate>Wed, 06 Jun 2012 02:42:19 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[boat]]></category>
		<category><![CDATA[canoe]]></category>
		<category><![CDATA[cedar strip]]></category>
		<category><![CDATA[fiberglass]]></category>

		<guid isPermaLink="false">http://alecirwin.com/?p=73</guid>
		<description><![CDATA[Canoe project (This is an old story that I forgot to post) This is the canoe I pulled out of the dumpster at City cleanup. I wish I had taken a picture prior to this. It must have been used &#8230; <a href="http://alecirwin.com/?p=73">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Canoe project (This is an old story that I forgot to post)</p>
<p><a href="http://alecirwin.com/wp-content/uploads/2012/02/canoeRight.jpg"><img class="alignright size-medium wp-image-79" title="canoeRight" src="http://alecirwin.com/wp-content/uploads/2012/02/canoeRight-300x280.jpg" alt="" width="300" height="280" /></a></p>
<p>This is the canoe I pulled out of the dumpster at City cleanup. I wish I had taken a picture prior to this. It must have been used as a duck boat as it was an awful camo brown. It was almost broken in half and had many holes that needed patching.</p>
<p><a href="http://alecirwin.com/wp-content/uploads/2012/02/canoe.jpg"><img class="alignright size-medium wp-image-81" title="canoe" src="http://alecirwin.com/wp-content/uploads/2012/02/canoe-300x130.jpg" alt="" width="300" height="130" /></a></p>
<p><a href="http://alecirwin.com/wp-content/uploads/2012/02/canoeLeft1.jpg"><img class="alignright size-medium wp-image-80" title="canoeLeft" src="http://alecirwin.com/wp-content/uploads/2012/02/canoeLeft1-300x249.jpg" alt="" width="300" height="249" /></a></p>
<p>I spent some time fiber glassing the holes and painted it up. It has been our favorite canoe ever since. It tracks very straight and is very stable. I went up to the BWCA with us this summer of 2009. It may never see those lakes again as it is way too heavy at probably 90lbs. It also doesn&#8217;t travel well as it is very wide making it hard to position on most car tops. This last ride it took we noticed that it would flex in the middle making it a challenge to strap down tight enough without feeling like it may crack in half or crush.</p>
<p><img src="http://lh5.ggpht.com/_HiRL5kXZjXE/Spv1XhNzHpI/AAAAAAAABO4/gKVhChNp8vE/s800/P8010432.JPG" alt="Takes two guys to carry it." width="800" height="600" /></p>
<p>This summer I also started building my own Cedar strip canoe. Originally I had hopes of getting it done in time for our BWCA trip however it quickly became apparent that wasn&#8217;t going to happen. I purchased <a href="http://store.payloadz.com/details/detail_79594.html" target="_blank"><strong>these plans </strong></a>and got started in May.</p>
<p><img src="http://lh6.ggpht.com/_HiRL5kXZjXE/Sqpnj82UdfI/AAAAAAAABx4/aXXGLQ2W_38/s800/100_3597.JPG" alt="The plans" width="800" height="600" /></p>
<p>This is the complex and important part of the plans: Make sure you do a good job laying out and cutting your forms. I missed the line a few times and it made it harder as my cedar strips didn&#8217;t quite follow the form. I would actually take the page into photo shop and enlarge them and find some way to slicing them up and printing them actual size and taping the sheets together. The way explained in the plans didn&#8217;t work for this guy so well, mostly because I didn&#8217;t take enough time getting the lines right.</p>
<p><img src="http://lh3.ggpht.com/_HiRL5kXZjXE/SqpnkP4UTRI/AAAAAAAABx8/nDN6-eneUt0/s800/100_3599.JPG" alt="the framework" width="800" height="600" /></p>
<p>This is the forms bolted to the strongback. None of this stuff becomes any part of the canoe when it is finished. These are the guides that will help form the canoe shape, and are removed after it is all glued in place.</p>
<p><img src="http://lh5.ggpht.com/_HiRL5kXZjXE/SqptDils8bI/AAAAAAAAByo/DQtyJyrtfqw/s800/PicturesDownloadJune17 314.jpg" alt="Cedar striping starts" /></p>
<p>After you have ripped a bunch of cedar strips on a table saw you can start attaching them to the form and each other. I used staples to hold the first ones to the form. In the future I would attempt to use as few staples as possible as they leave holes in the cedar that hopefully will swell shut and hide themselves. I found that I could skip the staples quite a bit and use a combination of tape and clamps.</p>
<p>September now and I better get this finished before it starts getting dark and cold.</p>
<p><img src="http://lh3.ggpht.com/_HiRL5kXZjXE/SrbtKS9fp_I/AAAAAAAABzk/oLpLy7GFE5k/s800/100_7028.JPG" alt="getting closer, sanding." width="800" height="600" /></p>
<p><img src="http://lh3.ggpht.com/_HiRL5kXZjXE/SrbtK_7JV6I/AAAAAAAABzo/LOG7USfFXUQ/s800/100_7029.JPG" alt="sanding" width="800" height="600" /></p>
<p>There is much sanding to do. The belt sander saved me some serious time. Consistent thickness on your cedar strips will also save some sanding. My little table saw isn&#8217;t exactly the professional model and our strips would get thick and thin until we figured out how to get a consistent cut. My boat has cedar with knots in it. I hope this looks ok when it is finished I notice that all the pictures in the book do not have any knots. Well I wasn&#8217;t going to toss that much wood out to accomplish that feat with the cedar from the local Menards. I would have been nice to find cedar board with less knots in them.</p>
<p><img src="http://lh4.ggpht.com/_HiRL5kXZjXE/SrbtLxamn-I/AAAAAAAABzw/WMbCcnPBht8/s800/100_7031.JPG" alt="sanding more" width="800" height="600" /></p>
<p>&nbsp;</p>
<p><img src="http://lh3.ggpht.com/_HiRL5kXZjXE/Srbt1CmQM5I/AAAAAAAABz8/oyWlwR_nQB8/s800/100_7033.JPG" alt="sanding" width="800" height="600" /></p>
<p>At this point I have a bunch of work in front of me.</p>
<p>I need to finish sanding the outside and then stain/varnish it before applying a layer of fiberglass, sanding and varnishing again.</p>
<p>Then the forms can be removed so the inside can be sanded, varnished and fiber glassed. After the inside is finished the gun wales, deck and seats. I really hope that I can use it next summer.</p>
<p><img src="http://lh4.ggpht.com/_HiRL5kXZjXE/Srbt1822YNI/AAAAAAAAB0E/f7KpxGQiIkY/s800/100_7035.JPG" alt="You will want one of these" width="800" height="600" /></p>
<p>Things I think you will want will include a belt sander like this one, and lots of those spring clamps like those holding the dust bag shut. Hopefully you won&#8217;t loose your dust bag clip, but you will like the clamps for holding the cedar strips in place.</p>
<p><img src="http://lh5.ggpht.com/_HiRL5kXZjXE/Srbt2QWtLLI/AAAAAAAAB0Y/1ASCtbbGGns/s576/100_7036.JPG" alt="saw and glue" width="432" height="576" /></p>
<p>A band saw helps with the last little pieces that have long angles or curves.</p>
<p>The glue however, check out that stuff. I used several types and brand, this is the stuff. It is exterior gel. Dripping glue is an issue here and the gel sticks to the wood even upside down, and that is very helpful.</p>
<p>&nbsp;</p>
<p><a><img class="alignright size-full wp-image-82" title="whatItShouldlooklike" src="http://alecirwin.com/wp-content/uploads/2012/02/whatItShouldlooklike.jpg" alt="" width="205" height="146" /></a></p>
<p>When it is done it should look something like this:</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>More of the building process:</p>
<div id="attachment_84" class="wp-caption alignright" style="width: 310px"><a href="http://alecirwin.com/wp-content/uploads/2012/02/100_1160.jpg"><img class="size-medium wp-image-84" title="100_1160" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1160-300x225.jpg" alt="Fiberglass cloth on outside" width="300" height="225" /></a><p class="wp-caption-text">Draping the fiberglass cloth over the outside.</p></div>
<p><a href="http://alecirwin.com/wp-content/uploads/2012/02/100_1174.jpg"><img class="alignright size-medium wp-image-92" title="100_1174" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1174-300x225.jpg" alt="" width="300" height="225" /></a>The fiberglass is an epoxy resin and hardener. When you mix them you have a limited time to get it on before it starts to gel up and get hard. It creates noticeable bit of heat as it cures.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_90" class="wp-caption alignright" style="width: 310px"><a href="http://alecirwin.com/wp-content/uploads/2012/02/100_1169.jpg"><img class="size-medium wp-image-90" title="100_1169" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1169-300x225.jpg" alt="Application of the resin" width="300" height="225" /></a><p class="wp-caption-text">Wetting the fiberglass with the resin</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_116" class="wp-caption alignright" style="width: 234px"><a href="http://alecirwin.com/wp-content/uploads/2012/02/100_1180-Copy.jpg"><img class="size-medium wp-image-116" title="100_1180 - Copy" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1180-Copy-224x300.jpg" alt="Cleaning and sanding the inside" width="224" height="300" /></a><p class="wp-caption-text">Remove from form and clean and sand the inside.</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_98" class="wp-caption alignright" style="width: 310px"><a href="http://alecirwin.com/wp-content/uploads/2012/02/100_1188.jpg"><img class="size-medium wp-image-98" title="100_1188" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1188-300x225.jpg" alt="Fiberglass application to the inside of the canoe" width="300" height="225" /></a><p class="wp-caption-text">Apply fiber glass to the inside.</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_100" class="wp-caption alignright" style="width: 234px"><a href="http://alecirwin.com/wp-content/uploads/2012/02/100_1190.jpg"><img class="size-medium wp-image-100" title="Fiberglass finished on the inside." src="http://alecirwin.com/wp-content/uploads/2012/02/100_1190-224x300.jpg" alt="Completed fiberglass on the inside" width="224" height="300" /></a><p class="wp-caption-text">Getting fiberglass in the tips of the canoe is a challenge.</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_155" class="wp-caption alignright" style="width: 234px"><a href="http://alecirwin.com/wp-content/uploads/2012/02/100_1201-Copy.jpg"><img class="size-medium wp-image-155" title="Seats &amp; thwarts" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1201-Copy-224x300.jpg" alt="" width="224" height="300" /></a><p class="wp-caption-text">Complete the gunwales, then you can do the seat and thwarts.</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_119" class="wp-caption alignright" style="width: 810px"><a href="http://alecirwin.com/wp-content/uploads/2012/02/100_1216-Copy.jpg"><img class="size-full wp-image-119" title="Complete " src="http://alecirwin.com/wp-content/uploads/2012/02/100_1216-Copy.jpg" alt="Completed" width="800" height="600" /></a><p class="wp-caption-text">Complete and ready for the maiden voyage.</p></div>

<a href='http://alecirwin.com/?attachment_id=82' title='whatItShouldlooklike'><img width="150" height="146" src="http://alecirwin.com/wp-content/uploads/2012/02/whatItShouldlooklike-150x146.jpg" class="attachment-thumbnail" alt="whatItShouldlooklike" /></a>
<a href='http://alecirwin.com/?attachment_id=160' title='100_1277'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1277-150x150.jpg" class="attachment-thumbnail" alt="100_1277" /></a>
<a href='http://alecirwin.com/?attachment_id=147' title='100_1670'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1670-150x150.jpg" class="attachment-thumbnail" alt="100_1670" /></a>
<a href='http://alecirwin.com/?attachment_id=152' title='100_1207 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1207-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1207 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=121' title='100_1203'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1203-150x150.jpg" class="attachment-thumbnail" alt="100_1203" /></a>
<a href='http://alecirwin.com/?attachment_id=126' title='100_1204 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1204-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1204 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=102' title='100_1192'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1192-150x150.jpg" class="attachment-thumbnail" alt="100_1192" /></a>
<a href='http://alecirwin.com/?attachment_id=104' title='100_1196'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1196-150x150.jpg" class="attachment-thumbnail" alt="100_1196" /></a>
<a href='http://alecirwin.com/?attachment_id=115' title='100_1298'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1298-150x150.jpg" class="attachment-thumbnail" alt="100_1298" /></a>
<a href='http://alecirwin.com/?attachment_id=154' title='100_1275'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1275-150x150.jpg" class="attachment-thumbnail" alt="100_1275" /></a>
<a href='http://alecirwin.com/?attachment_id=95' title='100_1183'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1183-150x150.jpg" class="attachment-thumbnail" alt="100_1183" /></a>
<a href='http://alecirwin.com/?attachment_id=114' title='100_1215'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1215-150x150.jpg" class="attachment-thumbnail" alt="100_1215" /></a>
<a href='http://alecirwin.com/?attachment_id=100' title='Fiberglass finished on the inside.'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1190-150x150.jpg" class="attachment-thumbnail" alt="Completed fiberglass on the inside" /></a>
<a href='http://alecirwin.com/?attachment_id=116' title='100_1180 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1180-Copy-150x150.jpg" class="attachment-thumbnail" alt="Cleaning and sanding the inside" /></a>
<a href='http://alecirwin.com/?attachment_id=157' title='100_1276'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1276-150x150.jpg" class="attachment-thumbnail" alt="100_1276" /></a>
<a href='http://alecirwin.com/?attachment_id=135' title='100_1205 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1205-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1205 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=113' title='100_1209 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1209-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1209 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=134' title='100_1182 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1182-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1182 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=87' title='100_1164'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1164-150x150.jpg" class="attachment-thumbnail" alt="100_1164" /></a>
<a href='http://alecirwin.com/?attachment_id=90' title='100_1169'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1169-150x150.jpg" class="attachment-thumbnail" alt="Application of the resin" /></a>
<a href='http://alecirwin.com/?attachment_id=85' title='100_1162'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1162-150x150.jpg" class="attachment-thumbnail" alt="100_1162" /></a>
<a href='http://alecirwin.com/?attachment_id=144' title='100_1206 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1206-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1206 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=122' title='100_1210 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1210-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1210 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=96' title='100_1185'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1185-150x150.jpg" class="attachment-thumbnail" alt="100_1185" /></a>
<a href='http://alecirwin.com/?attachment_id=136' title='100_1211'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1211-150x150.jpg" class="attachment-thumbnail" alt="100_1211" /></a>
<a href='http://alecirwin.com/?attachment_id=112' title='100_1295'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1295-150x150.jpg" class="attachment-thumbnail" alt="100_1295" /></a>
<a href='http://alecirwin.com/?attachment_id=139' title='100_1199 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1199-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1199 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=140' title='100_1205'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1205-150x150.jpg" class="attachment-thumbnail" alt="100_1205" /></a>
<a href='http://alecirwin.com/?attachment_id=103' title='100_1195'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1195-150x150.jpg" class="attachment-thumbnail" alt="100_1195" /></a>
<a href='http://alecirwin.com/?attachment_id=125' title='100_1181 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1181-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1181 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=119' title='Complete '><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1216-Copy-150x150.jpg" class="attachment-thumbnail" alt="Completed" /></a>
<a href='http://alecirwin.com/?attachment_id=91' title='100_1170'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1170-150x150.jpg" class="attachment-thumbnail" alt="100_1170" /></a>
<a href='http://alecirwin.com/?attachment_id=127' title='100_1210'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1210-150x150.jpg" class="attachment-thumbnail" alt="100_1210" /></a>
<a href='http://alecirwin.com/?attachment_id=86' title='100_1163'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1163-150x150.jpg" class="attachment-thumbnail" alt="100_1163" /></a>
<a href='http://alecirwin.com/?attachment_id=131' title='100_1211 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1211-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1211 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=117' title='100_1203 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1203-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1203 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=145' title='100_1212'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1212-150x150.jpg" class="attachment-thumbnail" alt="100_1212" /></a>
<a href='http://alecirwin.com/?attachment_id=130' title='100_1204'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1204-150x150.jpg" class="attachment-thumbnail" alt="100_1204" /></a>
<a href='http://alecirwin.com/?attachment_id=146' title='100_1274 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1274-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1274 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=141' title='100_1212 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1212-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1212 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=118' title='100_1209'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1209-150x150.jpg" class="attachment-thumbnail" alt="100_1209" /></a>
<a href='http://alecirwin.com/?attachment_id=109' title='100_1202 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1202-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1202 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=128' title='100_1217 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1217-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1217 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=89' title='100_1168'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1168-150x150.jpg" class="attachment-thumbnail" alt="100_1168" /></a>
<a href='http://alecirwin.com/?attachment_id=132' title='100_1217'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1217-150x150.jpg" class="attachment-thumbnail" alt="100_1217" /></a>
<a href='http://alecirwin.com/?attachment_id=79' title='canoeRight'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/canoeRight-150x150.jpg" class="attachment-thumbnail" alt="canoeRight" /></a>
<a href='http://alecirwin.com/?attachment_id=133' title='100_1436'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1436-150x150.jpg" class="attachment-thumbnail" alt="100_1436" /></a>
<a href='http://alecirwin.com/?attachment_id=98' title='100_1188'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1188-150x150.jpg" class="attachment-thumbnail" alt="Fiberglass application to the inside of the canoe" /></a>
<a href='http://alecirwin.com/?attachment_id=129' title='100_1433'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1433-150x150.jpg" class="attachment-thumbnail" alt="100_1433" /></a>
<a href='http://alecirwin.com/?attachment_id=156' title='100_1214 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1214-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1214 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=105' title='100_1197'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1197-150x150.jpg" class="attachment-thumbnail" alt="100_1197" /></a>
<a href='http://alecirwin.com/?attachment_id=149' title='100_1206'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1206-150x150.jpg" class="attachment-thumbnail" alt="100_1206" /></a>
<a href='http://alecirwin.com/?attachment_id=97' title='100_1186'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1186-150x150.jpg" class="attachment-thumbnail" alt="100_1186" /></a>
<a href='http://alecirwin.com/?attachment_id=138' title='100_1602'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1602-150x150.jpg" class="attachment-thumbnail" alt="100_1602" /></a>
<a href='http://alecirwin.com/?attachment_id=142' title='100_1218'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1218-150x150.jpg" class="attachment-thumbnail" alt="100_1218" /></a>
<a href='http://alecirwin.com/?attachment_id=137' title='100_1218 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1218-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1218 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=101' title='100_1191'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1191-150x150.jpg" class="attachment-thumbnail" alt="100_1191" /></a>
<a href='http://alecirwin.com/?attachment_id=159' title='100_1214'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1214-150x150.jpg" class="attachment-thumbnail" alt="100_1214" /></a>
<a href='http://alecirwin.com/?attachment_id=81' title='canoe'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/canoe-150x150.jpg" class="attachment-thumbnail" alt="canoe" /></a>
<a href='http://alecirwin.com/?attachment_id=148' title='100_1200 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1200-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1200 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=151' title='100_1274'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1274-150x150.jpg" class="attachment-thumbnail" alt="100_1274" /></a>
<a href='http://alecirwin.com/?attachment_id=124' title='100_1412'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1412-150x150.jpg" class="attachment-thumbnail" alt="100_1412" /></a>
<a href='http://alecirwin.com/?attachment_id=94' title='100_1176'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1176-150x150.jpg" class="attachment-thumbnail" alt="100_1176" /></a>
<a href='http://alecirwin.com/?attachment_id=88' title='100_1166'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1166-150x150.jpg" class="attachment-thumbnail" alt="100_1166" /></a>
<a href='http://alecirwin.com/?attachment_id=158' title='100_1208 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1208-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1208 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=143' title='100_1669'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1669-150x150.jpg" class="attachment-thumbnail" alt="100_1669" /></a>
<a href='http://alecirwin.com/?attachment_id=153' title='100_1213'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1213-150x150.jpg" class="attachment-thumbnail" alt="100_1213" /></a>
<a href='http://alecirwin.com/?attachment_id=84' title='100_1160'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1160-150x150.jpg" class="attachment-thumbnail" alt="Fiberglass cloth on outside" /></a>
<a href='http://alecirwin.com/?attachment_id=123' title='100_1216'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1216-150x150.jpg" class="attachment-thumbnail" alt="100_1216" /></a>
<a href='http://alecirwin.com/?attachment_id=80' title='canoeLeft'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/canoeLeft1-150x150.jpg" class="attachment-thumbnail" alt="canoeLeft" /></a>
<a href='http://alecirwin.com/?attachment_id=108' title='100_1179 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1179-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1179 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=110' title='100_1208'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1208-150x150.jpg" class="attachment-thumbnail" alt="100_1208" /></a>
<a href='http://alecirwin.com/?attachment_id=150' title='100_1213 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1213-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1213 - Copy" /></a>
<a href='http://alecirwin.com/?attachment_id=93' title='100_1175'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1175-150x150.jpg" class="attachment-thumbnail" alt="100_1175" /></a>
<a href='http://alecirwin.com/?attachment_id=78' title='canoeLeft'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/canoeLeft-150x150.jpg" class="attachment-thumbnail" alt="canoeLeft" /></a>
<a href='http://alecirwin.com/?attachment_id=92' title='100_1174'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1174-150x150.jpg" class="attachment-thumbnail" alt="100_1174" /></a>
<a href='http://alecirwin.com/?attachment_id=99' title='100_1189'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1189-150x150.jpg" class="attachment-thumbnail" alt="100_1189" /></a>
<a href='http://alecirwin.com/?attachment_id=120' title='100_1383'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1383-150x150.jpg" class="attachment-thumbnail" alt="100_1383" /></a>
<a href='http://alecirwin.com/?attachment_id=155' title='Seats &amp; thwarts'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1201-Copy-150x150.jpg" class="attachment-thumbnail" alt="Complete the gunwales, then you can do the seat and thwarts." /></a>
<a href='http://alecirwin.com/?attachment_id=111' title='100_1215 - Copy'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/02/100_1215-Copy-150x150.jpg" class="attachment-thumbnail" alt="100_1215 - Copy" /></a>

]]></content:encoded>
			<wfw:commentRss>http://alecirwin.com/?feed=rss2&#038;p=73</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Garden 2012</title>
		<link>http://alecirwin.com/?p=329</link>
		<comments>http://alecirwin.com/?p=329#comments</comments>
		<pubDate>Wed, 06 Jun 2012 02:40:06 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Garden]]></category>

		<guid isPermaLink="false">http://alecirwin.com/?p=329</guid>
		<description><![CDATA[The garden for 2012 has grown again. We have had great asparagus I had to put up a fence to keep the bunnies out this year. We had very nice looking Swiss Chard one day and the next it looked &#8230; <a href="http://alecirwin.com/?p=329">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The garden for 2012 has grown again.</p>
<p>We have had great asparagus<a href="http://alecirwin.com/wp-content/uploads/2012/06/100_6259.jpg"><img class="alignleft size-medium wp-image-330" title="100_6259" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6259-300x199.jpg" alt="" width="300" height="199" /></a></p>
<p>I had to put up a fence to keep the bunnies out this year. We had very nice looking Swiss Chard one day and the next it looked like it was all chewed down to the stems. I am sure it will come back if I can keep that rabbit out.</p>
<div id="attachment_332" class="wp-caption alignleft" style="width: 310px"><a href="http://alecirwin.com/wp-content/uploads/2012/06/100_6295.jpg"><img class="size-medium wp-image-332" title="100_6295" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6295-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">The garden as of June 4th 2012</p></div>
<p>This year we have:<br />
Tomatos<br />
Egg plant<br />
Green and hot peppers<br />
Peas<br />
Carrots<br />
3 different beans<br />
Broccoli<br />
Rootabegi (sp?)<br />
Two different lettuces<br />
Two different Spinach<br />
Radishes<br />
Corn<br />
Celery<br />
Strawberries<br />
Blue berries<br />
Rhubarb<br />
Chives<br />
Garlic (multiple kinds)<br />
Squash (multiple kinds)<br />
Cantaloupe<br />
Musk melon<br />
Onions<br />
Turnips<br />
Sunflowers</p>
]]></content:encoded>
			<wfw:commentRss>http://alecirwin.com/?feed=rss2&#038;p=329</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starcraft &amp; 80hp Merc</title>
		<link>http://alecirwin.com/?p=302</link>
		<comments>http://alecirwin.com/?p=302#comments</comments>
		<pubDate>Wed, 06 Jun 2012 02:28:51 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[boat]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://alecirwin.com/?p=302</guid>
		<description><![CDATA[This is a boat we are in the process of cleaning up. It needs a new floor and some seats and we are good to go. The motor runs but hasn&#8217;t run much in the last 10 years.]]></description>
				<content:encoded><![CDATA[<p>This is a boat we are in the process of cleaning up. It needs a new floor and some seats and we are good to go. The motor runs but hasn&#8217;t run much in the last 10 years.
<a href='http://alecirwin.com/?attachment_id=319' title='100_6290'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6290-150x150.jpg" class="attachment-thumbnail" alt="The bow isn&#039;t in such terrible shape. It looks dated but servicable." /></a>
<a href='http://alecirwin.com/?attachment_id=320' title='100_6291'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6291-150x150.jpg" class="attachment-thumbnail" alt="100_6291" /></a>
<a href='http://alecirwin.com/?attachment_id=310' title='100_6281'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6281-150x150.jpg" class="attachment-thumbnail" alt="We discovered something is up in the lower end. The prop turns but without power." /></a>
<a href='http://alecirwin.com/?attachment_id=311' title='100_6282'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6282-150x150.jpg" class="attachment-thumbnail" alt="Dan put a new floor and seats in this boat." /></a>
<a href='http://alecirwin.com/?attachment_id=323' title='100_6294'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6294-150x150.jpg" class="attachment-thumbnail" alt="Some minor dents and dings but it floats" /></a>
<a href='http://alecirwin.com/?attachment_id=321' title='100_6292'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6292-150x150.jpg" class="attachment-thumbnail" alt="100_6292" /></a>
<a href='http://alecirwin.com/?attachment_id=317' title='100_6288'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6288-150x150.jpg" class="attachment-thumbnail" alt="The floor is in very bad shape. It is all going to need to come out." /></a>
<a href='http://alecirwin.com/?attachment_id=316' title='100_6287'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6287-150x150.jpg" class="attachment-thumbnail" alt="This shows part of the rotted floor and a set of junk seats." /></a>
<a href='http://alecirwin.com/?attachment_id=313' title='100_6284'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6284-150x150.jpg" class="attachment-thumbnail" alt="100_6284" /></a>
<a href='http://alecirwin.com/?attachment_id=306' title='IMAG0008'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/IMAG0008-150x150.jpg" class="attachment-thumbnail" alt="IMAG0008" /></a>
<a href='http://alecirwin.com/?attachment_id=318' title='100_6289'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6289-150x150.jpg" class="attachment-thumbnail" alt="All the controls still work. No tilt for the motor. I think I would like to look into adding that." /></a>
<a href='http://alecirwin.com/?attachment_id=312' title='100_6283'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6283-150x150.jpg" class="attachment-thumbnail" alt="100_6283" /></a>
<a href='http://alecirwin.com/?attachment_id=308' title='100_6279'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6279-150x150.jpg" class="attachment-thumbnail" alt="My brother Dans new project boat" /></a>
<a href='http://alecirwin.com/?attachment_id=315' title='100_6286'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6286-150x150.jpg" class="attachment-thumbnail" alt="100_6286" /></a>
<a href='http://alecirwin.com/?attachment_id=307' title='IMAG0009'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/IMAG0009-150x150.jpg" class="attachment-thumbnail" alt="Going to have to prop the motor up for the trip home." /></a>
<a href='http://alecirwin.com/?attachment_id=314' title='100_6285'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6285-150x150.jpg" class="attachment-thumbnail" alt="100_6285" /></a>
<a href='http://alecirwin.com/?attachment_id=322' title='100_6293'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6293-150x150.jpg" class="attachment-thumbnail" alt="100_6293" /></a>
<a href='http://alecirwin.com/?attachment_id=309' title='100_6280'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_6280-150x150.jpg" class="attachment-thumbnail" alt="A 40 hp motor that runs" /></a>
<a href='http://alecirwin.com/?attachment_id=304' title='IMAG0006'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/IMAG0006-150x150.jpg" class="attachment-thumbnail" alt="Showing it&#039;s age" /></a>
<a href='http://alecirwin.com/?attachment_id=305' title='IMAG0007'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/IMAG0007-150x150.jpg" class="attachment-thumbnail" alt="The wheel bearing grease was still good. The tires were very very weathered, but held up for the trip." /></a>
<a href='http://alecirwin.com/?attachment_id=303' title='IMAG0005'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/IMAG0005-150x150.jpg" class="attachment-thumbnail" alt="It snowed the night before we picked it up." /></a>
</p>
<div class="mceTemp">
<dl id="attachment_323" class="wp-caption alignleft" style="width: 310px;">
<dt class="wp-caption-dt"></dt>
<dd class="wp-caption-dd"></dd>
</dl>
</div>
]]></content:encoded>
			<wfw:commentRss>http://alecirwin.com/?feed=rss2&#038;p=302</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sailboat Project</title>
		<link>http://alecirwin.com/?p=229</link>
		<comments>http://alecirwin.com/?p=229#comments</comments>
		<pubDate>Wed, 06 Jun 2012 02:00:51 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[boat]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[sailboat]]></category>

		<guid isPermaLink="false">http://alecirwin.com/?p=229</guid>
		<description><![CDATA[This is a sailboat that we got in pieces. It is a Chrysler Man of War. We are attempting to rebuild it and make it float. The sail and mast are in great shape. The guy we got it from &#8230; <a href="http://alecirwin.com/?p=229">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>This is a sailboat that we got in pieces. It is a Chrysler Man of War. We are attempting to rebuild it and make it float.</p>
<p>The sail and mast are in great shape. The guy we got it from had it in the back of this truck with the mast in place. As he back towards the dock he forgot about the tree branches overhead. This broke the two fiberglass halves apart. It was originally stapled together. We ground out all the old staples and have glue it together with fiberglass epoxy.</p>
<p>We are now looking for a few free days with nice weather to bondo, sand and paint it up. However it does sail as is. We took it out on the lake and got some looks from people appearing to say &#8220;you sure that is going to float?&#8221;.</p>

<a href='http://alecirwin.com/?attachment_id=274' title='100_2910'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2910-150x150.jpg" class="attachment-thumbnail" alt="100_2910" /></a>
<a href='http://alecirwin.com/?attachment_id=280' title='100_2915'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2915-150x150.jpg" class="attachment-thumbnail" alt="100_2915" /></a>
<a href='http://alecirwin.com/?attachment_id=261' title='100_2866'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2866-150x150.jpg" class="attachment-thumbnail" alt="100_2866" /></a>
<a href='http://alecirwin.com/?attachment_id=233' title='100_0058'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0058-150x150.jpg" class="attachment-thumbnail" alt="100_0058" /></a>
<a href='http://alecirwin.com/?attachment_id=249' title='100_1874'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_1874-150x150.jpg" class="attachment-thumbnail" alt="100_1874" /></a>
<a href='http://alecirwin.com/?attachment_id=243' title='100_0068'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0068-150x150.jpg" class="attachment-thumbnail" alt="100_0068" /></a>
<a href='http://alecirwin.com/?attachment_id=242' title='100_0067'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0067-150x150.jpg" class="attachment-thumbnail" alt="100_0067" /></a>
<a href='http://alecirwin.com/?attachment_id=246' title='sailboat-picdaggerca'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/sailboat-picdaggerca-150x150.jpg" class="attachment-thumbnail" alt="sailboat-picdaggerca" /></a>
<a href='http://alecirwin.com/?attachment_id=273' title='100_2903'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2903-150x150.jpg" class="attachment-thumbnail" alt="100_2903" /></a>
<a href='http://alecirwin.com/?attachment_id=254' title='100_2859'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2859-150x150.jpg" class="attachment-thumbnail" alt="100_2859" /></a>
<a href='http://alecirwin.com/?attachment_id=241' title='100_0066'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0066-150x150.jpg" class="attachment-thumbnail" alt="100_0066" /></a>
<a href='http://alecirwin.com/?attachment_id=293' title='manowar_02'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/manowar_02-150x150.jpg" class="attachment-thumbnail" alt="manowar_02" /></a>
<a href='http://alecirwin.com/?attachment_id=244' title='100_0070'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0070-150x150.jpg" class="attachment-thumbnail" alt="100_0070" /></a>
<a href='http://alecirwin.com/?attachment_id=285' title='100_3068'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_3068-150x150.jpg" class="attachment-thumbnail" alt="The edges were not easy to align." /></a>
<a href='http://alecirwin.com/?attachment_id=232' title='100_0057'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0057-150x150.jpg" class="attachment-thumbnail" alt="100_0057" /></a>
<a href='http://alecirwin.com/?attachment_id=281' title='Copy of 100_2915'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/Copy-of-100_2915-150x150.jpg" class="attachment-thumbnail" alt="Copy of 100_2915" /></a>
<a href='http://alecirwin.com/?attachment_id=250' title='100_7000'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_7000-150x150.jpg" class="attachment-thumbnail" alt="100_7000" /></a>
<a href='http://alecirwin.com/?attachment_id=238' title='100_0063'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0063-150x150.jpg" class="attachment-thumbnail" alt="100_0063" /></a>
<a href='http://alecirwin.com/?attachment_id=299' title='sail-2'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/sail-2-150x150.jpg" class="attachment-thumbnail" alt="sail-2" /></a>
<a href='http://alecirwin.com/?attachment_id=289' title='Someone elses boat'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/picmanowar100c-150x150.jpg" class="attachment-thumbnail" alt="We will need to build a trailer like this guy has." /></a>
<a href='http://alecirwin.com/?attachment_id=239' title='100_0064'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0064-150x150.jpg" class="attachment-thumbnail" alt="100_0064" /></a>
<a href='http://alecirwin.com/?attachment_id=267' title='100_2872'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2872-150x150.jpg" class="attachment-thumbnail" alt="100_2872" /></a>
<a href='http://alecirwin.com/?attachment_id=237' title='100_0062'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0062-150x150.jpg" class="attachment-thumbnail" alt="100_0062" /></a>
<a href='http://alecirwin.com/?attachment_id=248' title='100_1873'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_1873-150x150.jpg" class="attachment-thumbnail" alt="100_1873" /></a>
<a href='http://alecirwin.com/?attachment_id=266' title='100_2871'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2871-150x150.jpg" class="attachment-thumbnail" alt="100_2871" /></a>
<a href='http://alecirwin.com/?attachment_id=294' title='manowar_03'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/manowar_03-150x150.jpg" class="attachment-thumbnail" alt="manowar_03" /></a>
<a href='http://alecirwin.com/?attachment_id=292' title='manowar_01'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/manowar_01-150x150.jpg" class="attachment-thumbnail" alt="manowar_01" /></a>
<a href='http://alecirwin.com/?attachment_id=263' title='100_2868'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2868-150x150.jpg" class="attachment-thumbnail" alt="100_2868" /></a>
<a href='http://alecirwin.com/?attachment_id=271' title='100_2896'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2896-150x150.jpg" class="attachment-thumbnail" alt="100_2896" /></a>
<a href='http://alecirwin.com/?attachment_id=286' title='100_3069'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_3069-150x150.jpg" class="attachment-thumbnail" alt="A big chunk of the bottom edge is missing here." /></a>
<a href='http://alecirwin.com/?attachment_id=272' title='100_2897'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2897-150x150.jpg" class="attachment-thumbnail" alt="100_2897" /></a>
<a href='http://alecirwin.com/?attachment_id=258' title='100_2863'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2863-150x150.jpg" class="attachment-thumbnail" alt="This shows the top removed from the bottom" /></a>
<a href='http://alecirwin.com/?attachment_id=245' title='100_0071'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0071-150x150.jpg" class="attachment-thumbnail" alt="100_0071" /></a>
<a href='http://alecirwin.com/?attachment_id=262' title='100_2867'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2867-150x150.jpg" class="attachment-thumbnail" alt="100_2867" /></a>
<a href='http://alecirwin.com/?attachment_id=268' title='100_2873'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2873-150x150.jpg" class="attachment-thumbnail" alt="100_2873" /></a>
<a href='http://alecirwin.com/?attachment_id=260' title='100_2865'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2865-150x150.jpg" class="attachment-thumbnail" alt="100_2865" /></a>
<a href='http://alecirwin.com/?attachment_id=295' title='manowar_04'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/manowar_04-150x150.jpg" class="attachment-thumbnail" alt="manowar_04" /></a>
<a href='http://alecirwin.com/?attachment_id=300' title='chrysler_manowar_ad'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/chrysler_manowar_ad-150x150.jpg" class="attachment-thumbnail" alt="chrysler_manowar_ad" /></a>
<a href='http://alecirwin.com/?attachment_id=231' title='100_0056'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0056-150x150.jpg" class="attachment-thumbnail" alt="100_0056" /></a>
<a href='http://alecirwin.com/?attachment_id=255' title='100_2860'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2860-150x150.jpg" class="attachment-thumbnail" alt="100_2860" /></a>
<a href='http://alecirwin.com/?attachment_id=259' title='100_2864'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2864-150x150.jpg" class="attachment-thumbnail" alt="Our mast is fine but the hole got messed up" /></a>
<a href='http://alecirwin.com/?attachment_id=230' title='100_0055'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0055-150x150.jpg" class="attachment-thumbnail" alt="100_0055" /></a>
<a href='http://alecirwin.com/?attachment_id=235' title='100_0060'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0060-150x150.jpg" class="attachment-thumbnail" alt="100_0060" /></a>
<a href='http://alecirwin.com/?attachment_id=264' title='100_2869'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2869-150x150.jpg" class="attachment-thumbnail" alt="100_2869" /></a>
<a href='http://alecirwin.com/?attachment_id=298' title='erickson_manowar2'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/erickson_manowar2-150x150.jpg" class="attachment-thumbnail" alt="erickson_manowar2" /></a>
<a href='http://alecirwin.com/?attachment_id=269' title='100_2874'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2874-150x150.jpg" class="attachment-thumbnail" alt="100_2874" /></a>
<a href='http://alecirwin.com/?attachment_id=296' title='chrysler_manowar'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/chrysler_manowar-150x150.jpg" class="attachment-thumbnail" alt="chrysler_manowar" /></a>
<a href='http://alecirwin.com/?attachment_id=256' title='100_2861'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2861-150x150.jpg" class="attachment-thumbnail" alt="100_2861" /></a>
<a href='http://alecirwin.com/?attachment_id=234' title='100_0059'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0059-150x150.jpg" class="attachment-thumbnail" alt="100_0059" /></a>
<a href='http://alecirwin.com/?attachment_id=284' title='100_3067'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_3067-150x150.jpg" class="attachment-thumbnail" alt="A large crack half way repaired." /></a>
<a href='http://alecirwin.com/?attachment_id=275' title='100_2911'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2911-150x150.jpg" class="attachment-thumbnail" alt="100_2911" /></a>
<a href='http://alecirwin.com/?attachment_id=290' title='picmanowar100d'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/picmanowar100d-150x150.jpg" class="attachment-thumbnail" alt="picmanowar100d" /></a>
<a href='http://alecirwin.com/?attachment_id=240' title='100_0065'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0065-150x150.jpg" class="attachment-thumbnail" alt="100_0065" /></a>
<a href='http://alecirwin.com/?attachment_id=276' title='100_2912'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2912-150x150.jpg" class="attachment-thumbnail" alt="100_2912" /></a>
<a href='http://alecirwin.com/?attachment_id=236' title='100_0061'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_0061-150x150.jpg" class="attachment-thumbnail" alt="100_0061" /></a>
<a href='http://alecirwin.com/?attachment_id=265' title='100_2870'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2870-150x150.jpg" class="attachment-thumbnail" alt="100_2870" /></a>
<a href='http://alecirwin.com/?attachment_id=283' title='100_3066'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_3066-150x150.jpg" class="attachment-thumbnail" alt="Chunks missing" /></a>
<a href='http://alecirwin.com/?attachment_id=282' title='100_3065'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_3065-150x150.jpg" class="attachment-thumbnail" alt="100_3065" /></a>
<a href='http://alecirwin.com/?attachment_id=277' title='100_2913'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2913-150x150.jpg" class="attachment-thumbnail" alt="100_2913" /></a>
<a href='http://alecirwin.com/?attachment_id=270' title='100_2877'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2877-150x150.jpg" class="attachment-thumbnail" alt="100_2877" /></a>
<a href='http://alecirwin.com/?attachment_id=278' title='100_2914'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2914-150x150.jpg" class="attachment-thumbnail" alt="100_2914" /></a>
<a href='http://alecirwin.com/?attachment_id=247' title='100_1872'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_1872-150x150.jpg" class="attachment-thumbnail" alt="100_1872" /></a>
<a href='http://alecirwin.com/?attachment_id=291' title='picmanowar100e'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/picmanowar100e-150x150.jpg" class="attachment-thumbnail" alt="picmanowar100e" /></a>
<a href='http://alecirwin.com/?attachment_id=257' title='100_2862'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_2862-150x150.jpg" class="attachment-thumbnail" alt="100_2862" /></a>
<a href='http://alecirwin.com/?attachment_id=287' title='100_3595'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_3595-150x150.jpg" class="attachment-thumbnail" alt="We are clamping it all together before we started working the epoxy in between" /></a>
<a href='http://alecirwin.com/?attachment_id=279' title='Copy of 100_2914'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/Copy-of-100_2914-150x150.jpg" class="attachment-thumbnail" alt="Copy of 100_2914" /></a>
<a href='http://alecirwin.com/?attachment_id=251' title='100_7001'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/100_7001-150x150.jpg" class="attachment-thumbnail" alt="100_7001" /></a>
<a href='http://alecirwin.com/?attachment_id=297' title='erickson_manowar1'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/06/erickson_manowar1-150x150.jpg" class="attachment-thumbnail" alt="erickson_manowar1" /></a>

<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://alecirwin.com/?feed=rss2&#038;p=229</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML elements with &#8220;-&#8221; trouble</title>
		<link>http://alecirwin.com/?p=223</link>
		<comments>http://alecirwin.com/?p=223#comments</comments>
		<pubDate>Wed, 16 May 2012 16:37:44 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://alecirwin.com/?p=223</guid>
		<description><![CDATA[A person should avoid using the subtraction symbol in an XML element name. http://www.w3schools.com/xml/xml_elements.asp says: Avoid &#8220;-&#8221; characters. If you name something &#8220;first-name,&#8221; some software may think you want to subtract name from first.  We have a vendor that is &#8230; <a href="http://alecirwin.com/?p=223">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>A person should avoid using the subtraction symbol in an XML element name. <a href="http://www.w3schools.com/xml/xml_elements.asp">http://www.w3schools.com/xml/xml_elements.asp</a> says: <em>Avoid &#8220;-&#8221; characters. If you name something &#8220;first-name,&#8221; some software may think you want to subtract name from first.  </em><em><br />
</em></p>
<p>We have a vendor that is on using them anyhow. Maybe I don&#8217;t know what I am talking about but couldn&#8217;t they just use an underscore or camelCase? So far they have ignored my request. The show must go on.</p>
<p>The XML we get from the soap request:</p>
<p style="padding-left: 30px;">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF_8&#8243;?&gt;&lt;PurchaseTokensResponse xmlns=&#8221;https://www.vendornamehidden.com/MsServices&#8221;&gt;&lt;s-gensym3 xmlns:xsi=&#8221;http://www.w3.org/2001/XMLSchema_instance&#8221; xsi:type=&#8221;xsd:string&#8221;&gt;SUCCESS&lt;/s-gensym3&gt;&lt;/PurchaseTokensResponse&gt;</p>
<p>My work around in ColdFusion:</p>
<p style="padding-left: 30px;">&lt;cfif find( &#8220;200&#8243;, httpResponse.statusCode )&gt;</p>
<p style="padding-left: 30px;">&lt;!&#8212; Parse the XML SOAP response. &#8212;&gt;<br />
&lt;cfset soapResponse = xmlParse( httpResponse.fileContent ) /&gt;<br />
&lt;cfset msResponseNodes = xmlSearch(<br />
soapResponse,<br />
&#8220;//*[ local-name() = 'PurchaseTokensResponse' ]&#8221;<br />
) /&gt;<br />
&lt;cfset respon = msResponseNodes[1]&gt;</p>
<p style="padding-left: 30px;"><span style="color: #993300;">&lt;!&#8212; Convert the XML to a string so we can do a replace &#8212;&gt;</span><br />
&lt;cfset xmlString = toString(respon)&gt;<br />
&lt;cfset replaceddashXML = replace(xmlString,&#8221;-&#8221;,&#8221;_&#8221;,&#8221;ALL&#8221;)&gt;<br />
<span style="color: #993300;">&lt;!&#8212; Convert the string back  to XML  &#8212;&gt;</span><br />
&lt;cfxml variable=&#8221;backToXML&#8221;&gt;<br />
&lt;cfoutput&gt;#replaceddashXML#&lt;/cfoutput&gt;<br />
&lt;/cfxml&gt;<br />
<span style="color: #993300;">&lt;!&#8212;Now we can carry on as if nothing happened &#8212;&gt;</span><br />
&lt;cfset msResponse = backToXML[1].PurchaseTokensResponse.s_gensym3.xmlText&gt;<br />
Purchase token response:&lt;cfoutput&gt;#msResponse#&lt;/cfoutput&gt;<br />
&lt;cfelse&gt;<br />
&lt;cfset msResponse = &#8220;fail&#8221;&gt;<br />
&lt;/cfif&gt;</p>
<p>There is probably an easier way.</p>
]]></content:encoded>
			<wfw:commentRss>http://alecirwin.com/?feed=rss2&#038;p=223</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2008 Harley Sportster Custom</title>
		<link>http://alecirwin.com/?p=198</link>
		<comments>http://alecirwin.com/?p=198#comments</comments>
		<pubDate>Tue, 08 May 2012 17:50:39 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Harley Davidson]]></category>
		<category><![CDATA[Motorcycles]]></category>

		<guid isPermaLink="false">http://alecirwin.com/?p=198</guid>
		<description><![CDATA[Gallery]]></description>
				<content:encoded><![CDATA[<table>
<tbody>
<tr>
<td><a href="http://alecirwin.com/wp-content/uploads/2012/05/AlecOnHarley.jpg"><img class="alignright size-medium wp-image-215" title="Alec On Harley" src="http://alecirwin.com/wp-content/uploads/2012/05/AlecOnHarley-300x225.jpg" alt="" width="300" height="225" /></a></td>
<td><a href="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7422.jpg"><img class="alignleft size-medium wp-image-214" title="IMG_7422" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7422-300x225.jpg" alt="" width="300" height="225" /></a></td>
</tr>
</tbody>
</table>
<p><a href="http://alecirwin.com/wp-content/uploads/2012/05/Harley500w1.jpg"><img class="alignleft size-medium wp-image-358" title="Harley500w" src="http://alecirwin.com/wp-content/uploads/2012/05/Harley500w1-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Gallery</p>

<a href='http://alecirwin.com/?attachment_id=215' title='Alec On Harley'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/AlecOnHarley-150x150.jpg" class="attachment-thumbnail" alt="Alec On Harley" /></a>
<a href='http://alecirwin.com/?attachment_id=199' title='IMG_7451'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7451-150x150.jpg" class="attachment-thumbnail" alt="IMG_7451" /></a>
<a href='http://alecirwin.com/?attachment_id=205' title='IMG_7085'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7085-150x150.jpg" class="attachment-thumbnail" alt="IMG_7085" /></a>
<a href='http://alecirwin.com/?attachment_id=212' title='IMG_7383'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7383-150x150.jpg" class="attachment-thumbnail" alt="IMG_7383" /></a>
<a href='http://alecirwin.com/?attachment_id=208' title='IMG_7092'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7092-150x150.jpg" class="attachment-thumbnail" alt="IMG_7092" /></a>
<a href='http://alecirwin.com/?attachment_id=200' title='IMG_7027'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7027-150x150.jpg" class="attachment-thumbnail" alt="IMG_7027" /></a>
<a href='http://alecirwin.com/?attachment_id=210' title='IMG_7097'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7097-150x150.jpg" class="attachment-thumbnail" alt="IMG_7097" /></a>
<a href='http://alecirwin.com/?attachment_id=206' title='IMG_7087'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7087-150x150.jpg" class="attachment-thumbnail" alt="IMG_7087" /></a>
<a href='http://alecirwin.com/?attachment_id=207' title='IMG_7089'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7089-150x150.jpg" class="attachment-thumbnail" alt="IMG_7089" /></a>
<a href='http://alecirwin.com/?attachment_id=204' title='IMG_7074'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7074-150x150.jpg" class="attachment-thumbnail" alt="IMG_7074" /></a>
<a href='http://alecirwin.com/?attachment_id=213' title='IMG_7413'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7413-150x150.jpg" class="attachment-thumbnail" alt="IMG_7413" /></a>
<a href='http://alecirwin.com/?attachment_id=202' title='IMG_7044'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7044-150x150.jpg" class="attachment-thumbnail" alt="IMG_7044" /></a>
<a href='http://alecirwin.com/?attachment_id=209' title='IMG_7096'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7096-150x150.jpg" class="attachment-thumbnail" alt="IMG_7096" /></a>
<a href='http://alecirwin.com/?attachment_id=357' title='Harley500w'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/Harley500w-150x150.jpg" class="attachment-thumbnail" alt="Harley" /></a>
<a href='http://alecirwin.com/?attachment_id=358' title='Harley500w'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/Harley500w1-150x150.jpg" class="attachment-thumbnail" alt="Harley500w" /></a>
<a href='http://alecirwin.com/?attachment_id=201' title='IMG_7032'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7032-150x150.jpg" class="attachment-thumbnail" alt="IMG_7032" /></a>
<a href='http://alecirwin.com/?attachment_id=203' title='IMG_7069'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7069-150x150.jpg" class="attachment-thumbnail" alt="IMG_7069" /></a>
<a href='http://alecirwin.com/?attachment_id=211' title='IMG_7362'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7362-150x150.jpg" class="attachment-thumbnail" alt="IMG_7362" /></a>
<a href='http://alecirwin.com/?attachment_id=214' title='IMG_7422'><img width="150" height="150" src="http://alecirwin.com/wp-content/uploads/2012/05/IMG_7422-150x150.jpg" class="attachment-thumbnail" alt="IMG_7422" /></a>

]]></content:encoded>
			<wfw:commentRss>http://alecirwin.com/?feed=rss2&#038;p=198</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1982 Yamaha Seca 750 Carborator rebuild</title>
		<link>http://alecirwin.com/?p=166</link>
		<comments>http://alecirwin.com/?p=166#comments</comments>
		<pubDate>Tue, 17 Apr 2012 02:23:38 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Motorcycles]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Seca 750]]></category>
		<category><![CDATA[Yamaha]]></category>

		<guid isPermaLink="false">http://alecirwin.com/?p=166</guid>
		<description><![CDATA[My 1982 Yamaha Seca 750 Carbs were completely sludged up. The previous owner didn&#8217;t take care of the bike at all and it sat for what I can only guess was many years outside. The gas tank was full of &#8230; <a href="http://alecirwin.com/?p=166">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div id="attachment_169" class="wp-caption alignright" style="width: 310px"><a href="http://alecirwin.com/wp-content/uploads/2012/04/100_6200.jpg"><img class="size-medium wp-image-169" title="Carb cleaning" src="http://alecirwin.com/wp-content/uploads/2012/04/100_6200-300x225.jpg" alt="Seca 750 carbs." width="300" height="225" /></a><p class="wp-caption-text">Make sure you have plenty of table space with good light</p></div>
<p>My 1982 Yamaha Seca 750 Carbs were completely sludged up. The previous owner didn&#8217;t take care of the bike at all and it sat for what I can only guess was many years outside. The gas tank was full of rusty gas. I wish I had thought to take a picture of the gas as I poured it out it was brown rusty with chunks of flaky rust. It was beyond bad and it all flowed into these carbs and packed the jets with rusty paste. It then was allowed to dry and become so varnished up that a person could not twist the throttle. I figured the cable was rusted up from the winter(s) it sat outside. That was not the case the cable was free.</p>
<p>As I took the carbs apart I noticed that someone else had taken them out and managed to strip out the screw heads and loose the little lock washers and other &#8216;un-needed parts&#8217;. The guy I purchased the bike swore it ran only 6 short months ago. It only needed a new starter switch on the handle bar. I am pegging the guy and an absolute liar. I probably should have really thought twice at attempting to clean these carbs.</p>
<h3>So here are my tips for this project.</h3>
<p>1. <a href="http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&amp;field-keywords=owners+manual+1983+yamaha+seca+750">Buy</a> and read the Haynes owners workshop manual.<a href="http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&amp;field-keywords=owners+manual+1983+yamaha+seca+750"><img class="alignright  wp-image-191" title="secaOwnersManual" src="http://alecirwin.com/wp-content/uploads/2012/04/secaOwnersManual.jpg" alt="Seca Owners manual" width="115" height="115" /></a></p>
<p>Wear gloves the solvents are not good for your skin. I liked the white ones in the following images. They were tighter fitting and allowed me to pick up little parts easier, however the green ones held up much better. It also helps to lotion your hands, it fills the pores in your skin with lotion rather than oil and solvent. It washes off much easier.</p>
<p>Wear some safety glasses. I hate them but every time I take them off I flick some solvent in my eyes or when using the air compressor to blow something off I get a faceful</p>
<table>
<tbody>
<tr>
<td>
<p><div id="attachment_181" class="wp-caption alignleft" style="width: 310px"><a href="http://alecirwin.com/wp-content/uploads/2012/04/100_6212.jpg"><img class="size-medium wp-image-181 " title="float bowl drain screws" src="http://alecirwin.com/wp-content/uploads/2012/04/100_6212-300x199.jpg" alt="" width="300" height="199" /></a><p class="wp-caption-text">These float bowl drain screws are not a bolt you can pick up at Menards</p></div></td>
<td>
<p><div id="attachment_182" class="wp-caption alignright" style="width: 310px"><a href="http://alecirwin.com/wp-content/uploads/2012/04/100_6213.jpg"><img class=" wp-image-182 " title="Cutting a new slot in a buggered screw" src="http://alecirwin.com/wp-content/uploads/2012/04/100_6213-300x199.jpg" alt="cutting a new slot" width="300" height="199" /></a><p class="wp-caption-text">Use a Dremmel tool to cut a new slot. You may want to get these out later.</p></div></td>
</tr>
</tbody>
</table>
<div id="attachment_171" class="wp-caption alignleft" style="width: 310px"><a href="http://alecirwin.com/wp-content/uploads/2012/04/100_6202.jpg"><img class="size-medium wp-image-171" title="Use the right size screw driver" src="http://alecirwin.com/wp-content/uploads/2012/04/100_6202-300x225.jpg" alt="Removing a brass carb jet" width="300" height="225" /></a><p class="wp-caption-text">Use the right size screw driver. It should fit snugly across the entire radius of of the jet.</p></div>
<p>Use the right size screw driver on the jets. Use a clean screw driver with a good sharp tip. Buy yourself a new one or grind it flat. These brass jets will take some force to remove and easily strip out if you are careless.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_174" class="wp-caption alignright" style="width: 310px"><a href="http://alecirwin.com/wp-content/uploads/2012/04/100_6205.jpg"><img class="size-medium wp-image-174" title="Cleaning tools" src="http://alecirwin.com/wp-content/uploads/2012/04/100_6205-300x225.jpg" alt="Cleaning tools" width="300" height="225" /></a><p class="wp-caption-text">some handy items</p></div>
<p>Don&#8217;t use wire to clean out the jets. The brass and aluminum scratch easily.</p>
<p>If you feel you must poke &#8211; and I usually do. Use a nylon bristle from a scrub brush. Use an air compressor, it works 99% of the time.</p>
<div id="attachment_175" class="wp-caption alignleft" style="width: 310px"><a href="http://alecirwin.com/wp-content/uploads/2012/04/100_6206.jpg"><img class="wp-image-175 " title="Cleaning with safe pokers" src="http://alecirwin.com/wp-content/uploads/2012/04/100_6206-300x225.jpg" alt="Cleaning with safe tools" width="300" height="225" /></a><p class="wp-caption-text">The plastic bristle won&#39;t be likely to scratch your brass jet</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Here is a picture of the green gloves that hold up much better to the solvents and work.</p>
<p>When you are blowing out the jets with an air compressor watch your eyes. The jets sometimes blow back in unexpected ways.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The manual recommends you take the carbs apart one at a time. I agree. You will use one assembled carb as a guide to where the jets in the disassembled carb will go back. The book is only so good as it is black and white. However you may want to remove the larger rubber/plastic parts so you can dip the whole set of carbs as a unit. I found it impossible to get one carb at a time clean. So I took the big obvious parts apart and kept them separate. Use the float bowl &#8211; fill it with carb cleaner and place the parts (the parts you KNOW the location of) in it to soak.  Things like the diaphragm/piston shouldn&#8217;t be soaked in the solvent. I once left a tooth brush in the solvent overnight, it kind of partially melted. Once all the vulnerable plastic parts are removed you can get that carb cleaner all over it and avoid the whole dirty carb getting the clean one dirty. It goes much faster if you don&#8217;t have to do one at a time.</p>
<p>The book says not to touch the pilot jet. I felt I just had to. The trick is putting it back the way it was. Screw it in as far as it goes while counting the turns. Mine was 3.5 turns before it hit bottom. Unscrew it all the way &#8211; clean it out. Then screw it all the way in again and back it off 3.5 turns.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://alecirwin.com/?feed=rss2&#038;p=166</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Ford Contour project</title>
		<link>http://alecirwin.com/?p=61</link>
		<comments>http://alecirwin.com/?p=61#comments</comments>
		<pubDate>Thu, 16 Feb 2012 03:02:16 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Engine]]></category>
		<category><![CDATA[Ford Contour]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://alecirwin.com/?p=61</guid>
		<description><![CDATA[The Contour Project Back in 2004 I bought this 98 Ford Contour for $200. Oh yeah it looks nice in the picture. But the smell!You see this guy drove it into the desert and has a stroke and dies -they &#8230; <a href="http://alecirwin.com/?p=61">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td class="midHead" colspan="3">The Contour Project</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/fordContour98.jpg" alt="98 Ford Contour" width="450" height="338" align="right" />Back in 2004 I bought this 98 Ford Contour for $200. Oh yeah it looks nice in the picture. But the smell!You see this guy drove it into the desert and has a stroke and dies -they don&#8217;t find him for two weeks. His body had exploded all over the inside of the car.</p>
<p>No I am just kidding about that. The engine is blown on it and all the junk yard would pay this kid for it was $200 so I told him I would buy it for that and I could use the parts off of it for our other 98 Contour. But I had no idea it was in such good shape. (No it really doesn&#8217;t smell) It has four wheel disk brakes and a sun roof.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/ContourEngineOUT.jpg" alt="Engine OUT" width="450" height="338" align="right" />I am thinking &#8220;how hard could it be to take the engine out of the blue car and put in the one from the junk yard? Heh This car with a running engine would be worth about $3000.So I calls up the salvage yard and asks them how much they want for a used motor. Only $500 some bucks. . I have been fixing my cars and trucks for a while now and I have done alternators, starters and even the transmission on my truck. So I go buy this engine. -oh&#8230;.. now what have I gotten myself into. This thing is REALLY heavy. Look at all this stuff hanging from it. Can I do this? I am going to do it now -I think.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/ContourEngineIN.jpg" alt="Engine IN" width="450" height="362" align="right" />Well the dude and the junk yard says his computer says it is an 11 hour job. Honestly it is going to take me that long to find my tools. But I am going to tear into and try. The worst that can happen is I get frustrated and return the new motor and sell the car to the junk yard for $200 and just be out the time I spent.&nbsp;</td>
</tr>
<tr>
<td colspan="3">Time log</td>
</tr>
<tr>
<td valign="top">7/7/2004</td>
<td colspan="2" valign="top">3 hours -Pick up motor from Viking Auto Salvage, Remove hood, Set up my work area and organized my sockets and wrenches. Drained some fluids out of engine.  Disconnected hoses and removed the top engine mount.. oppps I don&#8217;t think I should have done that yet. Dumped leaves and rocks out of my toolbox. Lost 2 quarts of blood to savage mosquitoes and contracted some rare form of west nile and lime disease and oil poisoning. I am having fun so far.</td>
</tr>
<tr>
<td>Feb 12th 2005 -6 hours</td>
<td colspan="2">It was remarkably nice out. The calm before the storm. The neighbor Donny helped me with his hoist to lift the car off of the front end. Unbelievable. Why did I think I could do this?</td>
</tr>
<tr>
<td colspan="3">I thought that I would pull the engine out of the car -Not that I would have to pull the car off of the engine. Well. That is the only way to take this thing apart. Fun! <img src="images/images/contourMid1.jpg" alt="contour with engine out" width="400" height="300" align="right" /></td>
</tr>
<tr>
<td colspan="3">One thing that I did notice is that they only way to change the alternator is to do this -pull the car off the body thing. Wonderful! I think I will bring the alternator in to get it checked out as long as I am at it here. Perhaps I might just buy a new one. How ridiculous! I have changed the alternator 4 times on my wonderful Ford ranger. I can just imagine how pissed I would be doing that with this car. &#8220;hello Viking auto salvage?&#8221;. Yes the engine tipped over spilling oil on the lawn. I bet the procedure is to drain the oil before taking the engine out. It is starting to rain now. <img src="images/images/contourMid3.jpg" alt="contour engine" width="400" height="300" align="right" /></td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contourMid5.jpg" alt="engine out " width="400" height="300" align="right" />Here is a better shot of the whole mess in my back yard. I tarped it over and hung it up for today. I am cold dirty and wet and sick of banging my knuckles for today.&nbsp;</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contourMid6.jpg" alt="snow on the project" width="400" height="300" align="right" />Don&#8217;t ya just Love Minnesota! I was wearing a T-shirt yesterday.I might get at this again in the Spring? or next week?</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour61.jpg" alt="engine hoist " width="400" height="300" align="right" />June 24th 2005. It has almost been an entire year since I started this project. I have two weeks before I want to take this car to Camp Tomahawk. If I don&#8217;t finish it I have to either take the bus or drive that nice brown 78&#8242; F150 that gets about 5mpg. (I will be taking the bus if I fail).&nbsp;</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour63.jpg" alt="engine in back of truck" width="400" height="300" align="right" />Moving the engine around on the lawn is a big chore. We hoist it up and put it in the truck, we then drive it around to the other side of the car and hoist it back out. The hoist sinks<br />
in the soft dirt and is almost impossible to push into position. Frank come and helps get it into position with Cody and I.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour65.jpg" alt="Lifting the engine out of truck" width="400" height="300" align="right" />My Sons Cody and Matthew were great help as I pretty much didn&#8217;t feed them for these two weeks because I was totally focused on getting this car put back together. Here is Cody lifting the engine out.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour66.jpg" alt="Transaxle" width="400" height="300" align="right" />Here is a picture of where that motor needs to go.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour67.jpg" alt="Transmission and transaxle" width="400" height="300" align="right" />Notice the Trans-axel in this picture. It is that shaft that is conected to the passenger side wheel. Yeah ahh that needs to get slid on the motor and then into the transmission as it is<br />
all going back together. Well we figured that really wasn&#8217;t possible as we are doing this and it turns out to be a bunch more work on the Weds night before we leave. I ended up taking the wheel off and pulling the whole axel out and putting it back on.This is about how far Cody and I got on this day. Frank came over the next day and gave us a hand getting the motor and transmission together.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour69.jpg" alt="putting the car back on the engine and transaxle" width="400" height="300" align="right" />After Frank helps me jocky the motor and transmission into place, Donny gives us a hand with his crane.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour71.jpg" alt="Car going back together" width="400" height="300" align="right" />Donny&#8217;s Truck has this wonderful crane that made the hole project possible at all. I can&#8217;t thank him enough for his help here.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour72.jpg" alt="Jocky and rock it into the right place" width="400" height="300" align="right" />Donny, Tim and Frank were awesome help at this point in the fun.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour74.jpg" alt="blurry picture" width="400" height="300" align="right" />I am not really working as fast as it looks here.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour76.jpg" alt="one piece again" width="400" height="300" align="right" />It is back together! I feel that if I want to give<br />
up now I can, because it could be towed down to some mechanics garage<br />
in one peice.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour73.jpg" alt="wire harness " width="400" height="300" align="right" />See that wiring harness there? Yeah ahh that should have been put on BEFORE the engine and car went together. What a bear it was to get back behind the engine. There is a serious lack of room between the engine and the firewall.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour79.jpg" alt="" width="400" height="300" align="right" />A few more parts to put on yet here.</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour78.jpg" alt="" width="400" height="300" align="right" />The &#8220;work shop&#8221;</td>
</tr>
<tr>
<td colspan="3"><img src="images/images/contour77.jpg" alt="storm" width="400" height="300" align="right" /></td>
</tr>
<tr>
<td colspan="3">A storm came up and blew a tree down on top of me and<br />
the project.<br />
<img src="images/images/contour80.jpg" alt="storm damage" width="400" height="300" align="right" /></td>
</tr>
<tr>
<td colspan="3">Last minute projects</td>
</tr>
<tr>
<td colspan="3">Monday Eve. The Trans-axel mounting to the engine Tuesday Wiring harnesses</td>
</tr>
<tr>
<td colspan="3">Thursday morning -The steering column hook up</td>
</tr>
<tr>
<td colspan="3">Friday The transmission shift linkage<br />
Done at 11:30 pm! We GOT TO PACK for a week of camping. I am good and tired the next day driving to northern Wisconsin.</td>
</tr>
<tr>
<td colspan="3">Sat. We drive the car to Tomahawk!<br />
The tailpipe come apart between the engine and the muffler. We come into Scout camp sounding like some kind of stock car racer.</td>
</tr>
<tr>
<td colspan="3">It drives all the way home perfectly. What a trip and what a sense of accomplishment. Now I have to get to work on all that stuff I ignored for two weeks</td>
</tr>
</tbody>
</table>
<div class="content">
<p> I have since sold the car. It ran when I sold it, I just could never quite feel like it wasn&#8217;t going to give me some big problem that required taking it all apart again. I wanted to sell it while I still felt good about the project.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://alecirwin.com/?feed=rss2&#038;p=61</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
