<?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>SheekGeek &#187; Adventures in DIY</title>
	<atom:link href="http://sheekgeek.org/topic/diy/feed" rel="self" type="application/rss+xml" />
	<link>http://sheekgeek.org</link>
	<description>A young couples adventure in DIY and life.</description>
	<lastBuildDate>Sat, 07 Jan 2012 16:00:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>A Cheap but Quality Home Surveillance System</title>
		<link>http://sheekgeek.org/2011/adamsheekgeek/a-cheap-but-quality-home-surveillance-system</link>
		<comments>http://sheekgeek.org/2011/adamsheekgeek/a-cheap-but-quality-home-surveillance-system#comments</comments>
		<pubDate>Wed, 14 Dec 2011 06:09:00 +0000</pubDate>
		<dc:creator>Adam@SheekGeek</dc:creator>
				<category><![CDATA[Adventures in DIY]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Home Sweet Home]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[cam]]></category>
		<category><![CDATA[cctv]]></category>
		<category><![CDATA[mjpg_streamer]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[uvcvideo]]></category>
		<category><![CDATA[webcam]]></category>
		<category><![CDATA[zoneminder]]></category>

		<guid isPermaLink="false">http://sheekgeek.org/?p=1129</guid>
		<description><![CDATA[Today as I got into my car I realized that someone had broken into it and ransacked my glovebox and center console. I couldn&#8217;t nail down exactly when it happened but I couldn&#8217;t help but feel violated.  Someone else in my neighborhood also had a break in. I decided to do something about it. I immediately went to the closest store and grabbed a cheap webcam and prepared to make a motion triggered surveillance system. (Man, I love Linux).

The camera I grabbed was iHome brand basic webcam for around $15.  ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://sheekgeek.org/wp-content/uploads/2011/12/secCamFeatured.jpeg"><img class="size-medium wp-image-1138 alignleft" title="secCamFeatured" src="http://sheekgeek.org/wp-content/uploads/2011/12/secCamFeatured-300x225.jpg" alt="" width="300" height="225" /></a>Today as I got into my car I realized that someone had broken into it and ransacked my glovebox and center console. I couldn&#8217;t nail down exactly when it happened but I couldn&#8217;t help but feel violated.  Someone else in my neighborhood also had a break in. I decided to do something about it. I immediately went to the closest store and grabbed a cheap webcam and prepared to make a motion triggered surveillance system. (Man, I love Linux).</p>
<p><span id="more-1129"></span></p>
<p>The camera I grabbed was iHome brand basic webcam for around $15.  Most webcams will work with this system from what I can tell. I literally did no research beforehand, which I do not recommend. I got very lucky that the camera I chose worked without much trouble (which practically NEVER happens for me).  I highly suggest checking to make sure the hardware will work before buying this or any other camera for this application.</p>
<p>The program I am using is called <a href="http://www.zoneminder.com">ZoneMinder</a>, which is a fully featured open source CCTV security system .  It was written by someone who had a similar experience to me.  This program allows you to have multiple cameras which can be set to only record when they detect motion, and you can even break the camera images into separate zones of detection. This program can also integrate with X10 hardware to control all sorts of toys.  All of this is hosted on a web server so you can access it from anywhere in the world if you desire. I&#8217;m only going to set up something locally to only record if motion is detected.</p>
<p>Again, you want to make sure your  hardware will work with the program, so head over to the <a href="http://www.zoneminder.com/wiki/index.php/Hardware_Compatibility_List#USB_Cameras">ZoneMinder Wiki hardware compatibility list</a> as well as the <a href="http://www.ideasonboard.org/uvc/#devices">UVCvideo compatibility list</a> since ZoneMinder can use the UCVvideo drivers for linux.</p>
<p>My camera happened to work with the UCVvideo drivers, so I had to install that first. You can skip this section if you already have a working camera.  To begin with I had to install patchUtils form synaptic. You can do the same with the command below:</p>
<blockquote><p>sudo apt-get install patchUtils</p></blockquote>
<p>Then I downloaded and installed the UCVvideo drivers <a href="http://git.linuxtv.org/media_build.git">[1 ]</a></p>
<blockquote><p>git clone git://linuxtv.org/media_build.git<br />
cd media_build<br />
./build<br />
make install</p></blockquote>
<p>At this point I kept having a bit of a problem, but I found the answer on another blog. This involved running two commands to actually insert the UCV modules:</p>
<blockquote><p>sudo depmod -a<br />
modprobe uvcvideo</p></blockquote>
<p>Everyone will need the following commands to install the dependencies for ZoneMinder. Again, it runs a webserver, so there are a few important dependencies to be installed. Luckily I found a <a href="http://www.howtoforge.com/video_surveillance_zoneminder_ubuntu">good tutorial</a> to help figure out what all I would need.</p>
<blockquote><p>sudo apt-get install apache2 php5-mysql libapache2-mod-php5 mysql-server<br />
sudo apt-get install ffmpeg libarchive-tar-perl libarchive-zip-perl libdate-manip-perl libdevice-serialport-perl<br />
sudo apt-get install libjpeg62 libmime-perl libstdc++6 libwww-perl zlib1g</p></blockquote>
<p>At this point, you *may* need to reboot for Apache to configure correctly. I didn&#8217;t, but the author of the tutorial I used did.<br />
Now, finally we can install ZoneMinder itself. I installed it form synaptic, but you can get updated installations form the ZoneMInder website. Otherwise run the following:</p>
<blockquote><p>sudo apt-get install zoneminder</p></blockquote>
<p>After installing ZoneMinder, you now need to configure and start Apache:</p>
<blockquote><p>sudo ln -s /etc/zm/apache.conf /etc/apache2/conf.d/zoneminder.conf<br />
sudo /etc/init.d/apache2 force-reload<br />
sudo adduser www-data video</p></blockquote>
<p>At this point, open Firefox and go to the ZoneMinder dashboard by visiting</p>
<blockquote><p>http://localhost/zm</p></blockquote>
<p>Now before I could Add a new monitor (add my camera to ZoneMInder) I had to use another program to connect my camera to ZoneMinder. I found a good <a href="http://www.youtube.com/watch?v=l-nIUgB35OQ">video series</a> that explains the steps for installing and configuring my camera and ZoneMinder.  The program I needed was mjpg_streamer which you can <a href="http://sourceforge.net/projects/mjpg-streamer/">get and install from sourceforge</a>.<br />
Of course to install this, you can just double-click the .deb file and install it as normal.<br />
Now you have to run mjpg_streamer from the commandline using the following command:</p>
<blockquote><p>mjpg_Streamer -i &#8220;input_uvc.so -d /dev/video0 -y -r 640&#215;480 -f&#8221; -o &#8220;output_http.so -p 8080&#8243;</p></blockquote>
<p>A short explanation here: &#8220;-d /dev/video0&#8243;  is the device you want to use. To find out which device your camera is, enter &#8220;ls /dev/video*&#8221; into the terminal. If you only have one camera, then it will pop up as the only result. Use that address. -y stands for YUYV format MPEG files. &#8220;-r 640&#215;480&#8243; attempts to set the resolution. My camera technically supports this resolution, however, that is if you have the correct drivers, which I do not. The -o &#8220;output_http.so -p 8080&#8243; means that you are going to stream the video feed to port 8080 on this machine.</p>
<p>Additionally, you can add the flag &#8220;-b&#8221; to this command to run it in the background. If you do this, you have to manually kill mjpg_streamer when you want to close it.</p>
<blockquote><p>killall mjpg_streamer</p></blockquote>
<p>If you didn&#8217;t get any errors, we can check to see if the video is streaming correctly. Open a new tab in Firefox and go to</p>
<blockquote><p>http://localhost:8080/?action=stream</p></blockquote>
<p>If you see video, then it is working. If not, go back and double-check you&#8217;ve followed all my instructions correctly. If that doesn&#8217;t solve your problem, post on the ZoneMInder or UVC forums. I honestly do not know enough to be able to troubleshoot any more than I am explaining in this guide.</p>
<p>So now that your camera is streaming video, we can connect it to ZoneMinder (FINALLY!) So, go back to the ZoneMinder dashboard in your Firefox browser ( http://localhost/zm ) and click &#8220;Add New Monitor&#8221;. A window will pop up that looks like this make your values match the ones seen in this image):</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://sheekgeek.org/wp-content/uploads/2011/12/AddNewMonitor1.jpeg"><img class="size-medium wp-image-1131 aligncenter" title="AddNewMonitor1" src="http://sheekgeek.org/wp-content/uploads/2011/12/AddNewMonitor1-254x300.jpg" alt="" width="254" height="300" /></a></p>
<p>Name this monitor whatever you like (no spaces or special characters), change the &#8220;Source Type&#8221; to &#8220;Remote&#8221;, change the function to Modect, check &#8220;enabled&#8221;  then click the &#8220;Source&#8221; tab. This window should look like this, expect with blank textbooks:</p>
<p style="text-align: center;"><a href="http://sheekgeek.org/wp-content/uploads/2011/12/AddNewMonitor2.jpeg"><img class="alignnone size-medium wp-image-1132" title="AddNewMonitor2" src="http://sheekgeek.org/wp-content/uploads/2011/12/AddNewMonitor2-254x300.jpg" alt="" width="254" height="300" /></a></p>
<p>Fill in the textbooks as I have in the example image above. Basically, you are telling ZoneMinder where to find the streaming video. The &#8220;remote Host Name&#8221; should be &#8220;localhost&#8221; since you are using the same machine. Port should be the same value as what you used in the mjpg_streamer command above (8080). The &#8220;Remote Host Path&#8221; is everything after the backslash form the web address we used to test the camera above &#8220;?action=stream&#8221;.  Now notice the Capture Width and Height is different from what the mjpg_streamer command was.  This was an issue with my camera. It could not handle the 620&#215;480 resolution and it defaulted to what is seen here. Be sure that the resolution in these boxes matches the resolution of your video stream. You can check this by looking at the page title of the webpage we used to test the camera &#8220;http://localhost:8080/?action=stream&#8221; It should read something like &#8220;(JPEG Image, 320&#215;240 pixels) &#8211; Mozilla Firefox&#8221;. Those are the values you should use here. Click &#8220;Save&#8221; when you are finished editing these settings.</p>
<p>That popup should close and the ZoneMinder dashboard should refresh. If everything is working correctly, your new monitor should have been added. If the text &#8220;localhost&#8221; under the &#8220;Source&#8221;  column is red, then you have a problem and need to make sure your settings are correct, and that mjpg_streamer is running. Otherwise, the text should be green.  Click the motor name to open a live view your new security camera.</p>
<p>With the current settings, it will only record an event if it detects motion. When this happens, the dashboard of ZoneMinder will add numbers in the &#8220;Events&#8221; column. Click this number to view the event. (Click &#8220;Refresh&#8221; on the dashboard if it doesn&#8217;t update those columns fast enough for you). This will now play back the video of the specific event. The window below shows an example of what an event would look like.</p>
<p style="text-align: center;"><a href="http://sheekgeek.org/wp-content/uploads/2011/12/Event1.jpeg"><img class="size-medium wp-image-1133 aligncenter" title="Event1" src="http://sheekgeek.org/wp-content/uploads/2011/12/Event1-238x300.jpg" alt="" width="238" height="300" /></a></p>
<p>That is it! We are finished. Now I have a smart motion triggered security cam that will archive footage if anyone goes near our cars. Your mileage may vary of course depending on the cameras, lighting, etc. of your particular situation. I was surprised how easy all of this actually was! I&#8217;m going to play around with this a bit more and see if I can make it a full fledged security system for our house.</p>
<p>If you have had success with this, please post a comment and tell us about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://sheekgeek.org/2011/adamsheekgeek/a-cheap-but-quality-home-surveillance-system/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Weather Balloon Launch Video and Google Earth File (Pt. 2)</title>
		<link>http://sheekgeek.org/2011/adamsheekgeek/first-weather-balloon-launch-video-and-google-earth-file-pt-2</link>
		<comments>http://sheekgeek.org/2011/adamsheekgeek/first-weather-balloon-launch-video-and-google-earth-file-pt-2#comments</comments>
		<pubDate>Mon, 21 Nov 2011 01:39:39 +0000</pubDate>
		<dc:creator>Adam@SheekGeek</dc:creator>
				<category><![CDATA[Adventures in DIY]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Weather Balloon]]></category>

		<guid isPermaLink="false">http://sheekgeek.org/?p=1072</guid>
		<description><![CDATA[With the payload tested in a rocket, everything looked ready to go. I took it off the breadboard and built it onto a strip board PCB to make everything sturdy.
The next step was to create the payload box. The professor had done this before so he gave us tips on using foam core poster board, hot glue and HVAC tape. We chose to cover ours in mylar by applying a spray adhesive to the surface, then laying a sheet of mylar on it, and using credit cards to squeegee it ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://sheekgeek.org/wp-content/uploads/2011/11/ss2_small.jpg"><img class="alignleft size-full wp-image-1094" title="ss2_small" src="http://sheekgeek.org/wp-content/uploads/2011/11/ss2_small.jpg" alt="" width="296" height="185" /></a>With the payload tested in a rocket, everything looked ready to go. I took it off the breadboard and built it onto a strip board PCB to make everything sturdy.</p>
<p>The next step was to create the payload box. The professor had done this before so he gave us tips on using foam core poster board, hot glue and HVAC tape. We chose to cover ours in mylar by applying a spray adhesive to the surface, then laying a sheet of mylar on it, and using credit cards to squeegee it flat as best as possible. The mylar was applied to the insides of the box before gluing, and the outside afterward.</p>
<p style="text-align: center;"><span id="more-1072"></span><a title="Applying Mylar to Foam Core board by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6372908099/"><img src="http://farm7.staticflickr.com/6044/6372908099_d119a14c2e_m.jpg" alt="Applying Mylar to Foam Core board" width="240" height="180" /></a><a title="Inside payload box by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6372908313/"> <img src="http://farm7.staticflickr.com/6106/6372908313_7dd68aef3e_m.jpg" alt="Inside payload box" width="240" height="180" /></a></p>
<p style="text-align: left;">The inside was filled with a medium density foam from a second hand art store (<a href="http://www.scrapexchange.org/">the scrap Exchange in Durham</a> is AMAZING!).  The GPS was velcroed to the top of the box. A hole was cut on both the inside and outside of the box in the mylar just where the GPS was so it could receive signal.</p>
<p style="text-align: center;"><a title="Insulating Foam by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6372908017/"><img src="http://farm7.staticflickr.com/6213/6372908017_5023ca5d82_m.jpg" alt="Insulating Foam" width="180" height="240" /></a> <a title="Finished weather Balloon Payload Box by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6372908211/"><img src="http://farm7.staticflickr.com/6217/6372908211_5c7734e347_m.jpg" alt="Finished weather Balloon Payload Box" width="240" height="180" /></a></p>
<p style="text-align: left;">The launch was Saturday May 22nd at 12:40pm. There were scattered showers and a thunderstorm. Just before the launch, 5 &#8220;hot hands&#8221; packs were thrown in the center of the box, foam was added, and the box was taped up for launch.</p>
<p style="text-align: left;">The <a href="http://www.carolinaeos.org/">Carolina Edge of Space guys</a> had their GPS/HAM radio setup sending APRS tracking data. All the payloads got a HOBO Data logger with internal and external temperature readings. There were 3 cameras in total.</p>
<p style="text-align: left;"><a title="Stuffing the payload boxes just before launch by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6372907953/"><img src="http://farm7.staticflickr.com/6238/6372907953_e18dc765f2_m.jpg" alt="Stuffing the payload boxes just before launch" width="240" height="180" /></a> <a title="Tying the payloads onto the rope by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6372907045/"><img src="http://farm7.staticflickr.com/6106/6372907045_8fc1d26d85_m.jpg" alt="Tying the payloads onto the rope" width="240" height="180" /></a> <a title="Weather Balloon weather tracking by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6372907881/"><img src="http://farm7.staticflickr.com/6234/6372907881_c96f71a057_m.jpg" alt="Weather Balloon weather tracking" width="240" height="180" /></a></p>
<p style="text-align: left;">We launched at 12:40pm, just as the rain turned to drizzle.</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: center;"><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/VUTKn0rQM5g?version=3&amp;hl=en_US" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="480" height="360" src="http://www.youtube.com/v/VUTKn0rQM5g?version=3&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object>[youtube=http://www.youtube.com/watch?v=VUTKn0rQM5g]</p>
<p>Since we launched in the drizzle, and just before a thunderhead hit, all of our cameras got wet and subsequently froze upon entering the lower temperatures of the stratosphere. All the cameras eventually stopped working, The one in our box stopped just inside the cloud. The other two stopped just after passing the cloud top, looking face first at the thunderhead. You can <em>just</em> see the beginning of the blackness of space behind the cloud. <a href="http://www.flickr.com/photos/sheek_geek/sets/72157628072949379/">View the entire Flickr set here!</a></p>
<p style="text-align: center;"><a title="This is near the city of Monroe by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6373369551/"><img src="http://farm7.staticflickr.com/6231/6373369551_8238a0e241_o.jpg" alt="This is near the city of Monroe" width="364" height="273" /></a> <a title="Top of the Thunderhead we launched into by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6373369573/"><img src="http://farm7.staticflickr.com/6059/6373369573_b92b6c7f68.jpg" alt="Top of the Thunderhead we launched into" width="205" height="274" /></a></p>
<p>The arduino payload didn&#8217;t record data either. Just before launch I tested to make sure it was recording data, and it was. however, a last minute addition of a second parallel battery pack may have overloaded the already hot 5V voltage regulator. It seems that just as I connected the last battery, the entire circuit shut off and on due to an internal thermal overload switch in the voltage regulator. I didn&#8217;t notice this because as it was toggling, I saw the &#8220;reset&#8221; light flashing on the arduino. This LED is also connected to the SD card data line, so it looked exactly as if the SD card was being written to.</p>
<p>The only data that was recovered was of the data logger in our payload.  The internal temperature stayed a toasty 130 degrees F (which added to the problem of why we got no data.) The external temp showed a very good profile of the balloon punching through the tropopause before plumeting back to earth.</p>
<p style="text-align: center;"><a title="External_Temp by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6373192699/"><img src="http://farm7.staticflickr.com/6096/6373192699_a71a750c1f_m.jpg" alt="External_Temp" width="240" height="161" /></a></p>
<p style="text-align: center;"><strong>External Temperature</strong></p>
<p>Overall, the balloon went 74,642ft. before the balloon popped. It flew across two counties and the state line before landing.  I exported the APRS data to a <a href="http://sheekgeek.org/wp-content/uploads/2011/11/balloon.zip">Google Earth KMZ File</a>.</p>
<p><a title="Google Earth path of Balloon by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6373192633/"><img src="http://farm7.staticflickr.com/6212/6373192633_4c5cf0d9c9_m.jpg" alt="Google Earth path of Balloon" width="240" height="167" /></a> <a title="Google Earth path of Balloon by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6373192597/"><img src="http://farm7.staticflickr.com/6059/6373192597_6c68e2a454_m.jpg" alt="Google Earth path of Balloon" width="240" height="168" /></a> <a title="Google Earth path of Balloon by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6373192511/"><img src="http://farm7.staticflickr.com/6055/6373192511_29a0ce6502_m.jpg" alt="Google Earth path of Balloon" width="240" height="168" /></a></p>
<p style="text-align: center;"><strong>Google Earth export of the APRS data</strong></p>
<p style="text-align: left;">It happened to land in the yard of a man who worked in the photo lab at NASA during the 60s and 70s. He told us some of the stories from their lab, and showed us large prints of iconic photos he had developed. One in particular was of a lunar earth rise!</p>
<p style="text-align: center;"><a title="How it all landed by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6372906773/"><img src="http://farm7.staticflickr.com/6044/6372906773_57db265a43_m.jpg" alt="How it all landed" width="180" height="240" /></a> <a title="Owner of the property the balloon landed on  by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6372906825/"><img src="http://farm7.staticflickr.com/6091/6372906825_d0aeec1e9b_m.jpg" alt="Owner of the property the balloon landed on " width="240" height="180" /></a></p>
<p style="text-align: left;">A second launch was planned for Fall of 2010. Luckily it faired better than this launch. I&#8217;ll post the vids and pics of that adventure soon.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://sheekgeek.org/2011/adamsheekgeek/first-weather-balloon-launch-video-and-google-earth-file-pt-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Weather Balloon Payload Testing on a Model Rocket (Pt.1)</title>
		<link>http://sheekgeek.org/2011/adamsheekgeek/weather-balloon-payload-testing-on-a-model-rocket-pt-1</link>
		<comments>http://sheekgeek.org/2011/adamsheekgeek/weather-balloon-payload-testing-on-a-model-rocket-pt-1#comments</comments>
		<pubDate>Sun, 20 Nov 2011 23:37:04 +0000</pubDate>
		<dc:creator>Adam@SheekGeek</dc:creator>
				<category><![CDATA[Adventures in DIY]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rockets]]></category>
		<category><![CDATA[Weather Balloon]]></category>
		<category><![CDATA[adc]]></category>
		<category><![CDATA[barometer]]></category>
		<category><![CDATA[carolina edge of space]]></category>
		<category><![CDATA[gyroscope]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[model rocket]]></category>
		<category><![CDATA[payload]]></category>
		<category><![CDATA[rocket]]></category>
		<category><![CDATA[Rocketry]]></category>
		<category><![CDATA[weather balloon]]></category>

		<guid isPermaLink="false">http://sheekgeek.org/?p=1038</guid>
		<description><![CDATA[
Working with a professor at my college and Carolina Edge of Space in May of 2010 I, along with a small group of friends, sent a weather balloon 74,642 feet into the sky.  This post is mainly about the payload I designed, built and tested for the project.
This project was inspired by many seen recently online where students have been sending cheap payloads into the stratosphere. It started around December 2009 when we all met for the first time to discuss the project. It turns out that one of the ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://sheekgeek.org/wp-content/uploads/2011/11/balloonHardware_small.png"><img class="alignleft size-medium wp-image-1051" title="Weather Balloon Hardware" src="http://sheekgeek.org/wp-content/uploads/2011/11/balloonHardware_small-300x191.png" alt="" width="300" height="191" /></a></p>
<p>Working with a professor at my college and <a href="http://www.carolinaeos.org/" target="_blank">Carolina Edge of Space</a> in May of 2010 I, along with a small group of friends, sent a weather balloon 74,642 feet into the sky.  This post is mainly about the payload I designed, built and tested for the project.</p>
<p>This project was inspired by many seen recently online where students have been sending cheap payloads into the stratosphere. It started around December 2009 when we all met for the first time to discuss the project. It turns out that one of the professors in the Earth Sciences department focuses on remote sensing (gathering data about earth from satellites, etc.) who had done some weather balloon projects in the past. We all got together to discuss a possible launch.<br />
<span id="more-1038"></span><br />
Originally, the group included a lot of people, however, as time went on, fewer and fewer people showed up at the meetings or participated in the email conversations. There would be several payloads. Carolina Edge of Space would have a GPS tracking radio, the professor hosting this would carry two cameras in a payload with a HOBO data logger, one Grad student would build an &#8220;ash detector&#8221; and my group would build something to take a multitude of measurements.</p>
<p>First the payload sensor were picked out. Of course we wanted pictures. The professor provided us with Nikon Coolpix digital cameras and 2GD SD cards. These were chosen because they have a built in intervalometer and were very small. I tested the camera in my freezer (which gets down to -20 degrees Celsius (-40F) and usually got about 2 full hours of pictures every 30 seconds before the battery died. this was plenty as we expected about a 2 or 3 hour flight. Turning off the flash and increasing the time between pictures helped extend the life of the battery.</p>
<p>As for the custom payload, we wanted a barometer to see the change in air pressure, accelerometers to see how hard the payload would be whipped around in the winds, some ozone sensors and such to measure concentrations, a GPS so we would have a good clock as well Latitude, longitude and altitude. What seemed like a great custom embedded systems project turned into a simpler Arduino-based project as time and money became an issue.</p>
<p>I tried to get nice ozone sensors, however, everything was way too expensive and none of the companies I contacted were willing to donate to our cause. Then I remembered that I had seen some <a title="Ozone and &quot;Air Quality&quot; sensors" href="http://www.futurlec.com/Gas_Sensors.shtml" target="_blank">neat gas sensors at Futurlec</a>, such as ozone sensors, and &#8220;air quality&#8221; (what ever that is&#8230;) that were quite cheap.  I grabbed a couple of each to play around with. I tested the Ozone sensor by placing it inside a bag with a running DC motor. The brushes of the DC motor arc as they move across the sections of the commutator and ionize the air. This effectively produces a bit of ozone (its that almost metallic smell DC motors or high voltage electronics give off.) The graph below shows the results of this test as raw ADC values from an arduino. <a href="http://sheekgeek.org/wp-content/uploads/2011/11/ozone-raw-bag-test.ods">Here you can download the raw ADC values and graph from this test in Open Document Spreadsheet format.</a></p>
<p style="text-align: center;"><a title="Ozone sensor test by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6373224263/"><img src="http://farm7.staticflickr.com/6103/6373224263_ee0334a6c2_m.jpg" alt="Ozone sensor test" width="240" height="212" /></a><br />
<strong>Testing the Ozone Sensor</strong></p>
<p>I also bought a few different barometric pressure sensors. The one I bought specifically for the weather balloon was hard to use as it was a differential and had to have a known pressure on one side to compare to. It also has two output pins which required an op-amp circuit to output the difference in pressure. Testing proved this was not the easiest sensor to use as I didn&#8217;t figure out the best way to seal off one side of the sensor. Instead I settled for a sensor that had a built-in vacuum on one side, and a single output pin, <a href="http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=MPXA6115A" target="_blank">the MPXA6115A</a> . This new pressure sensor would only go down to 15kPa (about 33,000ft I think) but I assumed that if we took external temperature as well, we could correlate it with the pressure up to a point, and when the senor stopped working, we could calculate the pressure based on the temperature data using a barometric formula.</p>
<p>Additionally, we wanted to use a GPS to get altitude data. I&#8217;ve been told that some GPS unit manufacturers limit the capabilities of their units to below 60,000 ft and a certain speed for safety reasons but I couldn&#8217;t find any info on that for my particular unit, <a href="http://www.sparkfun.com/products/8266" target="_blank">the San Jose Navigation FV-M8 GSP module</a>.</p>
<p>Acceleration was also something we wanted to measure. We used a Sparkfun ADXL300 3 axis accelerometer. Actually it had a 2 axis gyroscope built in as well, but we ran out of analog input pins on the Arduino and wanted to keep this as small and simple as possible, so we left those off.</p>
<p>All data was stored to a 2GB SD card.</p>
<p>I breadboarded the GPS, accelerometer, barometer, and gyroscope package and slapped together a simple SD card interface. The libraries I used were <a title="GPS library for Arduino" href="http://arduiniana.org/libraries/tinygps/" target="_blank">TinyGPS</a> and<a title="FAt16 SD card library for Arduino" href="http://code.google.com/p/fat16lib/" target="_blank"> fat16lib </a> (for SD card use). <a title="WeatherBallonCode" href="http://sheekgeek.org/wp-content/uploads/2011/11/WeatherBalloonCode.zip" target="_blank">Weather_Balloon_Code</a> and schematic in case you&#8217;d like to build it yourself.</p>
<p style="text-align: center;"><a title="Weather Balloon Schematic by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6373192539/"><img src="http://farm7.staticflickr.com/6092/6373192539_351fae27a8.jpg" alt="Weather Balloon Schematic" width="500" height="456" /></a><br />
<strong>Schematic of the hardware</strong></p>
<p>I flew this in a modified model rocket. I had two flights, one with an E-15-4 engine and the other with an E-30-4 engine. Here&#8217;s the Excel file of each of those two launches that show the values and plotted graphs of each flight.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/11/First_Flight_Raw_ADC_data.xls">First Flight Raw ADC data and graphs.</a></p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/11/Flight2RawADC.xls">Second Flight raw ADC data and Graphs</a></p>
<p>I&#8217;m not sure which one used which engine. Here you can see a graph of the raw ADC pressure sensor values from one of the rocket launches. The air pressure decreases as the rocket altitude increases. You can see the wind and other affects from the rocket  sitting on the launch pad, then then drastic drop in pressure at the launch.  The ramp up on the end of the graph is when the rocket was floating back to the ground under a parachute. Calculations showed it went about 600ft I think.</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><a title="Barometer_Test by sheekgeek, on Flickr" href="http://www.flickr.com/photos/sheek_geek/6373192665/"><img src="http://farm7.staticflickr.com/6093/6373192665_26dd3bd728_m.jpg" alt="Barometer_Test" width="240" height="144" /></a><br />
<strong>Barometer data from Rocket test</strong></p>
<p>To calculate the height the rocket went, we simply need to know a few little things about the set-up. (This gets a bit mathy, but not too bad). First, we knoow that the Arduino was set up to use a 5V ADC reference voltage, and it was set to do 10-bit conversions. Knowing that we can calculate the voltage that each raw ADC unit represents.</p>
<p>ADC Voltage / Max number the bits can represent</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/11/Formula1.png"><img class="alignleft size-full wp-image-1061" title="Formula1" src="http://sheekgeek.org/wp-content/uploads/2011/11/Formula1.png" alt="" width="283" height="42" /></a></p>
<p style="text-align: right;">Formula 1</p>
<p><strong><a href="http://sheekgeek.org/wp-content/uploads/2011/11/formula2.png"><img class="alignleft size-medium wp-image-1057" title="formula2" src="http://sheekgeek.org/wp-content/uploads/2011/11/formula2-300x37.png" alt="" width="300" height="37" /></a></strong></p>
<p style="text-align: right;">Formula 2<strong><br />
</strong></p>
<p>&nbsp;</p>
<p>Multiply this by the lowest barometer reading we got (794 raw ADC units)</p>
<p style="text-align: right;"><strong><a href="http://sheekgeek.org/wp-content/uploads/2011/11/form31.png"><img class="alignleft size-full wp-image-1065" title="form3" src="http://sheekgeek.org/wp-content/uploads/2011/11/form31.png" alt="" width="398" height="14" /></a></strong>Formula 3<strong><br />
</strong></p>
<p>This is the voltage that the sensor was outputting. Now we look at the datasheet of the barometer (MPXA6115A) to find a conversion formula from volts to a measure of air pressure kPa.</p>
<p><strong><a href="http://sheekgeek.org/wp-content/uploads/2011/11/form4.png"><img class="alignleft size-medium wp-image-1060" title="form4" src="http://sheekgeek.org/wp-content/uploads/2011/11/form4-300x14.png" alt="" width="300" height="14" /></a></strong></p>
<p style="text-align: right;">Formula 4</p>
<p>Solve this for P since we already know the voltage:</p>
<p><strong><a href="http://sheekgeek.org/wp-content/uploads/2011/11/form5.png"></a><a href="http://sheekgeek.org/wp-content/uploads/2011/11/form51.png"><img class="alignleft size-full wp-image-1064" title="form5" src="http://sheekgeek.org/wp-content/uploads/2011/11/form51.png" alt="" width="361" height="43" /></a><br />
</strong></p>
<p style="text-align: right;">Formula5</p>
<p>&nbsp;</p>
<p style="text-align: left;">Now we can convert the kPa into a value we can use in <a href="http://www.srh.noaa.gov/epz/?n=wxcalc_pressurealtitude">an online Pressure to Altitude calculator</a> such as inches of mercury. (1 kPa = 0.295333727 inches of mercury)</p>
<p><strong><a href="http://sheekgeek.org/wp-content/uploads/2011/11/form6.png"><img class="alignleft size-full wp-image-1063" title="form6" src="http://sheekgeek.org/wp-content/uploads/2011/11/form6.png" alt="" width="624" height="38" /></a><br />
</strong></p>
<p style="text-align: right;">Formula 6</p>
<p>Now inserting this number into the online Pressure to Altitude calculator, we can get a rough altitude <strong>above sea level</strong> for the rocket, about 1280.6ft (390.3 meters).  This is above Sea-level, not the point that we launched. I happen to know that the height of the ground at the launch site is between 500-700ft  (150-215 meters).  So I subtract the average height (600ft) of the ground from the Altitude calculation I got previously to get:</p>
<p>1280ft &#8211; 600ft =<strong> Rocket height of about 680 feet.</strong></p>
<p>&nbsp;</p>
<p>*Formula graphics provided by <a href="http://www.codecogs.com/latex/eqneditor.php">this Online LaTeX Equation Editor</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://sheekgeek.org/2011/adamsheekgeek/weather-balloon-payload-testing-on-a-model-rocket-pt-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn Your House into a Spooky Face for Halloween</title>
		<link>http://sheekgeek.org/2011/jessicasheekgeek/besthalloweendecorationsever</link>
		<comments>http://sheekgeek.org/2011/jessicasheekgeek/besthalloweendecorationsever#comments</comments>
		<pubDate>Sun, 23 Oct 2011 17:20:27 +0000</pubDate>
		<dc:creator>Jessica@SheekGeek</dc:creator>
				<category><![CDATA[Adventures in DIY]]></category>
		<category><![CDATA[Home Sweet Home]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[decorating]]></category>
		<category><![CDATA[faces]]></category>
		<category><![CDATA[garage]]></category>
		<category><![CDATA[garbage bags]]></category>
		<category><![CDATA[halloween]]></category>
		<category><![CDATA[halloween decoration]]></category>
		<category><![CDATA[house]]></category>

		<guid isPermaLink="false">http://sheekgeek.org/?p=1018</guid>
		<description><![CDATA[Many people think the fronts of cars look life faces.  There is even an entire Flickr set devoted to car faces!  Well, ever since I saw my house for this first time, I thought my house look like a face.  The windows are perfect eyes and the garage looks like a mouth.

I needed to put my anthropomorphic house theory to the test. (Yes, I had to look up how to spell anthropomorphic.)  For Halloween, I decided to use my house face palette to create a scary face.  Adam and I ...]]></description>
			<content:encoded><![CDATA[<p>Many people think the fronts of cars look life faces.  There is even an entire Flickr set devoted to <a title="Car Faces" href="http://www.flickr.com/photos/fine-cars/sets/117102/">car faces</a>!  Well, ever since I saw my house for this first time, I thought my house look like a face.  The windows are perfect eyes and the garage looks like a mouth.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/10/The-Palette.jpg"><img class="aligncenter size-full wp-image-1031" title="The Palette" src="http://sheekgeek.org/wp-content/uploads/2011/10/The-Palette.jpg" alt="House Starting Point" width="448" height="336" /></a></p>
<p>I needed to put my anthropomorphic house theory to the test. (Yes, I had to look up how to spell anthropomorphic.)  For Halloween, I decided to use my house face palette to create a scary face.  Adam and I had different visions for our beauty, so we sketched out our ideas using paint to end our squabble.  Yes we are that anal retentive.  Our ideas were:</p>
<p style="text-align: center;"><a href="http://sheekgeek.org/wp-content/uploads/2011/10/White-Teeth.jpg"><img class="aligncenter size-full wp-image-1032" title="White Teeth" src="http://sheekgeek.org/wp-content/uploads/2011/10/White-Teeth.jpg" alt="White Teeth" width="367" height="336" /></a>Idea 1: White Pointy Teeth with Black Background</p>
<p style="text-align: center;"><a href="http://sheekgeek.org/wp-content/uploads/2011/10/Square-White-Teeth.jpg"><img class="aligncenter size-full wp-image-1030" title="Square White Teeth" src="http://sheekgeek.org/wp-content/uploads/2011/10/Square-White-Teeth.jpg" alt="White Square Teeth for House" width="369" height="336" /></a>Idea 2: White Square Teeth with Black Background</p>
<p style="text-align: center;"><a href="http://sheekgeek.org/wp-content/uploads/2011/10/Square-Black-Teeth.jpg"><img class="aligncenter size-full wp-image-1029" title="Square Black Teeth" src="http://sheekgeek.org/wp-content/uploads/2011/10/Square-Black-Teeth.jpg" alt="Square Black Teeth" width="369" height="336" /></a>Idea 3: Black Square Teeth</p>
<p style="text-align: center;"><a href="http://sheekgeek.org/wp-content/uploads/2011/10/Black-Teeth.jpg"><img class="aligncenter size-full wp-image-1019" title="Black Teeth" src="http://sheekgeek.org/wp-content/uploads/2011/10/Black-Teeth.jpg" alt="Black Pointy Teeth " width="373" height="336" /></a>Idea 4: Black Pointy Teeth</p>
<p style="text-align: left;">Although we thought Idea 1 would likely look the best, we decided to go with Idea 4.  We figured cutting out black teeth would be easier than trying to create a black background.  This is how we did it.</p>
<p style="text-align: left;"><strong>Materials:</strong></p>
<ul>
<li>Big Black Garbage Bags</li>
<li>Permanent Double Sided Tape</li>
</ul>
<p><strong>Tools:</strong></p>
<ul>
<li>Good Quality Scissors</li>
</ul>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/10/Cutting-Triangles.jpg"><img class="aligncenter size-full wp-image-1020" title="Cutting Triangles" src="http://sheekgeek.org/wp-content/uploads/2011/10/Cutting-Triangles.jpg" alt="Cutting Triangles" width="448" height="336" /></a>We cut the edges off each garbage bag to create black squares of material.  From there, we cut out isosceles triangle shapes to use as the teeth.  We didn&#8217;t measure any sizes, but we did use the square pattern in our garage door to measure sizes.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/10/Progress.jpg"><img class="aligncenter size-full wp-image-1028" title="Progress" src="http://sheekgeek.org/wp-content/uploads/2011/10/Progress.jpg" alt="Progress" width="448" height="336" /></a>In the two top windows, we added a pupil to add to the eye effect.  Using the double sided tape, we put up each tooth one at a time.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/10/Progress-2.jpg"><img class="aligncenter size-full wp-image-1025" title="Progress 2" src="http://sheekgeek.org/wp-content/uploads/2011/10/Progress-2.jpg" alt="Progress 2" width="448" height="336" /></a>Because we didn&#8217;t officially measure the teeth sizes, the last two teeth had to be cut smaller to make them fit.  We did this to the last two teeth so there wouldn&#8217;t be one tooth that was noticeably smaller than the rest. This way the overall visual sizes of the teeth look balanced.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/10/Progress-3.jpg"><img class="aligncenter size-full wp-image-1026" title="Progress 3" src="http://sheekgeek.org/wp-content/uploads/2011/10/Progress-3.jpg" alt="Progress 3" width="448" height="336" /></a>More double sided tape was used on the bottom teeth than the top because we were concerned water or wind might more easily remove these teeth.  The bags had a bit of static cling which also helped them stick to the garage door nicely.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/10/My-Scary-Face-House.jpg"><img class="aligncenter size-full wp-image-1023" title="My Scary Face House" src="http://sheekgeek.org/wp-content/uploads/2011/10/My-Scary-Face-House.jpg" alt="My Scary Face House" width="448" height="336" /></a>We lost daylight pretty quickly, but I couldn&#8217;t help but snap a nighttime shot.  Of course that adds to the drama of our scary faced house!</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/10/Finale-1.jpg"><img class="aligncenter size-full wp-image-1021" title="Finale 1" src="http://sheekgeek.org/wp-content/uploads/2011/10/Finale-1.jpg" alt="My Scary Face House in Daytime" width="448" height="336" /></a>Here is a daytime shot from the next day.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/10/My-Scary-Face-House.jpg"></a><a href="http://sheekgeek.org/wp-content/uploads/2011/10/Finale-2.jpg"><img class="aligncenter size-full wp-image-1022" title="Finale 2" src="http://sheekgeek.org/wp-content/uploads/2011/10/Finale-2.jpg" alt="My Scary Face House in the Daytime" width="448" height="336" /></a></p>
<p>Overall this was an easy and fun project.  It only took Adam and I less than an hour to complete the entire project, including creating idea sketches in paint.  Can you turn your house into a face?  Send us your results!</p>
]]></content:encoded>
			<wfw:commentRss>http://sheekgeek.org/2011/jessicasheekgeek/besthalloweendecorationsever/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIY Home Rug Roundup</title>
		<link>http://sheekgeek.org/2011/jessicasheekgeek/diy-home-rug-roundup</link>
		<comments>http://sheekgeek.org/2011/jessicasheekgeek/diy-home-rug-roundup#comments</comments>
		<pubDate>Tue, 17 May 2011 02:55:59 +0000</pubDate>
		<dc:creator>Jessica@SheekGeek</dc:creator>
				<category><![CDATA[Adventures in DIY]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Home Sweet Home]]></category>

		<guid isPermaLink="false">http://sheekgeek.org/?p=984</guid>
		<description><![CDATA[Our future plans involve laying down hardwood in our entire home.  Since  the carpet that currently exists still has some life left, I don&#8217;t want  to replace it until it is necessary (oh the suspense is killing me; but  I think it is practical to do major redesigns when they are warranted  and not just because you want to).  Anyway, my point is we are going to  need to start building up a rug collection for when we have hardwoods.
Because there is tons of fun ...]]></description>
			<content:encoded><![CDATA[<p>Our future plans involve laying down hardwood in our entire home.  Since  the carpet that currently exists still has some life left, I don&#8217;t want  to replace it until it is necessary (oh the suspense is killing me; but  I think it is practical to do major redesigns when they are warranted  and not just because you want to).  Anyway, my point is we are going to  need to start building up a rug collection for when we have hardwoods.</p>
<p>Because there is tons of fun in doing-it-yourself, I scoured the internet for diy rug options.  I was pleasantly surprised at all the choices I found.  They really push the boundaries of the the term &#8220;<a href="http://www.merriam-webster.com/dictionary/rug" target="_blank">rug</a>&#8220;.  Because sewing doesn&#8217;t agree with me and braiding/crocheting  seems time consuming &#8211; these are options I think would be simplest to do.</p>
<p><em>Plywood Rugs</em></p>
<p>I discovered my most favorite unexpected rug option at Sugar Bee Crafts -you can <a href="http://www.sugarbeecrafts.com/2011/03/plywood-rug.html" target="_blank">make a &#8216;rug&#8217; out of plywood</a>!  Oh the options for a plywood rug!  You can stain it or paint it (or both).  You can use stencils or tape.  You can make it fit your style. (The vinyl rug below has the same customization options).</p>
<p><a href="http://www.sugarbeecrafts.com/2011/03/plywood-rug.html"><img class="size-full wp-image-997 aligncenter" title="Plywood Rug" src="http://sheekgeek.org/wp-content/uploads/2011/05/042-copy.png" alt="Plywood Rug" width="400" height="267" /></a></p>
<p>At our old place we had a low pile carpet.  Office chairs roll nicely  over this carpet.  Our new house&#8217;s carpet, not so much.  This plywood rug might just be the ticket for this space!</p>
<p><em>Vinyl Rugs</em></p>
<p>The thing I love the most about vinyl rugs is the potential of putting a remnant piece of vinyl to good use.  Based on the tutorials I read, any vinyl will work; however a thicker vinyl is a must.  You can either <a href="http://blog.addicted2decorating.com/2011/04/diy-project-hand-painted-floor-cloth.html" target="_blank">paint vinyl like Addicted 2 Decorating&#8217;s post</a> (pictured below) and <a href=" http://designdazzle.blogspot.com/2009/05/painted-floor-rug-diy.html" target="_blank">Design Dazzle&#8217;s post</a> or&#8230;</p>
<p><a href="http://blog.addicted2decorating.com/2011/04/diy-project-hand-painted-floor-cloth.html"><img class="size-full wp-image-998 aligncenter" title="hand painted floor cloth" src="http://sheekgeek.org/wp-content/uploads/2011/05/hand-painted-floor-cloth-22_thumb.jpg" alt="Hand Painted Vinyl Rug" width="304" height="405" /></a></p>
<p>Or you can cover vinyl with <a href="http://inmyownstyle.com/2011/02/how-to-make-a-custom-rug-out-of-fabric.html" target="_blank">fabric like In My Own Style</a>.</p>
<p><a href="http://inmyownstyle.com/2011/02/how-to-make-a-custom-rug-out-of-fabric.html"><img class="size-full wp-image-1001 aligncenter" title="Finished-Rug-for-Foyer_thumb" src="http://sheekgeek.org/wp-content/uploads/2011/05/Finished-Rug-for-Foyer_thumb.jpg" alt="Fabric Covered Vinyl Rug" width="310" height="243" /></a></p>
<p>I am also in love with <a href="http://www.momtastic.com/home-and-living/home/127539-diy-rug">Momtastic&#8217;s quatrefoil version of a fabric vinyl rug</a>.</p>
<p><a href="http://www.momtastic.com/home-and-living/home/127539-diy-rug"><img class="aligncenter size-full wp-image-1004" title="Quatrefoil Vinyl Rug" src="http://sheekgeek.org/wp-content/uploads/2011/05/110304-rug2.jpg" alt="Fabric Vinyl Rug" width="371" height="278" /></a><em> </em></p>
<p><em>Fabric Rugs</em></p>
<p>Staying on a fabric roll, fabric rugs also have a lot of simple, diy options.  You can simply add a backing and lining to fabric you heart like <a href="http://high-heelfootinthedoor.blogspot.com/2010/04/diy-chevron-rug.html">High-Heeled Foot in the Door&#8217;s chevron beaut</a>.</p>
<p><a href="http://high-heelfootinthedoor.blogspot.com/2010/04/diy-chevron-rug.html"><img class="aligncenter size-full wp-image-1005" title="Chevron Fabric Rug" src="http://sheekgeek.org/wp-content/uploads/2011/05/DSC03295_thumb1.jpg" alt="DIY Fabric Rug" width="361" height="275" /></a></p>
<p>Rugs are not just meant for indoors.  An outdoor burlap rug is featured on <a href="http://www.ohdeedoh.com/ohdeedoh/how-to/easy-diy-outdoor-rughow-to-120562">ohdeedoh&#8217;s how to post</a>. One of the easiest rug options is to update an existing fabric rug with a little paint <a href="http://baltares.blogspot.com/2010/11/diy-painted-rug.html" target="_blank">like Sarah Wandering did here</a>.</p>
<p><a href="http://baltares.blogspot.com/2010/11/diy-painted-rug.html"><img class="aligncenter size-full wp-image-1007" title="Painted Rug" src="http://sheekgeek.org/wp-content/uploads/2011/05/Image-119-copy.jpg" alt="Painted Rug" width="364" height="484" /></a><a href="http://alittlebiteofeverything.com/2010/09/an-ikea-rug-makeover/" target="_blank"></a></p>
<p><a href="http://alittlebiteofeverything.com/2010/09/an-ikea-rug-makeover/" target="_blank">Or like A Little Bite of Everything&#8217;s Moroccan inspired design here.</a> It is fab and super simple.  The only color painted on was the white for the pattern. LOVE IT!</p>
<p><a href="http://alittlebiteofeverything.com/2010/09/an-ikea-rug-makeover/"><img class="aligncenter size-full wp-image-1008" title="DIY Painted Rug" src="http://sheekgeek.org/wp-content/uploads/2011/05/IMG_3338-e1283460262558-768x1024.jpg" alt="Easy DIY painted rug" width="345" height="458" /></a></p>
<p>Roll Up Blind Rug</p>
<p>To add the cherry to this post, the easiest DIY rug I found was <a href="http://www.re-nest.com/re-nest/diy/easy-diy-repurposed-rollerblind-rug-142884" target="_blank">Re-nest&#8217;s idea of converting a roll up blind</a> to a floor covering.  Very chic!</p>
<p><a href="http://www.re-nest.com/re-nest/diy/easy-diy-repurposed-rollerblind-rug-142884"><img class="aligncenter size-full wp-image-1009" title="Roll Up Blind Rug" src="http://sheekgeek.org/wp-content/uploads/2011/05/30-3-11-mpetrella02_rect540.jpg" alt="Roll Up Blind DIY RUG" width="301" height="402" /></a></p>
<p>So which rug am I going to make?  Right now I want to make them ALL!  They are added to my ever growing home to do list&#8230;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://sheekgeek.org/2011/jessicasheekgeek/diy-home-rug-roundup/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Skywriting: Drawing Light Pictures</title>
		<link>http://sheekgeek.org/2011/jessicasheekgeek/skywriting-drawing-light-pictures</link>
		<comments>http://sheekgeek.org/2011/jessicasheekgeek/skywriting-drawing-light-pictures#comments</comments>
		<pubDate>Sun, 16 Jan 2011 14:00:17 +0000</pubDate>
		<dc:creator>Jessica@SheekGeek</dc:creator>
				<category><![CDATA[Adventures in DIY]]></category>
		<category><![CDATA[digital photography]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[led light]]></category>
		<category><![CDATA[light writing]]></category>
		<category><![CDATA[long exposure]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[skywriting]]></category>
		<category><![CDATA[slr camera]]></category>

		<guid isPermaLink="false">http://sheekgeek.org/?p=531</guid>
		<description><![CDATA[Creating led light drawings using a camera is a snap!  All you need is a camera (with the ability to set long exposure times) and a tripod (We actually used a table!).  Most of the pictures we took had shutter speeds ranging from 20 to 60 seconds; however, even shutter speeds as short as 4 seconds can work (you just have less time to draw!).  The camera we used for this project is my trusty (and no longer manufactured) Panasonic DMC-FZ30.  See more example pictures and tips after the jump.
 ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://sheekgeek.org/wp-content/uploads/2010/08/treeandsky1.jpg"><img class="alignleft size-full wp-image-553" title="Tree and Sky LED Photograph" src="http://sheekgeek.org/wp-content/uploads/2010/08/treeandsky1.jpg" alt="Tree and Sky LED Photograph Example" width="206" height="198" /></a>Creating led light drawings using a camera is a snap!  All you need is a camera (with the ability to set long exposure times) and a tripod (We actually used a table!).  Most of the pictures we took had shutter speeds ranging from 20 to 60 seconds; however, even shutter speeds as short as 4 seconds can work (you just have less time to draw!).  The camera we used for this project is my trusty (and no longer manufactured) <a href="http://www.dpreview.com/reviews/panasonicfz30/">Panasonic DMC-FZ30</a>.  See more example pictures and tips after the jump.</p>
<p><span id="more-531"></span> <strong> </strong></p>
<ul>
<li><strong>Tip:</strong> Plan out your drawing and practice it first.</li>
</ul>
<p>20 seconds is not as long as it seems.  If you are planning to draw an elaborate picture or write out a few words &#8211; you will quickly run into obstacles.  Time and space are the limiting factors, so plan accordingly.  It embarrassingly took me a few  trials to get the letter &#8220;S&#8221; orientated in the right direction.</p>
<p style="text-align: left;"><a href="http://sheekgeek.org/wp-content/uploads/2010/08/sheekgeekbackwards.jpg"><img class="size-full wp-image-546 aligncenter" title="SheekGeek Backwards S" src="http://sheekgeek.org/wp-content/uploads/2010/08/sheekgeekbackwards.jpg" alt="SheekGeek Backwards S Example" width="371" height="219" /></a><strong></strong></p>
<ul>
<li><strong>Tip: </strong>Work with a partner!</li>
</ul>
<p style="text-align: left;">Divide and conquer is the idea.  I decided to write the word &#8220;Sheek&#8221; at the top of the picture space and Adam decided to write the word &#8220;Geek&#8221; at the bottom.</p>
<p style="text-align: left;"><a href="http://sheekgeek.org/wp-content/uploads/2010/08/sheekgeekteamwork.jpg"><img class="aligncenter size-full wp-image-545" title="SheekGeek Teamwork" src="http://sheekgeek.org/wp-content/uploads/2010/08/sheekgeekteamwork.jpg" alt="SheekGeek Teamwork Example" width="284" height="308" /></a></p>
<ul>
<li><strong>Tip: </strong>Use a very dark space.</li>
</ul>
<p style="text-align: left;">The two above &#8220;SheekGeek&#8221; pictures are the result of ambient light infiltrating our photos.  After cutting off all lights in the area, the resulting backgrounds were much darker.  Changing F stop and ISO settigngs can also help.</p>
<p style="text-align: left;"><a href="http://sheekgeek.org/wp-content/uploads/2010/08/puppy.jpg"></a><a href="http://sheekgeek.org/wp-content/uploads/2010/08/puppy1.jpg"><img class="aligncenter size-full wp-image-548" title="Puppy LED Photography" src="http://sheekgeek.org/wp-content/uploads/2010/08/puppy1.jpg" alt="Puppy LED Photography Example" width="256" height="199" /></a></p>
<ul>
<li><strong>Tip:</strong> Use different color LEDs.</li>
</ul>
<p style="text-align: left;">The red and blue pictures are the result of using an LED that blinks red and blue.  Other colors can be combined to create really creative designs.</p>
<p style="text-align: left;"><a href="http://sheekgeek.org/wp-content/uploads/2010/08/sheek.jpg"><img class="aligncenter size-full wp-image-538" title="Sheek" src="http://sheekgeek.org/wp-content/uploads/2010/08/sheek.jpg" alt="Sheek" width="292" height="180" /></a></p>
<p style="text-align: left;"><a href="http://sheekgeek.org/wp-content/uploads/2010/08/geek.jpg"><img class="aligncenter size-full wp-image-536" title="Geek" src="http://sheekgeek.org/wp-content/uploads/2010/08/geek.jpg" alt="Geek" width="296" height="179" /></a></p>
<p style="text-align: left;"><a href="http://sheekgeek.org/wp-content/uploads/2010/08/dotorg.jpg"><img class="aligncenter size-full wp-image-535" title="Dot org" src="http://sheekgeek.org/wp-content/uploads/2010/08/dotorg.jpg" alt="Dot org" width="227" height="133" /></a></p>
<p style="text-align: left;">It was great amusement to create these pictures.  I encourage you try this project out.  Provided you already have the materials needed, view it as a couple of free hours of entertainment ;0).</p>
]]></content:encoded>
			<wfw:commentRss>http://sheekgeek.org/2011/jessicasheekgeek/skywriting-drawing-light-pictures/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Duct Tape Chair</title>
		<link>http://sheekgeek.org/2011/jessicasheekgeek/creating-a-duct-tape-chair</link>
		<comments>http://sheekgeek.org/2011/jessicasheekgeek/creating-a-duct-tape-chair#comments</comments>
		<pubDate>Wed, 12 Jan 2011 13:00:58 +0000</pubDate>
		<dc:creator>Jessica@SheekGeek</dc:creator>
				<category><![CDATA[Adventures in DIY]]></category>
		<category><![CDATA[Furniture]]></category>
		<category><![CDATA[PVC]]></category>
		<category><![CDATA[dome chair]]></category>
		<category><![CDATA[duct tape]]></category>
		<category><![CDATA[furniture]]></category>
		<category><![CDATA[nashua]]></category>
		<category><![CDATA[refurnishing]]></category>

		<guid isPermaLink="false">http://sheekgeek.org/?p=807</guid>
		<description><![CDATA[I purchased a dome chair from a big box store last year and it didn&#8217;t hold up very well.  The chair part ripped and fell of the frame.  Since the frame was still left intact, I didn&#8217;t want to throw it away -so I reused it to make a new chair.  Using duct tape (the best duct tape of all &#8211; Nashua 357), I created a new frame for the chair.  This project was quick, cheap, and easy; it used less than $10 in materials and only an hour of ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://sheekgeek.org/wp-content/uploads/2011/01/aligning-the-duct-tape.jpg"><img class="alignleft size-full wp-image-808" title="aligning the duct tape" src="http://sheekgeek.org/wp-content/uploads/2011/01/aligning-the-duct-tape.jpg" alt="" width="192" height="174" /></a>I purchased a dome chair from a big box store last year and it didn&#8217;t hold up very well.  The chair part ripped and fell of the frame.  Since the frame was still left intact, I didn&#8217;t want to throw it away -so I reused it to make a new chair.  Using duct tape (the best duct tape of all &#8211; Nashua 357), I created a new frame for the chair.  This project was quick, cheap, and easy; it used less than $10 in materials and only an hour of my time.  The result is a chair that is much sturdier than the original I purchased.  <span id="more-807"></span></p>
<p>Materials:</p>
<ul>
<li>1 Old Dome Chair Frame</li>
<li>2 Pieces of PVC Pipe (to serve as a base for making a seat)</li>
<li>Less than 1 roll of Nashua 357 Duct Tape</li>
<li>Scissors</li>
</ul>
<p>This is the dome chair I used for this project.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/01/the-dome-chair-frame.jpg"><img class="aligncenter size-medium wp-image-815" title="the dome chair frame" src="http://sheekgeek.org/wp-content/uploads/2011/01/the-dome-chair-frame-300x257.jpg" alt="" width="300" height="257" /></a></p>
<p>The first thing I did was make the seat.  I wrapped the duct tape around the PVC pipe three times to add strength.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/01/creating-the-seat.jpg"><img class="aligncenter size-medium wp-image-811" title="creating the seat" src="http://sheekgeek.org/wp-content/uploads/2011/01/creating-the-seat-300x218.jpg" alt="" width="300" height="218" /></a>Next I positioned the seat into the dome chair and attached it to the front of the chair.  Adam helped and having two sets of hands really helped hold each part in place.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/01/attaching-teh-seat.jpg"><img class="aligncenter size-medium wp-image-810" title="attaching teh seat" src="http://sheekgeek.org/wp-content/uploads/2011/01/attaching-teh-seat-300x224.jpg" alt="" width="300" height="224" /></a>Then I attached the seat to the back of the chair.  To ensure comfort, I made sure the seat hung down in the back.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/01/the-start.jpg"><img class="aligncenter size-medium wp-image-817" title="the start" src="http://sheekgeek.org/wp-content/uploads/2011/01/the-start-300x296.jpg" alt="" width="300" height="296" /></a>The chair didn&#8217;t feel sturdy enough, so more braces of tape were added.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/01/almost-finished.jpg"><img class="aligncenter size-medium wp-image-809" title="almost finished" src="http://sheekgeek.org/wp-content/uploads/2011/01/almost-finished-300x250.jpg" alt="" width="300" height="250" /></a>The seat of the chair wasn&#8217;t very comfortable at this point, so more tape was added to help distribute weight.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/01/the-seat-up-close.jpg"><img class="aligncenter size-medium wp-image-816" title="the seat up close" src="http://sheekgeek.org/wp-content/uploads/2011/01/the-seat-up-close-300x224.jpg" alt="" width="300" height="224" /></a>I went through and folded tape over all of the edges.  This eliminated all the sticky tape goo feeling.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/01/finished-chair.jpg"><img class="aligncenter size-medium wp-image-812" title="finished chair" src="http://sheekgeek.org/wp-content/uploads/2011/01/finished-chair-300x293.jpg" alt="" width="300" height="293" /></a>The chair is complete!  It holds my weight easily (see my proof below).  It does need a pillow if you want to lay your head down &#8211; but overall the chair works just fine.  I did attempt to reuse packing material (bubble wrap, in fact) to make a permanent pillow, but Adam said it looked too junky so I decided to stick with an &#8220;old fashioned&#8221; pillow :0).</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2011/01/see-it-works.jpg"><img class="aligncenter size-medium wp-image-814" title="see it works" src="http://sheekgeek.org/wp-content/uploads/2011/01/see-it-works-300x224.jpg" alt="" width="300" height="224" /></a>If you have been wanting to create a duct tape project I say go for it!  This project was quick, easy, cheap, and FUN!</p>
]]></content:encoded>
			<wfw:commentRss>http://sheekgeek.org/2011/jessicasheekgeek/creating-a-duct-tape-chair/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overhanging Desk Work Light</title>
		<link>http://sheekgeek.org/2011/adamsheekgeek/overhanging-desk-work-light</link>
		<comments>http://sheekgeek.org/2011/adamsheekgeek/overhanging-desk-work-light#comments</comments>
		<pubDate>Mon, 10 Jan 2011 19:50:40 +0000</pubDate>
		<dc:creator>Adam@SheekGeek</dc:creator>
				<category><![CDATA[Adventures in DIY]]></category>
		<category><![CDATA[Our Hobby Business]]></category>
		<category><![CDATA[PVC]]></category>

		<guid isPermaLink="false">http://sheekgeek.org/?p=781</guid>
		<description><![CDATA[The SheekGeek office doesn&#8217;t have very good lighting and because of this, working on things at my work desk is always tough.  I&#8217;ve tried a lot of different solutions to this problem such as the lighted helping hands set-up, sitting a small fluorescent light on top of my parts organizer, and even hanging the lamp from a couple of the bins on the top row of the parts organizer.  None of these provided a good solution.  The fluorescent lamp was rather blinding, and with every solution, my hands cast shadows ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://sheekgeek.org/wp-content/uploads/2011/01/P1110849_small_small_small.jpg"><img class="size-medium wp-image-783 alignleft" title="P1110849_small_small_small" src="http://sheekgeek.org/wp-content/uploads/2011/01/P1110849_small_small_small-300x225.jpg" alt="" width="300" height="225" /></a>The SheekGeek office doesn&#8217;t have very good lighting and because of this, working on things at my work desk is always tough.  I&#8217;ve tried a lot of different solutions to this problem such as the lighted helping hands set-up, sitting a small fluorescent light on top of my parts organizer, and even hanging the lamp from a couple of the bins on the top row of the parts organizer.  None of these provided a good solution.  The fluorescent lamp was rather blinding, and with every solution, my hands cast shadows on what I&#8217;m working on.  This lead me to finally come up with a great working solution to my problem that casts no shadows.</p>
<p>A couple of years ago when I wrote for <a href="http://hackaday.com/">Hackaday</a> I did an article about the <a href="http://hackaday.com/2008/08/05/how-to-the-hackers-soldering-station/">Hacker&#8217;s Soldering Station</a>. Since then, that station became too bulky and impractical for my office.  I needed something that was easier to move, or possibly break down to take up less space.  I looked around at what I had on hand and slapped together this quick fix that is the perfect solution for my needs.</p>
<p><span id="more-781"></span></p>
<p>For parts, I gathers a bunch of scrap 3/4&#8243; PVC pipe and pipe connectors, a 24&#8243; long fluorescent lamp (actually recycled for the hacker&#8217;s soldering station project), two screws and some zip ties.<br />
<a href="http://sheekgeek.org/wp-content/uploads/2011/01/P1110831_small_small_small.jpg"><img class="alignnone size-medium wp-image-785" title="P1110831_small_small_small" src="http://sheekgeek.org/wp-content/uploads/2011/01/P1110831_small_small_small-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The first thing I did was to gather and arrange my parts.  Once you are sure how you want the thing to work, then cut all the pieces to length.  The pic below shows that I had to splice together a few smaller pieces to math the length of the lamp.  be sure to leave enough room for the power cable for the lamp (the extra length of pipe on the right-hand side in this pic).  Mark where the screw holes need to be with a permanent marker.<br />
<a href="http://sheekgeek.org/wp-content/uploads/2011/01/841.jpeg"><img class="alignnone size-medium wp-image-784" title="841" src="http://sheekgeek.org/wp-content/uploads/2011/01/841-300x71.jpg" alt="" width="300" height="71" /></a></p>
<p>Using one of mankind&#8217;s greatest inventions, the step drill, drill out a hole large  enough for one end of the power cable of the fluorescent lamp to fit through into one of the 90 degree L bends.<br />
<a href="http://sheekgeek.org/wp-content/uploads/2011/01/P1110844.jpg"><img class="alignnone size-medium wp-image-789" title="P1110844" src="http://sheekgeek.org/wp-content/uploads/2011/01/P1110844-300x199.jpg" alt="" width="300" height="199" /></a> <a href="http://sheekgeek.org/wp-content/uploads/2011/01/P1110848.jpeg"><img class="alignnone size-full wp-image-791" title="P1110848" src="http://sheekgeek.org/wp-content/uploads/2011/01/P1110848.jpeg" alt="" width="245" height="200" /></a></p>
<p>Again, using the step drill,drill a small starter hole in each of the PVC pipes you marked for the screw holes.<br />
<a href="http://sheekgeek.org/wp-content/uploads/2011/01/P1110833.jpeg"><img class="alignnone size-medium wp-image-786" title="P1110833" src="http://sheekgeek.org/wp-content/uploads/2011/01/P1110833-300x115.jpg" alt="" width="300" height="115" /></a></p>
<p>Make the two side supporting bars by making two T shapes.  The longest pieces of PVC should be the center support of the T.</p>
<p>Now put it all together and feed the power cable through the pipe. put the screws in the screw holes and place and hang the lamp on them. I added some zip ties to make sure it didn&#8217;t fall off while I&#8217;m working under it.  Here you can see the extra piece I added on the bottom, back left.  I added this for extra support since that side is closest to the edge of the table.</p>
<p>Since there is no glue involved in this project, it can easily break down, but an added bonus to this design is that you can spin the pole the light is attached to.  This allows you to direct it where ever you need it, and add some indirect lighting if you need it.<br />
<a href="http://sheekgeek.org/wp-content/uploads/2011/01/P1110854_small_small_small.jpg"><img class="alignnone size-medium wp-image-794" title="P1110854_small_small_small" src="http://sheekgeek.org/wp-content/uploads/2011/01/P1110854_small_small_small-300x225.jpg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sheekgeek.org/2011/adamsheekgeek/overhanging-desk-work-light/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create an Instrument &#8211; Easier than Lemon Pie</title>
		<link>http://sheekgeek.org/2010/jessicasheekgeek/lemoninstrumen</link>
		<comments>http://sheekgeek.org/2010/jessicasheekgeek/lemoninstrumen#comments</comments>
		<pubDate>Mon, 20 Dec 2010 20:30:00 +0000</pubDate>
		<dc:creator>Jessica@SheekGeek</dc:creator>
				<category><![CDATA[Adventures in DIY]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[instrument]]></category>
		<category><![CDATA[lemon juice container]]></category>

		<guid isPermaLink="false">http://sheekgeek.org/?p=757</guid>
		<description><![CDATA[After baking a cheesecake, my husband cut off the top to the lemon juice container.  It turns out that the resulting plastic container creates the perfect jug-like instrument.  Because it is plastic you can easily squeeze the &#8220;lemon&#8221; to create different sounds.  Just like a real jug instrument, you can also add water to make different notes.  I wonder if you can add holes to create a ocarina-like instrument?  Perhaps that will be another post&#8230; Cutting off the top is easy.  You can use a kitchen knife or other cutting ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://sheekgeek.org/wp-content/uploads/2010/12/lemonjuicecontainer.jpg"><img class="alignleft size-full wp-image-758" title="lemonjuicecontainer" src="http://sheekgeek.org/wp-content/uploads/2010/12/lemonjuicecontainer.jpg" alt="" width="314" height="164" /></a>After baking a cheesecake, my husband cut off the top to the lemon juice container.  It turns out that the resulting plastic container creates the perfect jug-like instrument.  Because it is plastic you can easily squeeze the &#8220;lemon&#8221; to create different sounds.  Just like a real jug instrument, you can also add water to make different notes.  I wonder if you can add holes to create a ocarina-like instrument?  Perhaps that will be another post&#8230; <span id="more-757"></span>Cutting off the top is easy.  You can use a kitchen knife or other cutting utensil.  Just be careful!  To play, simply purse your lips and blow air across the top hole.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2010/12/lemoncontainercut.jpg"><img class="aligncenter size-medium wp-image-759" title="lemoncontainercut" src="http://sheekgeek.org/wp-content/uploads/2010/12/lemoncontainercut-300x240.jpg" alt="" width="300" height="240" /></a>That&#8217;s it for a handy tip on one way to reuse lemon juice containers.  Have fun and send in pictures or links to videos of your results.</p>
]]></content:encoded>
			<wfw:commentRss>http://sheekgeek.org/2010/jessicasheekgeek/lemoninstrumen/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom PVC Banner Holder for about $15</title>
		<link>http://sheekgeek.org/2010/adamsheekgeek/custom-pvc-banner-holder-for-about-15</link>
		<comments>http://sheekgeek.org/2010/adamsheekgeek/custom-pvc-banner-holder-for-about-15#comments</comments>
		<pubDate>Wed, 01 Dec 2010 02:19:27 +0000</pubDate>
		<dc:creator>Adam@SheekGeek</dc:creator>
				<category><![CDATA[Adventures in DIY]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Our Hobby Business]]></category>
		<category><![CDATA[PVC]]></category>

		<guid isPermaLink="false">http://sheekgeek.org/?p=745</guid>
		<description><![CDATA[For a while now, we have been doing our museum shows, Geekfests, and Makerfaires. At each event, we always have a problem displaying our 8 foot SheekGeek.com banner. For years we&#8217;ve basically taped the banner to the front of our table but no one can really see it, especially when we get busy and there are several layers of people in front of the table. In recent event we&#8217;ve been taping it behind the table on a wall. This doesn&#8217;t always work because we aren&#8217;t always in front of a ...]]></description>
			<content:encoded><![CDATA[<p><!-- p { margin-bottom: 0.08in; } --><a href="http://sheekgeek.org/wp-content/uploads/2010/11/PVC5.jpeg"><img class="alignleft size-medium wp-image-742" title="PVC5" src="http://sheekgeek.org/wp-content/uploads/2010/11/PVC5-300x189.jpg" alt="" width="300" height="189" /></a>For a while now, we have been doing our museum shows, Geekfests, and Makerfaires. At each event, we always have a problem displaying our 8 foot SheekGeek.com banner. For years we&#8217;ve basically taped the banner to the front of our table but no one can really see it, especially when we get busy and there are several layers of people in front of the table. In recent event we&#8217;ve been taping it behind the table on a wall. This doesn&#8217;t always work because we aren&#8217;t always in front of a wall.  When we do luck out and get a wall behind us, we can&#8217;t always use it to tape up the banner.  Looking for a portable solution to hold the banner behind us at a table, we found a few designs for a PVC banner holder.</p>
<p><span id="more-745"></span> It might not be well known to you guys, but I <strong><em>love</em></strong> PVC. It is the perfect medium in many cases for all sorts of neat furniture and DIY projects.  Anyway, let&#8217;s get started. While searching for a design, I stumbled across <a href="http://www.weddingbee.com/2010/08/23/build-your-own-photo-booth/ ">this great site</a> that uses a PVC stand to hold up photography backdrops. This is the perfect design! In fact, that is what our banner holder will double as when Jessi wants to take pictures.</p>
<p>To start, we held the banner up on a wall at about the height we wanted the final product to be. We measured the height from the ground to the top of the banner. This was about 6 foot 3 inches.  We then measured the banner we expected to hold up. It was 97 inches long (8 foot 1 inch) by 24 inches wide.   With this in mind, we added a couple of inches to each of the measurements and calculated the lengths of PVC we were going to use.  The final measurements are shown in the sketchup screenshot below or feel free to <a href="http://sketchup.google.com/3dwarehouse/details?mid=51741c371f26a913e2fdada4a65c914c">download the sketchup file from the 3D Warehouse</a>.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2010/11/banner1.jpg"></a><a href="http://sheekgeek.org/wp-content/uploads/2010/11/banner1.jpg"><img class="aligncenter size-medium wp-image-752" title="banner1" src="http://sheekgeek.org/wp-content/uploads/2010/11/banner1-300x177.jpg" alt="" width="300" height="177" /></a></p>
<p style="text-align: center;">Click the pic above for a screenshot with the measurements.</p>
<p>Luckily I had a bunch of 3/4&#8243; diameter PVC fittings lying around from a previous project so we decided on using them. This lead us to choosing 3/4&#8243; PVC as our building material. To hold the banner up, we used a combination of small rope and S-hooks. these together cost somewhere around $4.00.  I had to bend the S-hooks a bit because I wanted something that would stay on the PVC and I could just hang the banner on once everything was set up.</p>
<p>Enough chatting, here&#8217;s the pics:</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2010/11/PVC.jpeg"><img class="aligncenter size-medium wp-image-738" title="Raw PVC" src="http://sheekgeek.org/wp-content/uploads/2010/11/PVC-300x188.jpg" alt="" width="300" height="188" /></a></p>
<p>We used about 4.5 pieces of 10-foot 3/4&#8243; PVC.  It only cost about $8.00. Simply cut these to length using a PVC cutting tool or do what we did and use a dollar store hacksaw. Both tools work well.</p>
<p>We made fine adjustments to the measurements as we went to make the banner look better.  I recommend doing this for your own project.  Also, if you are unsure, always cut <strong><em>longer</em><em></em></strong> pieces than you need by a couple inches.  You can always shorten them up, but you can never make them longer if you cut them too short.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2010/11/PVC4.jpeg"><img class="aligncenter size-medium wp-image-741" title="PVC4" src="http://sheekgeek.org/wp-content/uploads/2010/11/PVC4-300x162.jpg" alt="" width="300" height="162" /></a></p>
<p>After everything is cut to length, simply put it all together. Below are the knots I used to hand the S-hooks.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2010/11/PVC7.jpeg"><img class="size-medium wp-image-744 alignnone" title="PVC7" src="http://sheekgeek.org/wp-content/uploads/2010/11/PVC7-300x297.jpg" alt="" width="279" height="233" /></a> <a href="http://sheekgeek.org/wp-content/uploads/2010/11/PVC6.jpeg"><img class="size-medium wp-image-743 alignnone" title="PVC6" src="http://sheekgeek.org/wp-content/uploads/2010/11/PVC6-300x248.jpg" alt="" width="282" height="233" /></a></p>
<p>Left shows the front and the right pic shows the back of the center post.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2010/11/PVC2.jpeg"><img class="size-medium wp-image-739 alignnone" title="PVC2" src="http://sheekgeek.org/wp-content/uploads/2010/11/PVC2-300x247.jpg" alt="" width="300" height="247" /></a> <a href="http://sheekgeek.org/wp-content/uploads/2010/11/PVC3.jpeg"><img class="size-medium wp-image-740 alignnone" title="PVC3" src="http://sheekgeek.org/wp-content/uploads/2010/11/PVC3-270x300.jpg" alt="" width="270" height="247" /></a></p>
<p>The left pic here shows the top corner and the right pic shows the bottom.  Notice the gap on the bottom between the banner and the lower PVC pipe.  This is a result of an extra inch or so when I cut. I left this here in case I eventually tie up the banner with rope alone or it becomes loose it will still look nice.</p>
<p><a href="http://sheekgeek.org/wp-content/uploads/2010/11/PVC5.jpeg"><img class="aligncenter size-medium wp-image-742" title="PVC5" src="http://sheekgeek.org/wp-content/uploads/2010/11/PVC5-300x189.jpg" alt="" width="300" height="189" /></a></p>
<p>The finished product!  the next step from here will be to design and build a over the shoulder carrying bag for all the pieces out of ripstop material.</p>
]]></content:encoded>
			<wfw:commentRss>http://sheekgeek.org/2010/adamsheekgeek/custom-pvc-banner-holder-for-about-15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

