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

<channel>
	<title>In a galaxy far far away...</title>
	<atom:link href="http://www.ideasunleashed.org/ben/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ideasunleashed.org/ben</link>
	<description>...my own little world</description>
	<pubDate>Wed, 14 May 2008 14:43:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>The Fibonacci in Lateralus</title>
		<link>http://www.ideasunleashed.org/ben/2008/01/28/the-fibonacci-in-lateralus/</link>
		<comments>http://www.ideasunleashed.org/ben/2008/01/28/the-fibonacci-in-lateralus/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 18:40:33 +0000</pubDate>
		<dc:creator>bwakefield</dc:creator>
		
		<category><![CDATA[Cool and Interesting]]></category>

		<category><![CDATA[Math &amp; Science]]></category>

		<guid isPermaLink="false">http://www.ideasunleashed.org/ben/2008/01/28/the-fibonacci-in-lateralus/</guid>
		<description><![CDATA[Awesome video, definitely worth a watch even if you aren&#8217;t a huge fan of Tool.

http://www.youtube.com/watch?v=wS7CZIJVxFY

]]></description>
			<content:encoded><![CDATA[<p>Awesome video, definitely worth a watch even if you aren&#8217;t a huge fan of Tool.</p>
<div id="vvq4927cdc2212b0" class="vvqbox vvqyoutube" style="width:425px;height:335px;">
<p><a href="http://www.youtube.com/watch?v=wS7CZIJVxFY">http://www.youtube.com/watch?v=wS7CZIJVxFY</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ideasunleashed.org/ben/2008/01/28/the-fibonacci-in-lateralus/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My super-backup adventure!</title>
		<link>http://www.ideasunleashed.org/ben/2007/11/08/my-super-backup-adventure/</link>
		<comments>http://www.ideasunleashed.org/ben/2007/11/08/my-super-backup-adventure/#comments</comments>
		<pubDate>Fri, 09 Nov 2007 02:14:00 +0000</pubDate>
		<dc:creator>bwakefield</dc:creator>
		
		<category><![CDATA[Computers &amp; IT]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ideasunleashed.org/ben/2007/11/08/my-super-backup-adventure/</guid>
		<description><![CDATA[So, a few months ago I embarked on an adventure that involved backing up our production webserver to tape. Yes, tape. A really big, hunk of magnetized plastic. It was a long trip, took way more time than one would think is necessary. First, the Powervault unit was not even powered on, go figure. Then [...]]]></description>
			<content:encoded><![CDATA[<p>So, a few months ago I embarked on an adventure that involved backing up our production webserver to tape. Yes, tape. A really big, hunk of magnetized plastic. It was a long trip, took way more time than one would think is necessary. First, the Powervault unit was not even powered on, go figure. Then a second trip down to the server room reveled that the SCSI cable was not plugged into the correct channel! So after all that was resolved, the trick was getting the data backed up properly. Here is how our data (that needs backed up) is laid out:</p>
<p>/home/clients - all of our clients web files are stored her.<br />
/var/www/[hosted domain] - we have several hosted domains, both from a couple clients and some sites we run ourselves.</p>
<p>We are also making use of <a href="http://sourceforge.net/projects/automysqlbackup/" target="_blank">AutoMySQLbackup</a> and the files that it creates need to be stored long term on the tape as well. So here is what I did&#8230;</p>
<div class="codesnip-container" >
<div class="codesnip"><span class="co1">#####################################################################################</span><br />
<span class="co1"># Server Backup - VAR and HOME</span><br />
<span class="co1"># Create individual tar/gz files</span><br />
<span class="co1">#####################################################################################</span><br />
mkdir /backup/`date +<span class="st0">&#8216;%F-%a&#8217;</span>`<br />
tar -cvvzf /backup/`date +<span class="st0">&#8216;%F-%a&#8217;</span>`/hosteddomain1-www-`date +<span class="st0">&#8216;%F-%a&#8217;</span>`-tar.gz /var/www/hosted1<br />
tar -cvvzf /backup/`date +<span class="st0">&#8216;%F-%a&#8217;</span>`/hosteddomain2-www-`date +<span class="st0">&#8216;%F-%a&#8217;</span>`-tar.gz /var/www/hosted2<br />
tar -cvvzf /backup/`date +<span class="st0">&#8216;%F-%a&#8217;</span>`/clients-`date +<span class="st0">&#8216;%F-%a&#8217;</span>`-tar.gz /home/clients</p>
<p><span class="co1">#####################################################################################</span><br />
<span class="co1"># Write some information to the log file</span><br />
<span class="co1">#####################################################################################</span><br />
<span class="kw3">echo</span> <span class="st0">&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&#8221;</span> &amp;gt;&amp;gt; /home/backup/backup.log<br />
<span class="kw3">echo</span> <span class="st0">&#8220;Full Backup for:&#8221;</span> &amp;gt;&amp;gt; /home/backup/backup.log<br />
date &amp;gt;&amp;gt; /home/backup/backup.log<br />
<span class="kw3">echo</span> <span class="st0">&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&#8221;</span> &amp;gt;&amp;gt; /home/backup/backup.log<br />
du -sh /backup/`date +<span class="st0">&#8216;%F-%a&#8217;</span>`/* &amp;gt;&amp;gt; /home/backup/backup.log<br />
du -sh /backup/sql/latest/ &amp;gt;&amp;gt; /home/backup/backup.log<br />
<span class="kw3">echo</span> <span class="st0">&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&#8221;</span> &amp;gt;&amp;gt; /home/backup/backup.log</p>
<p><span class="co1">#####################################################################################</span><br />
<span class="co1"># Delete the tar/gz files once they are written to tape</span><br />
<span class="co1">#####################################################################################</span><br />
<span class="co1">#delete the previous backup which is stored on disk for easy access, create the new &#8216;lastest&#8217; for the files and SQL</span><br />
rm /backup/latest<br />
mv /backup/`date +<span class="st0">&#8216;%F-%a&#8217;</span>`/* /backup/latest<br />
cp -R /backup/sql/latest /backup/latest/sql</p>
<p><span class="co1">#####################################################################################</span><br />
<span class="co1"># add total backup size to log file</span><br />
<span class="co1">#####################################################################################</span><br />
<span class="kw3">echo</span> <span class="st0">&#8220;Total backup size:&#8221;</span> &amp;gt;&amp;gt; /home/backup/backup.log<br />
du -sh /backup/latest &amp;gt;&amp;gt; /home/backup/backup.log<br />
<span class="kw3">echo</span> <span class="st0">&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&#8221;</span> &amp;gt;&amp;gt; /home/backup/backup.log<br />
<span class="kw3">echo</span> <span class="st0">&#8220;&#8221;</span> &amp;gt;&amp;gt; /home/backup/backup.log</p>
<p><span class="co1">#####################################################################################</span><br />
<span class="co1"># Copy backed up tar/gz files to the tape drive with the latest SQL backup</span><br />
<span class="co1">#####################################################################################</span><br />
tar cfv /dev/tape /backup/latest</div>
</div>
<p>This code keeps the latest backup on the disk for easy access as well as puts it to the tape. I try to keep a basic log file to have an idea what has been written and how large it was. I haven&#8217;t found a good way to keep a running count of how much has been written to the tape yet. Once I do, the log file will be simplified quite a bit. This script is run M/W/F and a similar script that backups only the SQL files Sa/Su/T/R.</p>
<p>There were a few sites that were of great help getting the tape backup working well:<br />
<a href="http://www.whoopis.com/howtos/tapebackup.html" target="_blank">http://www.whoopis.com/howtos/tapebackup.html</a><br />
<a href="http://www.cyberciti.biz/faq/linux-tape-backup-with-mt-and-tar-command-howto/" target="_blank">http://www.cyberciti.biz/faq/linux-tape-backup-with-mt-and-tar-command-howto/</a></p>
<p>There was another site, which I don&#8217;t have handy at the moment, but I will update as soon as I find the link.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideasunleashed.org/ben/2007/11/08/my-super-backup-adventure/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Holy long over due post Batman!</title>
		<link>http://www.ideasunleashed.org/ben/2007/10/04/holy-long-over-due-post-batman/</link>
		<comments>http://www.ideasunleashed.org/ben/2007/10/04/holy-long-over-due-post-batman/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 13:37:14 +0000</pubDate>
		<dc:creator>bwakefield</dc:creator>
		
		<category><![CDATA[Aerospace]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.ideasunleashed.org/ben/2007/10/04/holy-long-over-due-post-batman/</guid>
		<description><![CDATA[I have been really busy the past month. Between ramping up projects at work and school there hasn&#8217;t been much time for anything else. I have gotten quite a few of my videos from the Rockford Airfest and the Cleveland National Airshow uploaded to YouTube. You can check out my new airshow page to see [...]]]></description>
			<content:encoded><![CDATA[<p>I have been really busy the past month. Between ramping up projects at work and school there hasn&#8217;t been much time for anything else. I have gotten quite a few of my videos from the Rockford Airfest and the Cleveland National Airshow uploaded to YouTube. You can check out my new airshow page to see more information about those. I also have a ton of good stuff from the Gathering of Mustangs and Legends. There will be more on that as soon as I am able to check out the video I took. My dad got some pretty good pictures too:</p>
<p><a target="_new" href="http://www.ideasunleashed.org/ben/images/gml2007/b17G.JPG"><img src="http://www.ideasunleashed.org/ben/images/gml2007/.snifthumbs/b17G.JPG" /></a> <a target="_new" href="http://www.ideasunleashed.org/ben/images/gml2007/p38_3.JPG"><img src="http://www.ideasunleashed.org/ben/images/gml2007/.snifthumbs/p38_3.JPG" /></a> <a target="_new" href="http://www.ideasunleashed.org/ben/images/gml2007/heritage_f15_p51_3.JPG"><img src="http://www.ideasunleashed.org/ben/images/gml2007/.snifthumbs/heritage_f15_p51_3.JPG" /></a><br />
<a target="_new" href="http://www.ideasunleashed.org/ben/images/gml2007/heritage_f22_p51.JPG"><img src="http://www.ideasunleashed.org/ben/images/gml2007/.snifthumbs/heritage_f22_p51.JPG" /></a> <a target="_new" href="http://www.ideasunleashed.org/ben/images/gml2007/formation51.jpg"><img src="http://www.ideasunleashed.org/ben/images/gml2007/.snifthumbs/formation51.jpg" /></a> <a target="_new" href="http://www.ideasunleashed.org/ben/images/gml2007/me_glaciergirl.JPG"><img src="http://www.ideasunleashed.org/ben/images/gml2007/.snifthumbs/me_glaciergirl.JPG" /></a><br />
<a target="_new" href="http://www.ideasunleashed.org/ben/images/gml2007/thunderbirds_solo_2.JPG"><img src="http://www.ideasunleashed.org/ben/images/gml2007/.snifthumbs/thunderbirds_solo_2.JPG" /></a> <a target="_new" href="http://www.ideasunleashed.org/ben/images/gml2007/thunderbirds_diamond_1.JPG"><img src="http://www.ideasunleashed.org/ben/images/gml2007/.snifthumbs/thunderbirds_diamond_1.JPG" /></a> <a target="_new" href="http://www.ideasunleashed.org/ben/images/gml2007/b2.JPG"><img src="http://www.ideasunleashed.org/ben/images/gml2007/.snifthumbs/b2.JPG" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideasunleashed.org/ben/2007/10/04/holy-long-over-due-post-batman/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cleveland National Air Show</title>
		<link>http://www.ideasunleashed.org/ben/2007/09/04/cleveland-national-air-show/</link>
		<comments>http://www.ideasunleashed.org/ben/2007/09/04/cleveland-national-air-show/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 15:17:58 +0000</pubDate>
		<dc:creator>bwakefield</dc:creator>
		
		<category><![CDATA[Aerospace]]></category>

		<guid isPermaLink="false">http://www.ideasunleashed.org/ben/2007/09/04/cleveland-national-air-show/</guid>
		<description><![CDATA[Wow! It was amazing. The show was really great. I actually paid attention to the Aerobatics shows. Oh what have I missing! I really wanted to go a second day, but time (and money) didn&#8217;t allow for it. I need to start planning for &#8220;Airshow season&#8221; in advance. I might be able to go to [...]]]></description>
			<content:encoded><![CDATA[<p>Wow! It was amazing. The show was really great. I actually paid attention to the Aerobatics shows. Oh what have I missing! I really wanted to go a second day, but time (and money) didn&#8217;t allow for it. I need to start planning for &#8220;Airshow season&#8221; in advance. I might be able to go to a few more next year. I need to get my pictures from Air Fest up&#8230;</p>
<p>Pictures from Saturday can be found <a target="_blank" href="http://www.ideasunleashed.org/ben/images/index.php?path=CNA2007/">here</a>. Thanks to my buddy Steve for operating the digital cam while I took video!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideasunleashed.org/ben/2007/09/04/cleveland-national-air-show/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Star Wars is here!</title>
		<link>http://www.ideasunleashed.org/ben/2007/09/03/star-wars-is-here/</link>
		<comments>http://www.ideasunleashed.org/ben/2007/09/03/star-wars-is-here/#comments</comments>
		<pubDate>Mon, 03 Sep 2007 18:12:01 +0000</pubDate>
		<dc:creator>bwakefield</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.ideasunleashed.org/ben/2007/09/03/star-wars-is-here/</guid>
		<description><![CDATA[&#8220;Help me Obi Wan Kenobi, you&#8217;re my only hope.&#8221;
]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.youtube.com/watch?v=FF1vFTQOWN4">&#8220;Help me Obi Wan Kenobi, you&#8217;re my only hope.&#8221;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideasunleashed.org/ben/2007/09/03/star-wars-is-here/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to raise your GPA</title>
		<link>http://www.ideasunleashed.org/ben/2007/08/30/how-to-raise-your-gpa/</link>
		<comments>http://www.ideasunleashed.org/ben/2007/08/30/how-to-raise-your-gpa/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 19:02:28 +0000</pubDate>
		<dc:creator>bwakefield</dc:creator>
		
		<category><![CDATA[Education]]></category>

		<guid isPermaLink="false">http://www.ideasunleashed.org/ben/2007/08/30/how-to-raise-your-gpa/</guid>
		<description><![CDATA[I saw a good article over at pickthebrain.com about how to increase your GPA. Some of these stuff seems like common sense, but they are worth noting none the less.
]]></description>
			<content:encoded><![CDATA[<p>I saw a good article over at <a target="_blank" href="http://www.pickthebrain.com/blog/raise-your-gpa/">pickthebrain.com</a> about how to increase your GPA. Some of these stuff seems like common sense, but they are worth noting none the less.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideasunleashed.org/ben/2007/08/30/how-to-raise-your-gpa/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Stage 1 - Define your needs</title>
		<link>http://www.ideasunleashed.org/ben/2007/08/28/stage-1-define-your-needs/</link>
		<comments>http://www.ideasunleashed.org/ben/2007/08/28/stage-1-define-your-needs/#comments</comments>
		<pubDate>Wed, 29 Aug 2007 03:00:21 +0000</pubDate>
		<dc:creator>bwakefield</dc:creator>
		
		<category><![CDATA[Computers &amp; IT]]></category>

		<guid isPermaLink="false">http://www.ideasunleashed.org/ben/2007/08/28/stage-1-define-your-needs/</guid>
		<description><![CDATA[&#8220;Measure twice, cut once.&#8221; When it comes to any major (or minor!) project, planning is everything. Many headaches will be avoided if you start planning your network infrastructure by clearly defining the requirements and needs for the network.
What do you need out of your network infrastructure? What goals or mission is going to be accomplished [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Measure twice, cut once.&#8221; When it comes to any major (or minor!) project, planning is everything. Many headaches will be avoided if you start planning your network infrastructure by clearly defining the requirements and needs for the network.</p>
<p>What do you need out of your network infrastructure? What goals or mission is going to be accomplished by your network? What does your &#8220;business&#8221; revolve around? Do you leverage technology to meet your goals or are you a provider of tools using that technology? The first thing that comes to mind for me, is email. There are many options, and this choice could determine what route you go for the rest of the network. What do you need from your email? Email is closely followed by a &#8220;domain&#8221; solution, file server, and web hosting (no particular order to the last items).</p>
<p><span id="more-26"></span> My theory is you need to go with your strengths and know when you are at your limits before you can really try to decide what you need. Too often we get caught up in one detail about something that we need to do and spend large amounts of time trying to figure out that aspect and over look other important details.<br />
When I am working with planning a new network I start by trying to decide how best to meet the needs of the users of the network. I start by listing the tasks that need to be accomplished the software that needs to be used. It helps to get a pretty good idea of what &#8220;jobs&#8221; need to be completed.</p>
<ul>
<li>Do you need to provide your own email solution or is it hosted?</li>
<li>Are you providing your own DNS services?</li>
<li>What sort of file storage and backup is needed?</li>
<li>Do any of the employees work from home? Do you need VPN?</li>
<li>Is there any chance of leveraging a VoIP solution?</li>
<li>Will you be hosting any websites? Are they internal or externally facing? (might influence your DNS decision!!!)</li>
<li>Does it make sense to deploy thin clients?</li>
<li>What sort of network services or applications are going to be used?</li>
<li>What about security? Is what is provided through the ISP enough? Is a separate firewall needed?</li>
</ul>
<p>Defining your needs is going to be the best way to avoid spending extra money or backing your organization down a path that ultimately is not going to work out. There are many other things to consider other than the above items but it provides a starting block. It may seems like you are spending a lot of time evaluating software or platforms, but in the end, it makes purchasing, deploying, and managing the resulting network far easier in the end.</p>
<p>Next up, Planning your network around your needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideasunleashed.org/ben/2007/08/28/stage-1-define-your-needs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yay for school!</title>
		<link>http://www.ideasunleashed.org/ben/2007/08/20/yay-for-school/</link>
		<comments>http://www.ideasunleashed.org/ben/2007/08/20/yay-for-school/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 22:50:30 +0000</pubDate>
		<dc:creator>bwakefield</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.ideasunleashed.org/ben/2007/08/20/yay-for-school/</guid>
		<description><![CDATA[The weekend was exciting indeed! I picked up a new (to me) set of wheels and tires for my car; MOMO RPM 17&#8243; wheels with Nito NeoGen tires. They are super sticky and about as wide as you can wedge under the car, even with the rear fenders rolled.
First week of the semester, whoo hoo!!
I [...]]]></description>
			<content:encoded><![CDATA[<p>The weekend was exciting indeed! I picked up a new (to me) set of wheels and tires for my car; MOMO RPM 17&#8243; wheels with Nito NeoGen tires. They are super sticky and about as wide as you can wedge under the car, even with the rear fenders rolled.</p>
<p>First week of the semester, whoo hoo!!</p>
<p>I am taking Computer Graphics, Data Communications, and Geography (Real Americans fail geography. - The Colbert Report).</p>
<p>Should see some interesting projects in Graphics. It should go along nicely with the senior design project we did back in the spring, a 2.5D Real Time Strategy game. We used Open GL through the .NET based bindings for the SDL (<a target="_blank" href="http://www.libsdl.org/">Simple DirectMedia Layer</a>) Libraries.</p>
<p>Be looking for a posting about designing your network infrastructure (geared around Not-for-Profit organizations and very low budgets) in the coming week!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideasunleashed.org/ben/2007/08/20/yay-for-school/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Save a copy of your Putty Session Settings</title>
		<link>http://www.ideasunleashed.org/ben/2007/08/06/save-a-copy-of-your-putty-session-settings/</link>
		<comments>http://www.ideasunleashed.org/ben/2007/08/06/save-a-copy-of-your-putty-session-settings/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 03:33:32 +0000</pubDate>
		<dc:creator>bwakefield</dc:creator>
		
		<category><![CDATA[Computers &amp; IT]]></category>

		<guid isPermaLink="false">http://www.ideasunleashed.org/ben/2007/08/06/save-a-copy-of-your-putty-session-settings/</guid>
		<description><![CDATA[I have found a few nifty ways to copy your settings for Putty. Putty is a windows SSH client allowing a secure cli (command line interface) to *nix based servers. I use it daily for various tasks related to managing the Ideas Unleashed servers. I do have a habit of formatting my systems semi-frequently, at [...]]]></description>
			<content:encoded><![CDATA[<p>I have found a <a target="_blank" href="http://www.downloadsquad.com/2007/02/01/howto-transfer-your-putty-settings-between-computers/">few nifty</a> ways to copy your settings for Putty. Putty is a windows SSH client allowing a secure cli (command line interface) to *nix based servers. I use it daily for various tasks related to managing the Ideas Unleashed servers. I do have a habit of formatting my systems semi-frequently, at least once a year, so keeping track of bookmarks, Filezilla settings (a topic for a future blog), Putty settings, and many other things difficult.</p>
<p>However, saving and restoring your Putty Settings is a snap! From the Start -> run dialog, run this command to place a .reg file on your desktop that you can merge on another windows system to copy your putty settings.</p>
<div class="codesnip-container" >
<div class="codesnip">regedit /e &quot;%<span class="re2">userprofile</span>%\desktop\putty.reg&quot; HKEY_CURRENT_USER\Software\Simontatham</div>
</div>
<p>Thanks to <a target="_blank" href="http://www.downloadsquad.com/2007/02/01/howto-transfer-your-putty-settings-between-computers/#c3295221">Joe Mansfield&#8217;s</a> comment for the shortcut!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideasunleashed.org/ben/2007/08/06/save-a-copy-of-your-putty-session-settings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Solid State Musical Tesla Coil</title>
		<link>http://www.ideasunleashed.org/ben/2007/08/05/solid-state-musical-tesla-coil/</link>
		<comments>http://www.ideasunleashed.org/ben/2007/08/05/solid-state-musical-tesla-coil/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 15:17:41 +0000</pubDate>
		<dc:creator>bwakefield</dc:creator>
		
		<category><![CDATA[Cool and Interesting]]></category>

		<guid isPermaLink="false">http://www.ideasunleashed.org/ben/2007/08/05/solid-state-musical-tesla-coil/</guid>
		<description><![CDATA[
http://www.youtube.com/watch?v=VX5V_9s0Gfw

The Super Mario Brothers theme for your listening pleasure. For more information on Tesla Coils, check the Wikipedia article.
]]></description>
			<content:encoded><![CDATA[<div id="vvq4927cdc271405" class="vvqbox vvqyoutube" style="width:425px;height:335px;">
<p><a href="http://www.youtube.com/watch?v=VX5V_9s0Gfw">http://www.youtube.com/watch?v=VX5V_9s0Gfw</a></p>
</div>
<p>The Super Mario Brothers theme for your listening pleasure. For more information on Tesla Coils, check the <a target="_blank" href="http://en.wikipedia.org/wiki/Tesla_coil">Wikipedia</a> article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideasunleashed.org/ben/2007/08/05/solid-state-musical-tesla-coil/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
