<?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>MyVogonPoetry</title>
	<atom:link href="http://myvogonpoetry.com/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://myvogonpoetry.com/wp</link>
	<description>Ramblings from a geek, a code monkey, a gamer, and a dad.</description>
	<lastBuildDate>Sun, 03 Mar 2013 22:34:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Borderlands Claptrap Kindle Screensaver Image</title>
		<link>http://myvogonpoetry.com/wp/2013/03/03/borderlands-claptrap-kindle-screensaver-image/</link>
		<comments>http://myvogonpoetry.com/wp/2013/03/03/borderlands-claptrap-kindle-screensaver-image/#comments</comments>
		<pubDate>Sun, 03 Mar 2013 22:34:26 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Gaming]]></category>

		<guid isPermaLink="false">http://myvogonpoetry.com/wp/?p=858</guid>
		<description><![CDATA[Having just recently finished Borderlands, I went looking for a Claptrap Kindle screensaver image and found none! So, I made one. I just converted a Claptrap image I found online into the Kindle format. Use and enjoy:]]></description>
				<content:encoded><![CDATA[<p>Having just recently finished Borderlands, I went looking for a Claptrap Kindle screensaver image and found none! So, I made one. I just converted a Claptrap image I found online into the Kindle format. Use and enjoy:</p>
<p><a href="http://myvogonpoetry.com/wp/wp-content/uploads/2013/03/claptrap-kindle.png"><img src="http://myvogonpoetry.com/wp/wp-content/uploads/2013/03/claptrap-kindle.png" alt="claptrap-kindle" title="claptrap-kindle" width="300" height="400" class="aligncenter size-full wp-image-859" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://myvogonpoetry.com/wp/2013/03/03/borderlands-claptrap-kindle-screensaver-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using ant to exec mysql .sql files via a fileset</title>
		<link>http://myvogonpoetry.com/wp/2013/02/26/using-ant-to-exec-mysql-sql-files-via-a-fileset/</link>
		<comments>http://myvogonpoetry.com/wp/2013/02/26/using-ant-to-exec-mysql-sql-files-via-a-fileset/#comments</comments>
		<pubDate>Tue, 26 Feb 2013 20:53:09 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[ant]]></category>

		<guid isPermaLink="false">http://myvogonpoetry.com/wp/?p=841</guid>
		<description><![CDATA[In trying to automate our DB development, we decided to use ant and Jenkins to run our SQL scripts for a deploy. We had a hard time getting ant to work and after much trial and error (and cussing and fussing) we finally got it to work. The key really was the addsourcefile=&#8221;false&#8221; attribute and [...]]]></description>
				<content:encoded><![CDATA[<p>In trying to automate our DB development, we decided to use ant and Jenkins to run our SQL scripts for a deploy. We had a hard time getting ant to work and after much trial and error (and cussing and fussing) we finally got it to work. The key really was the addsourcefile=&#8221;false&#8221; attribute and the redirector. Since mysql can run sql from a file using redirection (< ) you have to use a redirector (which is poorly documented).</p>
<p>The ant apply task can apply an executable to every file in a fileset, so this will use the mysql executable to exec every *.sql file it finds.<br />
<span id="more-841"></span><br />
<code><br />
<span style="font-size: 12px"><br />
    &lt;target name=&quot;test&quot;&gt;<br />
        &lt;apply executable=&quot;mysql&quot; dir=&quot;.&quot; output=&quot;antlog.txt&quot;<br />
error=&quot;anterr.txt&quot; append=&quot;true&quot; verbose=&quot;true&quot;<br />
addsourcefile=&quot;false&quot;&gt;<br />
            &lt;arg value=&quot;-h${host}&quot;/&gt;<br />
            &lt;arg value=&quot;-u${user}&quot;/&gt;<br />
            &lt;arg value=&quot;-p${pass}&quot;/&gt;<br />
            &lt;arg value=&quot;${dbname}&quot;/&gt;<br />
            &lt;fileset dir=&quot;.&quot;&gt;<br />
                &lt;include name=&quot;src/production/**/*.sql&quot; /&gt;<br />
            &lt;/fileset&gt;<br />
            &lt;redirector&gt;<br />
              &lt;inputmapper type=&quot;glob&quot; from=&quot;*&quot; to=&quot;*&quot;/&gt;<br />
            &lt;/redirector&gt;<br />
        &lt;/apply&gt;<br />
    &lt;/target&gt;<br />
</span></p>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://myvogonpoetry.com/wp/2013/02/26/using-ant-to-exec-mysql-sql-files-via-a-fileset/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using the Sonar REST API for weekly emails</title>
		<link>http://myvogonpoetry.com/wp/2013/02/21/using-the-sonar-rest-api-for-weekly-emails/</link>
		<comments>http://myvogonpoetry.com/wp/2013/02/21/using-the-sonar-rest-api-for-weekly-emails/#comments</comments>
		<pubDate>Thu, 21 Feb 2013 13:28:37 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://myvogonpoetry.com/wp/?p=830</guid>
		<description><![CDATA[At work, we wanted to create an automated weekly email to the team that shows how we&#8217;re doing on new code. Sonar has a Sonar REST API and a Sonar Java WS client wrapper for it. Here&#8217;s how I did: First, you need to round up some jars. You need: commons-logging httpclient httpcore json-simple sonar-ws-client [...]]]></description>
				<content:encoded><![CDATA[<p>At work, we wanted to create an automated weekly email to the team that shows how we&#8217;re doing on new code. <a href="http://sonarsource.org">Sonar</a> has a <a href="http://docs.codehaus.org/display/SONAR/Web+Service+API">Sonar REST API</a> and a <a href="http://docs.codehaus.org/display/SONAR/Using+the+Web+Service+Java+client">Sonar Java WS client wrapper</a> for it. Here&#8217;s how I did:</p>
<p>First, you need to round up some jars. You need:</p>
<ul>
<li>commons-logging</li>
<li>httpclient</li>
<li>httpcore</li>
<li>json-simple</li>
<li>sonar-ws-client</li>
</ul>
<p><span id="more-830"></span></p>
<p>Once you have those, you can use it with something like this:</p>
<pre>
<span class="inner-pre" style="font-size: 8px">
public class RetrieveStats {

    static String host = "http://myhost:8080/sonar";
    static String resourceKey = "org.blah:sonar_name";
    static String[] MEASURES_TO_GET = new String[]{"violations", "new_violations", 
                                                   "new_coverage", "tests"};

    public static void main(String[] args) {                
        try {       
            //setup
            DecimalFormat df = new DecimalFormat("#.##");            
            Date date = new Date();
            
            //header
            output("************************************");
            output("Code trend for the past 7 days as of "+date);
            output("************************************");
            
            //do the work of getting the data
            Sonar sonar = new Sonar(new HttpClient4Connector(new Host(host)));
            ResourceQuery query = ResourceQuery.createForMetrics(resourceKey, MEASURES_TO_GET);
            query.setIncludeTrends(true);
            Resource resource = sonar.find(query);
            //loop through them
            //getVariation2 for "7 days"
            List<measure> allMeasures = resource.getMeasures();
            for (Measure measure : allMeasures) {
                output(measure.getMetricKey()+": "+df.format(measure.getVariation2()));
            }            
            output("DONE");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
</measure></span>
</pre>
<p>and this will output something like:<br />
<span class="inner-pre" style="font-size: 12px"><br />
************************************<br />
Code trend for the past 7 days as of Wed Feb 20 17:42:17 EST 2013<br />
************************************<br />
tests: 4<br />
new_coverage: 6.52<br />
violations: -41<br />
new_violations: 55<br />
</span></p>
<p>Of course, you can tweak the code to output any metrics you want with more details, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://myvogonpoetry.com/wp/2013/02/21/using-the-sonar-rest-api-for-weekly-emails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MC Frontalot Kindle Scrensaver Images</title>
		<link>http://myvogonpoetry.com/wp/2012/10/20/mc-frontalot-kindle-scrensaver-images/</link>
		<comments>http://myvogonpoetry.com/wp/2012/10/20/mc-frontalot-kindle-scrensaver-images/#comments</comments>
		<pubDate>Sun, 21 Oct 2012 01:11:31 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[frontalot]]></category>
		<category><![CDATA[kindle]]></category>

		<guid isPermaLink="false">http://myvogonpoetry.com/wp/?p=792</guid>
		<description><![CDATA[I just hacked my Kindle to show custom screensaver images and found zero MC Frontalot Kindle images online! As a huge Frontalot fan, I could not sit idly by while the interwebs were devoid of Frontalot Kindle images, so I made some. Click for the larger image, ready for your Kindle. (I did not create [...]]]></description>
				<content:encoded><![CDATA[<p>I just hacked my Kindle to show custom screensaver images and found <strong>zero</strong> MC Frontalot Kindle images online! As a huge Frontalot fan, I could not sit idly by while the interwebs were devoid of Frontalot Kindle images, so I made some. </p>
<p>Click for the larger image, ready for your Kindle. (I did not create these images, I just made them Kindle-ready)</p>
<p>Enjoy. </p>
<table>
<tr>
<td style="text-align: center;"><a href="http://myvogonpoetry.com/images/kindle-mc-frontalot/mc-frontalot-logo.jpg"><img class="alignleft" src="http://myvogonpoetry.com/images/kindle-mc-frontalot/mc-frontalot-logo-thumb.jpg" alt="MC Frontalot Logo Kindle Screensaver Image" /></a></td>
<td style="text-align: center;"><a href="http://myvogonpoetry.com/images/kindle-mc-frontalot/mc-frontalot-art.jpg"><img class=alignright" src="http://myvogonpoetry.com/images/kindle-mc-frontalot/mc-frontalot-art-thumb.jpg" alt="MC Frontalot Kindle Screensaver Image" /></a>
</td>
</tr>
<tr>
<td style="text-align: center;"><a href="http://myvogonpoetry.com/images/kindle-mc-frontalot/mc-frontalot-nerdcore_rising.jpg"><img class="alignleft" src="http://myvogonpoetry.com/images/kindle-mc-frontalot/mc-frontalot-nerdcore_rising-thumb.jpg" alt="MC Frontalot Goth Girls Kindle Screensaver Image" /></a></td>
<td style="text-align: center;"><a href="http://myvogonpoetry.com/images/kindle-mc-frontalot/mc-frontalot-goth-girls.jpg"><img class="alignright" src="http://myvogonpoetry.com/images/kindle-mc-frontalot/mc-frontalot-goth-girls-thumb.jpg" alt="MC Frontalot Goth Girls Kindle Screensaver Image" /></a></td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://myvogonpoetry.com/wp/2012/10/20/mc-frontalot-kindle-scrensaver-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unit testing JavaBeans</title>
		<link>http://myvogonpoetry.com/wp/2012/10/08/unit-testing-javabeans/</link>
		<comments>http://myvogonpoetry.com/wp/2012/10/08/unit-testing-javabeans/#comments</comments>
		<pubDate>Mon, 08 Oct 2012 12:46:04 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://myvogonpoetry.com/wp/?p=786</guid>
		<description><![CDATA[I always just pretty much skipped unit testing JavaBeans since the work involved didn&#8217;t seem worth it. Today though, I was troubled by the lack of coverage on the Javabeans in our Emma code coverage reports so I googled and found this bit of unit testing brilliance: Unit Testing Javabeans. It&#8217;s a simple class that [...]]]></description>
				<content:encoded><![CDATA[<p>I always just pretty much skipped unit testing JavaBeans since the work involved didn&#8217;t seem worth it. Today though, I was troubled by the lack of coverage on the Javabeans in our <a href="http://emma.sourceforge.net">Emma code coverage reports</a> so I googled and found this bit of unit testing brilliance: <a href="http://codebox.org.uk/pages/articles/unit-testing-javabeans">Unit Testing Javabeans</a>. It&#8217;s a simple class that uses introspection to test the bean and works great!</p>
]]></content:encoded>
			<wfw:commentRss>http://myvogonpoetry.com/wp/2012/10/08/unit-testing-javabeans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 4 (and 2 and 3) of Insanity</title>
		<link>http://myvogonpoetry.com/wp/2012/08/23/day-4-and-2-and-3-of-insanity/</link>
		<comments>http://myvogonpoetry.com/wp/2012/08/23/day-4-and-2-and-3-of-insanity/#comments</comments>
		<pubDate>Fri, 24 Aug 2012 01:17:55 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Exercise]]></category>

		<guid isPermaLink="false">http://myvogonpoetry.com/wp/?p=776</guid>
		<description><![CDATA[Yes, I did days 2 and 3, I just didn&#8217;t blog about it til now. Day 2 Woke up sore &#8211; not immensely sore, but definitely sore. The workout kicked my butt. Day 3 20 seconds in (I think it was butt kicks) and my legs were killing me &#8211; back of my thighs (hamstrings?) [...]]]></description>
				<content:encoded><![CDATA[<p>Yes, I did days 2 and 3, I just didn&#8217;t blog about it til now.</p>
<p><strong>Day 2</strong><br />
Woke up sore &#8211; not immensely sore, but definitely sore. The workout kicked my butt. </p>
<p><strong>Day 3</strong><br />
20 seconds in (I think it was butt kicks) and my legs were killing me &#8211; back of my thighs (hamstrings?) were screaming&#8230; and that was just 20 seconds in. This workout was hard. I was already pretty sore already and this was rough. I don&#8217;t think I got through half of each of the exercises and I&#8217;m not positive I&#8217;m doing some of them correctly.</p>
<p><strong>Day 4</strong><br />
I didn&#8217;t look at the workout ahead of time and it turns out it&#8217;s a recovery day (yay for recover days!) &#8211; a bunch of stretching. The stretching was hard (man my hamstrings(?)) are sore, but this was a welcome change from the high intensity stuff. I&#8217;m still sore, but it&#8217;s not killing me&#8230; makes me wonder if I&#8217;m not pushing hard enough.</p>
<p><strong>General notes</strong></p>
<ul>
<li>I have never been on a diet in my life and I can now really empathize with people that diet. I have been craving so much other (bad) food, but I&#8217;ve been sticking to it and not wavering/cheating. On Day 4 (Thursday), during dinner, I had an iced coffee &#8211; that was my first &#8220;splurge&#8221;, but I cut back on the hazelnut cream and used some skim milk so it wasn&#8217;t too bad (I hope). I haven&#8217;t had coffee all week (since Sunday).
</li>
<li>The food isn&#8217;t too bad really. The roast beef wrap, egg white wrap, and lean burger are pretty darn good. The chicken meatballs aren&#8217;t nearly as tasty as I thought they would be. The chicken breasts I cooked ahead of time on the grill but I screwed them up and the chicken is dry and tough but that&#8217;s my fault, not the recipes&#8217;.
</li>
<li>I&#8217;ve easily eaten more fruit this week than I have in the past 15 years. I&#8217;ve been doing five 400 calorie meals so I&#8217;ve had to add 100 calories to each one and many times it&#8217;s a fruit. The vanilla berry protein smoothie is pretty tsasty!
</li>
<li>It&#8217;s hard to get used to eating 5 small meals a day and I have to take a freakin satchel full of food so I can eat THREE meals at work.
</li>
<li>The two muscles that are hurting the worst are the backs of my thighs (hamstrings?) and the muscles under my underarms &#8211; no idea what muscle that is, but damn they are sore. Every time I move, some muscle complains about it. Never been this sore &#8211; ever. Epic moment of the day &#8211; it hurt to pass gas.
</li>
</ul>
<p>Just 59 days to go!</p>
]]></content:encoded>
			<wfw:commentRss>http://myvogonpoetry.com/wp/2012/08/23/day-4-and-2-and-3-of-insanity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Insanity Day 1</title>
		<link>http://myvogonpoetry.com/wp/2012/08/20/insanity-day-1/</link>
		<comments>http://myvogonpoetry.com/wp/2012/08/20/insanity-day-1/#comments</comments>
		<pubDate>Tue, 21 Aug 2012 01:59:20 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Exercise]]></category>

		<guid isPermaLink="false">http://myvogonpoetry.com/wp/?p=773</guid>
		<description><![CDATA[Today was the Insanity fit test. Kicked my ass. I woke up at 6 AM (ugh!) to do it. I got through the first 6 (of 8) exercises and then felt like I was gonna hurl. Hopefully I can last longer in the coming days/months. The diet might be harder than the exercise &#8211; I&#8217;ve [...]]]></description>
				<content:encoded><![CDATA[<p>Today was the Insanity fit test. Kicked my ass. I woke up at 6 AM (ugh!) to do it. I got through the first 6 (of 8) exercises and then felt like I was gonna hurl. Hopefully I can last longer in the coming days/months. The diet might be harder than the exercise &#8211; I&#8217;ve never done <em>any</em> type of diet in my life. I&#8217;ve always eaten whatever I wanted. The diet they put you on is 5 smaller healthy meals a day and just water to drink. Before most of the meals today I wasn&#8217;t really hungry. I&#8217;ll have the same 5 meals every other day. Tomorrow is 5 new meals &#8211; and an actual workout (not a fit test). I&#8217;m sore already from just the fit test&#8230; I&#8217;m sure I&#8217;ll be incredibly sore after a workout.</p>
]]></content:encoded>
			<wfw:commentRss>http://myvogonpoetry.com/wp/2012/08/20/insanity-day-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting Insanity Tomorrow</title>
		<link>http://myvogonpoetry.com/wp/2012/08/19/starting-insanity-tomorrow/</link>
		<comments>http://myvogonpoetry.com/wp/2012/08/19/starting-insanity-tomorrow/#comments</comments>
		<pubDate>Mon, 20 Aug 2012 01:39:04 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Exercise]]></category>
		<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://myvogonpoetry.com/wp/?p=769</guid>
		<description><![CDATA[I&#8217;m stating the Insanity workout tomorrow. I&#8217;m 5&#8242; 11&#8243; and 174 pounds &#8211; I&#8217;m not overweight (though I&#8217;m near the top of the range), and my BMI is in the healthy range. I&#8217;m out of shape though &#8211; seriously out of shape. It&#8217;s been ages (and by ages, I mean YEARS) since I&#8217;ve done any [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m stating the Insanity workout tomorrow. I&#8217;m 5&#8242; 11&#8243; and 174 pounds &#8211; I&#8217;m not overweight (though I&#8217;m near the top of the range), and my BMI is in the healthy range. I&#8217;m out of shape though &#8211; seriously out of shape. It&#8217;s been ages (and by ages, I mean YEARS) since I&#8217;ve done any real exercise. So, this should be fun. I&#8217;m not looking to lose weight, just looking to get in shape.</p>
<p>Today I&#8217;ve been prepping food for the week &#8211; I feel like I&#8217;m prepping for the Zombie Apocalypse. Seems like I prepped all day.  </p>
]]></content:encoded>
			<wfw:commentRss>http://myvogonpoetry.com/wp/2012/08/19/starting-insanity-tomorrow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New job!</title>
		<link>http://myvogonpoetry.com/wp/2012/06/27/new-job/</link>
		<comments>http://myvogonpoetry.com/wp/2012/06/27/new-job/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 20:12:59 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://myvogonpoetry.com/wp/?p=765</guid>
		<description><![CDATA[Yesterday was a big day for me. After almost six years at my current job, I am changing jobs and I have accepted a job offer from a local non-profit and I start on July 9. Words can&#8217;t express how happy and excited I am to start this new job.]]></description>
				<content:encoded><![CDATA[<p>Yesterday was a big day for me. After almost six years at my current job, I am changing jobs and I have accepted a job offer from a local non-profit and I start on July 9. Words can&#8217;t express how happy and excited I am to start this new job.</p>
]]></content:encoded>
			<wfw:commentRss>http://myvogonpoetry.com/wp/2012/06/27/new-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Star Wars Light Saber Lamp</title>
		<link>http://myvogonpoetry.com/wp/2012/06/08/star-wars-light-saber-lamp/</link>
		<comments>http://myvogonpoetry.com/wp/2012/06/08/star-wars-light-saber-lamp/#comments</comments>
		<pubDate>Sat, 09 Jun 2012 03:00:07 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://myvogonpoetry.com/wp/?p=739</guid>
		<description><![CDATA[I did this DIY project a few weeks ago and just wrote this up and posted it on my site, geekcrafts.com. It turned out better than I thought it would. I still have to do the logo in the shade though &#8211; that&#8217;s part 2. Also, it was posted on Ikea Hackers today too! DIY [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://geekcrafts.com/howto-diy-star-wars-light-saber-lamp/"><img src="http://myvogonpoetry.com/wp/wp-content/uploads/2012/06/light-saber-lamp.jpg" alt="light saber lamp" title="light saber lamp" width="450" height="822" class="aligncenter size-full wp-image-743" /></a></p>
<p>I did this DIY project a few weeks ago and just wrote this up and posted it on my site, <a href="http://geekcrafts.com/howto-diy-star-wars-light-saber-lamp/ ">geekcrafts.com</a>. It turned out better than I thought it would. I still have to do the logo in the shade though &#8211; that&#8217;s part 2. Also, it was <a href="http://www.ikeahackers.net/2012/06/star-wars-light-saber-lamp.html">posted on Ikea Hackers</a> today too!</p>
<ul>
<li><a href="http://geekcrafts.com/howto-diy-star-wars-light-saber-lamp/">DIY Star Wars Light Saber Lamp</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://myvogonpoetry.com/wp/2012/06/08/star-wars-light-saber-lamp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
