<?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>Corner of Seven &#187; code</title>
	<atom:link href="http://cornerofseven.com/blog/tag/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://cornerofseven.com/blog</link>
	<description>Helping Tech and People to Get Along</description>
	<lastBuildDate>Wed, 09 Nov 2011 06:41:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Ruby Prime Generation</title>
		<link>http://cornerofseven.com/blog/2011/04/ruby-prime-generation/</link>
		<comments>http://cornerofseven.com/blog/2011/04/ruby-prime-generation/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 04:49:53 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[50 Lines of Code]]></category>
		<category><![CDATA[Neat and Interesting]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[50 lines of code]]></category>
		<category><![CDATA[algorithm]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[euler]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[prime]]></category>
		<category><![CDATA[prime number]]></category>
		<category><![CDATA[project euler]]></category>
		<category><![CDATA[questions]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://cornerofseven.com/blog/?p=244</guid>
		<description><![CDATA[For a possible job in the Seattle area, one of my prospective employers is having me submit some solutions to problems found on Project Euler. While working on a particular issue, I&#8217;ve discovered that the method I&#8217;ve used for calculating the list of prime numbers performs better than the stock Prime class that is provided [...]]]></description>
			<content:encoded><![CDATA[<p>For a possible job in the Seattle area, one of my prospective employers is having me submit some solutions to problems found on <a href="http://projecteuler.net">Project Euler</a>. While working on a particular issue, I&#8217;ve discovered that the method I&#8217;ve used for calculating the list of prime numbers performs better than the stock Prime class that is provided by the Ruby Standard Library.</p>
<p>That&#8217;s fun to say and all, but I&#8217;m sure that there would be people who would like to have some proof of this: see below.</p>
<p><script src="https://gist.github.com/924790.js?file=primes.rb"></script><br />
My method, shown above, tends to perform slightly better at the task using the test parameter. So, I figured, why not do some more vigorous verification on it?</p>
<p>After setting up the system to run at multiple data points, I found something peculiar, yet interesting:</p>
<p><code>Hand-rolled (at 10^3):<br />
Difference in time: 0.000569<br />
mathn (at 10^3):<br />
Difference in time: 0.001286<br />
Hand-rolled (at 10^4):<br />
Difference in time: 0.008029<br />
mathn (at 10^4):<br />
Difference in time: 0.014407<br />
Hand-rolled (at 10^5):<br />
Difference in time: 0.14803<br />
mathn (at 10^5):<br />
Difference in time: 0.165025<br />
Hand-rolled (at 10^6):<br />
Difference in time: 2.823072<br />
mathn (at 10^6):<br />
Difference in time: 2.687332<br />
Hand-rolled (at 10^7):<br />
Difference in time: 62.096438<br />
mathn (at 10^7):<br />
Difference in time: 64.990647<br />
</code></p>
<p>For powers of ten, it seems as though my process is faster.  10<sup>6</sup> doesn&#8217;t quite follow the pattern, though.</p>
<p>I then ran the same test on different data points:<br />
<code>Hand-rolled (at 2^14):<br />
Difference in time: 0.014882<br />
mathn (at 2^14):<br />
Difference in time: 0.009224<br />
Hand-rolled (at 2^15):<br />
Difference in time: 0.036732<br />
mathn (at 2^15):<br />
Difference in time: 0.022161<br />
Hand-rolled (at 2^16):<br />
Difference in time: 0.085459<br />
mathn (at 2^16):<br />
Difference in time: 0.044076<br />
Hand-rolled (at 2^17):<br />
Difference in time: 0.208553<br />
mathn (at 2^17):<br />
Difference in time: 0.076775<br />
Hand-rolled (at 2^18):<br />
Difference in time: 0.498292<br />
mathn (at 2^18):<br />
Difference in time: 0.151843</code></p>
<p>Running everything as powers of two show a reversal of position for the results; the standard lib does better.  This gives me some insight as to why the above 10<sup>6</sup> test is reversed; the value for 10<sup>6</sup> is very close to a power of two (2<sup>20</sup>), and so the optimizations that are in the ruby library to handle near 2<sup>n</sup> are in effect at that point.  Logically, I would see something similar for 10<sup>9</sup>, but I&#8217;m not going to let my computer sit for a day to crunch that out. <img src='http://cornerofseven.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2011%2F04%2Fruby-prime-generation%2F&amp;title=Ruby%20Prime%20Generation" title="Reddit"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Ruby%20Prime%20Generation%20-%20http%3A%2F%2Fcornerofseven.com%2Fblog%2F2011%2F04%2Fruby-prime-generation%2F" title="Twitter"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2011%2F04%2Fruby-prime-generation%2F&amp;title=Ruby%20Prime%20Generation&amp;annotation=For%20a%20possible%20job%20in%20the%20Seattle%20area%2C%20one%20of%20my%20prospective%20employers%20is%20having%20me%20submit%20some%20solutions%20to%20problems%20found%20on%20Project%20Euler.%20While%20working%20on%20a%20particular%20issue%2C%20I%27ve%20discovered%20that%20the%20method%20I%27ve%20used%20for%20calculating%20the%20list%20of%20" title="Google Bookmarks"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2011%2F04%2Fruby-prime-generation%2F&amp;t=Ruby%20Prime%20Generation" title="Facebook"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2011%2F04%2Fruby-prime-generation%2F&amp;title=Ruby%20Prime%20Generation&amp;notes=For%20a%20possible%20job%20in%20the%20Seattle%20area%2C%20one%20of%20my%20prospective%20employers%20is%20having%20me%20submit%20some%20solutions%20to%20problems%20found%20on%20Project%20Euler.%20While%20working%20on%20a%20particular%20issue%2C%20I%27ve%20discovered%20that%20the%20method%20I%27ve%20used%20for%20calculating%20the%20list%20of%20" title="del.icio.us"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2011%2F04%2Fruby-prime-generation%2F&amp;title=Ruby%20Prime%20Generation" title="DZone"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2011%2F04%2Fruby-prime-generation%2F&amp;partner=sociable" title="Print"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cornerofseven.com/blog/2011/04/ruby-prime-generation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>50 Lines of Code, Day 1: Live Wallpaper</title>
		<link>http://cornerofseven.com/blog/2010/06/50-lines-of-code-day-1-live-wallpaper/</link>
		<comments>http://cornerofseven.com/blog/2010/06/50-lines-of-code-day-1-live-wallpaper/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 02:44:28 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[50 Lines of Code]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Neat and Interesting]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[50loc]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Gist]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[Live Wallpaper]]></category>
		<category><![CDATA[LWP]]></category>

		<guid isPermaLink="false">http://cornerofseven.com/blog/?p=208</guid>
		<description><![CDATA[My first 50 Lines of Code entry, is the beginnings to an Android 2.1+ Live Wallpaper. Called Paint, the idea is to have four main colors at the edge of the screens. By the phone&#8217;s tilt, those colors will bleed into the screen itself, causing the animation, and interactivity with the phone regardless of whether [...]]]></description>
			<content:encoded><![CDATA[<p>My first 50 Lines of Code entry, is the beginnings to an Android 2.1+ Live Wallpaper.</p>
<p>Called Paint, the idea is to have four main colors at the edge of the screens. By the phone&#8217;s tilt, those colors will bleed into the screen itself, causing the animation, and interactivity with the phone regardless of whether or not you&#8217;re actually accessing an app. The LWP actually becomes as fun to use as anything else on the phone. <img src='http://cornerofseven.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The basic setup is contained in this Gist.  There&#8217;s more to add, but I made my quota for the day, and I want something to work on tomorrow. <img src='http://cornerofseven.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<span id="more-208"></span></p>
<p><script src="http://gist.github.com/443139.js"></script></p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F06%2F50-lines-of-code-day-1-live-wallpaper%2F&amp;title=50%20Lines%20of%20Code%2C%20Day%201%3A%20Live%20Wallpaper" title="Reddit"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=50%20Lines%20of%20Code%2C%20Day%201%3A%20Live%20Wallpaper%20-%20http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F06%2F50-lines-of-code-day-1-live-wallpaper%2F" title="Twitter"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F06%2F50-lines-of-code-day-1-live-wallpaper%2F&amp;title=50%20Lines%20of%20Code%2C%20Day%201%3A%20Live%20Wallpaper&amp;annotation=My%20first%2050%20Lines%20of%20Code%20entry%2C%20is%20the%20beginnings%20to%20an%20Android%202.1%2B%20Live%20Wallpaper.%0D%0A%0D%0ACalled%20Paint%2C%20the%20idea%20is%20to%20have%20four%20main%20colors%20at%20the%20edge%20of%20the%20screens.%20By%20the%20phone%27s%20tilt%2C%20those%20colors%20will%20bleed%20into%20the%20screen%20itself%2C%20causing%20the%20a" title="Google Bookmarks"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F06%2F50-lines-of-code-day-1-live-wallpaper%2F&amp;t=50%20Lines%20of%20Code%2C%20Day%201%3A%20Live%20Wallpaper" title="Facebook"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F06%2F50-lines-of-code-day-1-live-wallpaper%2F&amp;title=50%20Lines%20of%20Code%2C%20Day%201%3A%20Live%20Wallpaper&amp;notes=My%20first%2050%20Lines%20of%20Code%20entry%2C%20is%20the%20beginnings%20to%20an%20Android%202.1%2B%20Live%20Wallpaper.%0D%0A%0D%0ACalled%20Paint%2C%20the%20idea%20is%20to%20have%20four%20main%20colors%20at%20the%20edge%20of%20the%20screens.%20By%20the%20phone%27s%20tilt%2C%20those%20colors%20will%20bleed%20into%20the%20screen%20itself%2C%20causing%20the%20a" title="del.icio.us"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F06%2F50-lines-of-code-day-1-live-wallpaper%2F&amp;title=50%20Lines%20of%20Code%2C%20Day%201%3A%20Live%20Wallpaper" title="DZone"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F06%2F50-lines-of-code-day-1-live-wallpaper%2F&amp;partner=sociable" title="Print"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cornerofseven.com/blog/2010/06/50-lines-of-code-day-1-live-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>As seen on Facebook</title>
		<link>http://cornerofseven.com/blog/2010/04/as-seen-on-facebook/</link>
		<comments>http://cornerofseven.com/blog/2010/04/as-seen-on-facebook/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 23:59:29 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[face]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[geeks]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://cornerofseven.com/blog/2010/04/as-seen-on-facebook/</guid>
		<description><![CDATA[Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p><a href="http://cornerofseven.com/blog/wp-content/uploads/2010/04/codechat1.jpg"><img src="http://cornerofseven.com/blog/wp-content/uploads/2010/04/codechat1.jpg" alt="" title="Code Chat" width="482" height="978" class="aligncenter size-full wp-image-201" /></a></p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F04%2Fas-seen-on-facebook%2F&amp;title=As%20seen%20on%20Facebook" title="Reddit"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=As%20seen%20on%20Facebook%20-%20http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F04%2Fas-seen-on-facebook%2F" title="Twitter"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F04%2Fas-seen-on-facebook%2F&amp;title=As%20seen%20on%20Facebook&amp;annotation=" title="Google Bookmarks"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F04%2Fas-seen-on-facebook%2F&amp;t=As%20seen%20on%20Facebook" title="Facebook"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F04%2Fas-seen-on-facebook%2F&amp;title=As%20seen%20on%20Facebook&amp;notes=" title="del.icio.us"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F04%2Fas-seen-on-facebook%2F&amp;title=As%20seen%20on%20Facebook" title="DZone"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2010%2F04%2Fas-seen-on-facebook%2F&amp;partner=sociable" title="Print"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cornerofseven.com/blog/2010/04/as-seen-on-facebook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Job Hunt is Over, and RBeq moves!</title>
		<link>http://cornerofseven.com/blog/2009/08/the-job-hunt-is-over-and-rbeq-moves/</link>
		<comments>http://cornerofseven.com/blog/2009/08/the-job-hunt-is-over-and-rbeq-moves/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 01:31:08 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[equalizer]]></category>
		<category><![CDATA[girlfriend]]></category>
		<category><![CDATA[google code]]></category>
		<category><![CDATA[I Fight Dragons]]></category>
		<category><![CDATA[IFD]]></category>
		<category><![CDATA[left]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[RBEQ]]></category>

		<guid isPermaLink="false">http://cornerofseven.com/blog/?p=83</guid>
		<description><![CDATA[I&#8217;ve found a place to work, and it&#8217;s right around where home is.  I&#8217;m currently working as a contractor on the Rock Island Arsenal, as a contractor through a company based in Virgina called Sysorex.  Essentially, I&#8217;m reviewing and cleaning up code written for a transportation system.  Outside of that, Rhythmbox EQ has found a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found a place to work, and it&#8217;s right around where home is.  I&#8217;m currently working as a contractor on the <a href="http://www.ria.army.mil/" target="_blank">Rock Island Arsenal</a>, as a contractor through a company based in Virgina called Sysorex.  Essentially, I&#8217;m reviewing and cleaning up code written for a transportation system.  Outside of that, Rhythmbox EQ has found a more permanent home over at Google Code: Check it out <a href="http://code.google.com/p/rbeq/" target="_blank">here</a> to see it in all it&#8217;s new, shiny, google-fied glory.</p>
<p style="text-align: center;">Outside of that news, not much new going on here.  I&#8217;m single again, as Laura has decided she no longer feels anything for me.  I&#8217;m still a bit pissed off about the whole thing&#8230; it doesn&#8217;t seem like she&#8217;s losing much out of the arrangement (her parents never really liked me anyway, to the point of her dad saying that he wouldn&#8217;t come if we got married), where it&#8217;s been the second time I&#8217;ve contemplated giving her a ring.  Hooray for putting too much emotional attachment on something that doesn&#8217;t work.  But, in the process of that recovery, I&#8217;ve found a fantastic music group and group of friends that I couldn&#8217;t have ever imagined.  Toting the name <a href="http://www.ifightdragons.com" target="_blank">I Fight Dragons</a>, their music is part rock band, part 8-bit NES game, all crazy fun and awesome rolled together.  I suggest heading over to <a href="http://thesixtyone.com" target="_blank">theSixtyOne</a> and listening to them.  I&#8217;ve gone to one of their concerts, and am planning on going to another one at the end of this week. I&#8217;ve also made lego figurines of their 8-bit caricatures; some of the results of that:</p>
<div class="wp-caption alignnone" style="width: 266px"><a href="http://s3.amazonaws.com/twitpic/photos/full/20732368.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1250127639&amp;Signature=q07wptAZB26Udw4l%2F50UvAJnQoI%3D"><img class=" " title="Packy" src="http://s3.amazonaws.com/twitpic/photos/full/20732368.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1250127639&amp;Signature=q07wptAZB26Udw4l%2F50UvAJnQoI%3D" alt="Packy - Guitar, NES" width="256" height="192" /></a><p class="wp-caption-text">Packy - Guitar, NES</p></div>
<div class="wp-caption alignnone" style="width: 202px"><a href="http://s3.amazonaws.com/twitpic/photos/large/20733047.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1250127759&amp;Signature=yMAgTbTmhQqtNhsZwDcutEelISo%3D"><img class=" " title="Dave" src="http://s3.amazonaws.com/twitpic/photos/large/20733047.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1250127759&amp;Signature=yMAgTbTmhQqtNhsZwDcutEelISo%3D" alt="Dave - Drums" width="192" height="256" /></a><p class="wp-caption-text">Dave - Drums</p></div>
<div class="wp-caption alignnone" style="width: 202px"><a href="http://s3.amazonaws.com/twitpic/photos/large/20794284.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1250127933&amp;Signature=0TOENwO03ECAppdzGz8BP3ER7XU%3D"><img class=" " title="Bill" src="http://s3.amazonaws.com/twitpic/photos/large/20794284.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1250127933&amp;Signature=0TOENwO03ECAppdzGz8BP3ER7XU%3D" alt="Bill - Plays what I refer to as the Octo-pod" width="192" height="256" /></a><p class="wp-caption-text">Bill - Plays what I refer to as the &quot;Octo-pod&quot;</p></div>
<div class="wp-caption alignnone" style="width: 202px"><a href="http://s3.amazonaws.com/twitpic/photos/large/20816668.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1250127984&amp;Signature=9iuk6UlTug4G%2BE4JyVOAqiQYQvM%3D"><img class=" " title="Laura" src="http://s3.amazonaws.com/twitpic/photos/large/20816668.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1250127984&amp;Signature=9iuk6UlTug4G%2BE4JyVOAqiQYQvM%3D" alt="Laura - Vocals and Controllers" width="192" height="256" /></a><p class="wp-caption-text">Laura - Vocals and Controllers</p></div>
<p>There are two more of the band members, Brian and Hari.  I didn&#8217;t forget them, I just ran out of legos. <img src='http://cornerofseven.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I do need to get on here and put up some more things on occasion; I just don&#8217;t always have something to talk about, and so things get lost in the process.  I was humbled when I realized this comic was talking about me: <a href="http://xkcd.com/621/" target="_blank">http://xkcd.com/621/</a>.</p>
<p>Have a good day, and I&#8217;ll catch you guys on the wire sometime. <img src='http://cornerofseven.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2009%2F08%2Fthe-job-hunt-is-over-and-rbeq-moves%2F&amp;title=The%20Job%20Hunt%20is%20Over%2C%20and%20RBeq%20moves%21" title="Reddit"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=The%20Job%20Hunt%20is%20Over%2C%20and%20RBeq%20moves%21%20-%20http%3A%2F%2Fcornerofseven.com%2Fblog%2F2009%2F08%2Fthe-job-hunt-is-over-and-rbeq-moves%2F" title="Twitter"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2009%2F08%2Fthe-job-hunt-is-over-and-rbeq-moves%2F&amp;title=The%20Job%20Hunt%20is%20Over%2C%20and%20RBeq%20moves%21&amp;annotation=I%27ve%20found%20a%20place%20to%20work%2C%20and%20it%27s%20right%20around%20where%20home%20is.%C2%A0%20I%27m%20currently%20working%20as%20a%20contractor%20on%20the%20Rock%20Island%20Arsenal%2C%20as%20a%20contractor%20through%20a%20company%20based%20in%20Virgina%20called%20Sysorex.%C2%A0%20Essentially%2C%20I%27m%20reviewing%20and%20cleaning%20up%20code%20" title="Google Bookmarks"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2009%2F08%2Fthe-job-hunt-is-over-and-rbeq-moves%2F&amp;t=The%20Job%20Hunt%20is%20Over%2C%20and%20RBeq%20moves%21" title="Facebook"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2009%2F08%2Fthe-job-hunt-is-over-and-rbeq-moves%2F&amp;title=The%20Job%20Hunt%20is%20Over%2C%20and%20RBeq%20moves%21&amp;notes=I%27ve%20found%20a%20place%20to%20work%2C%20and%20it%27s%20right%20around%20where%20home%20is.%C2%A0%20I%27m%20currently%20working%20as%20a%20contractor%20on%20the%20Rock%20Island%20Arsenal%2C%20as%20a%20contractor%20through%20a%20company%20based%20in%20Virgina%20called%20Sysorex.%C2%A0%20Essentially%2C%20I%27m%20reviewing%20and%20cleaning%20up%20code%20" title="del.icio.us"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2009%2F08%2Fthe-job-hunt-is-over-and-rbeq-moves%2F&amp;title=The%20Job%20Hunt%20is%20Over%2C%20and%20RBeq%20moves%21" title="DZone"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fcornerofseven.com%2Fblog%2F2009%2F08%2Fthe-job-hunt-is-over-and-rbeq-moves%2F&amp;partner=sociable" title="Print"><img src="http://cornerofseven.com/blog/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cornerofseven.com/blog/2009/08/the-job-hunt-is-over-and-rbeq-moves/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

