ÿþ<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> <title>Paul Graham</title> <meta name="author" content="Paul Graham"> <meta name="description" content="Paul&apos;s webpage"> <script type="text/javascript"> function moveover(image, pic) { image.src=pic } function moveback(image, pic) { image.src=pic } </script> </head><script language="javascript" type="text/javascript" src="http://www.paulgraham.ca/header.txt"></script> <body text="#B0E0E6" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" BACKGROUND="http://www.paulgraham.ca/pagebackground1.jpg" bgproperties="fixed" style="background-repeat: no-repeat; background-attachment: fixed; background-position: 0px 0px;" bgcolor="#000000" link="#999999" vlink="#666666" alink="#cccccc"> <div align="Center"> <! insert page stuff Here!> <br><B>My House</b></a><br> <br> December 6... It was a bit warmer on the weekend, so I was able to put a coat of polyurethane on the shelf. One coat will be enough for now, but I'd like to put another two on when the weather gets warmer in the spring. Anyway, its inside now, and being used... not sure what the next project is going to be, but its getting mighty cold up here, so it probably won't be anything that requires me to be in the garage. <br> <a href="052.jpg"><img src="tn_052.jpg"></a> <a href="053.jpg"><img src="tn_053.jpg"></a> <br><br> November 30... Finished building the book shelf and have stained it. Hopefully it stays warm for another couple days so I can put a couple coats of polyurethane on it in the garage. <br> <a href="051.jpg"><img src="tn_051.jpg"></a><br><br> November 22... Got some new couches last week. The old couches went down to the theatre, which now seats 10 comfortably. <br> <a href="046.jpg"><img src="tn_046.jpg"></a> <a href="047.jpg"><img src="tn_047.jpg"></a> <a href="048.jpg"><img src="tn_048.jpg"></a> <a href="049.jpg"><img src="tn_049.jpg"></a><br><br> Now that the living room has been rearranged a bit I figure I need a book shelf to go against the wall behind the couch. I'm going with a plan that I found in the most recent issue of Woodsmith. This is my first try at building something from proper plans, and it seems to be working out nicely.<Br> <a href="050.jpg"><img src="tn_050.jpg"></a><br><br> <Br> October 31... The varnish is dry, and everything is moved in.<br> <a href="045.jpg"><img src="tn_045.jpg"></a><br><Br> October 28... Stained the TV stand and coffee table last night, and put the first coat of polyurethane on the stuff. Another coat or two and I'll be all set. next up: end tables<Br> <a href="042.jpg"><img src="tn_042.jpg"></a> <a href="043.jpg"><img src="tn_043.jpg"></a> <a href="044.jpg"><img src="tn_044.jpg"></a> <Br><Br> October 26... Made myself a coffee table tonight. I based it on a design I saw in a book at Chapters, and used about $30 worth of wood. It was pretty easy to make, and is done except for the stain and varnish. I also raised the edges around the top. I plan on getting a piece of glass to put on top and have pictures under it. I also stained some unfinished TV tables I got at Ikea... I'm going to use the same stain for the coffee table and the TV stand. <Br><br> <a href="038.jpg"><img src="tn_038.jpg"></a> <a href="039.jpg"><img src="tn_039.jpg"></a> <a href="040.jpg"><img src="tn_040.jpg"></a> <a href="041.jpg"><img src="tn_041.jpg"></a> <Br><Br> September 14... Finished the TV stand... for now. I'm going to use it for a bit before staining and finishing it. I may end up wanting more shelves for DVDs or something. <br><br> <a href=035.jpg><img src="tn_035.jpg" ></a><br> <a href=036.jpg><img src="tn_036.jpg" ></a><br> wow... its starting to look like a living room...<br> <a href=037.jpg><img src="tn_037.jpg" ></a><br> September 13... started building a TV corner unit. After checking out what you can buy I figured I could make something decent, buy tools and still save money. Here's what I've got so far. Need to add some more shelves, stain and varnish it. <br><br> What I've been using... <a href=033.jpg><img src="tn_033.jpg" ></a><br> <br><br> What I've built so far... <a href=034.jpg><img src="tn_034.jpg" ></a><br> <br><br> Slowly filling this thing with stuff... My parents were up last weekend (Aug 20-21), so I got a few things done. Built a rack for my canoe, fixed the chimney, and got a kitchen table. Also got a couch this week (don't need the lawn chair anymore!). <BR><bR> <a href=031.jpg><img src="tn_031.jpg" ></a><br> <a href=032.jpg><img src="tn_032.jpg" ></a><br> <br> The empty house pictures are <a href="orginal.html">here</a> <br> <div align="Center"><br> <br> <br> <div align="Center"><br> <! last modified code stuff*> <font size="-2"><SCRIPT LANGUAGE="JavaScript"> var theDate = "" theDate = document.lastModified document.writeln("Last updated "); document.write(theDate); document.write(); </SCRIPT> </FONT> <! end of last modified java*> <center><font size="-2"> This page is maintained by </font><font size="-2"> PaulGraham, paul(at)paulgraham(dot)ca</font></center> <script type="text/javascript"> //===================================================================== // DOM Image Rollover v3 //===================================================================== // How to use: // 1 : Place this script RIGHT ABOVE the closing body tag // 2 : * For images that need rollovers, edit/add a "class" attribute // with the string "domroll your_rollover_image.jpg" // * If you already have a class attribute on that image: // &lt;img class="original class domroll image.jpg other stuff"&gt; // // Example: &lt;img src="off.gif" class="domroll on.gif"&gt; //===================================================================== // copyright Chris Poole // http://chrispoole.com // domroll@chrispoole.com // demo: http://chrispoole.com/scripts/dom_image_rollover/ //===================================================================== function domRollover() { if (navigator.userAgent.match(/Opera (\S+)/)) { var operaVersion = parseInt(navigator.userAgent.match(/Opera (\S+)/)[1]); } if (!document.getElementById||operaVersion <7) return; var imgarr=document.getElementsByTagName('img'); var imgPreload=new Array(); var imgSrc=new Array(); var imgClass=new Array(); for (i=0;i<imgarr.length;i++){ if (imgarr[i].className.indexOf('domroll')!=-1){ imgSrc[i]=imgarr[i].getAttribute('src'); imgClass[i]=imgarr[i].className; imgPreload[i]=new Image(); if (imgClass[i].match(/domroll (\S+)/)) { imgPreload[i].src = imgClass[i].match(/domroll (\S+)/)[1] } imgarr[i].setAttribute('xsrc', imgSrc[i]); imgarr[i].onmouseover=function(){ this.setAttribute('src',this.className.match(/domroll (\S+)/)[1]) } imgarr[i].onmouseout=function(){ this.setAttribute('src',this.getAttribute('xsrc')) } } } } domRollover(); </script> </body></html>