<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>ServerBeach Blog</title>
	<atom:link href="http://serverbeach.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://serverbeach.wordpress.com</link>
	<description>Hosting talk by geeks, for geeks</description>
	<lastBuildDate>Sun, 15 Jan 2012 14:51:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='serverbeach.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>ServerBeach Blog</title>
		<link>http://serverbeach.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://serverbeach.wordpress.com/osd.xml" title="ServerBeach Blog" />
	<atom:link rel='hub' href='http://serverbeach.wordpress.com/?pushpress=hub'/>
		<item>
		<title>A Binary Salute to a Digital Visionary</title>
		<link>http://serverbeach.wordpress.com/2011/10/24/a-binary-salute-to-a-digital-visionary/</link>
		<comments>http://serverbeach.wordpress.com/2011/10/24/a-binary-salute-to-a-digital-visionary/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 19:52:34 +0000</pubDate>
		<dc:creator>Serra Boten</dc:creator>
				<category><![CDATA[Geek Love]]></category>

		<guid isPermaLink="false">http://serverbeach.wordpress.com/?p=1423</guid>
		<description><![CDATA[October 2011 hasn&#8217;t been kind to the fathers of modern computing. The death of Apple front man Steve Jobs spawned a wave of iWakes across the world, but the loss of Dennis Ritchie - the father of the C programming language and unix, was just as sad a day for techies everywhere. Perhaps even worse &#8211; as many people didn&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1423&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://serverbeach.files.wordpress.com/2011/10/tumblr_lt019edhss1qzxfyto1_500.png"><img class="alignright size-medium wp-image-1424" style="margin:3px;" title="tumblr_lt019eDhss1qzxfyto1_500" src="http://serverbeach.files.wordpress.com/2011/10/tumblr_lt019edhss1qzxfyto1_500.png?w=210&#038;h=210" alt="" width="210" height="210" /></a></p>
<p>October 2011 hasn&#8217;t been kind to the fathers of modern computing.</p>
<p>The death of Apple front man <strong>Steve Jobs</strong> spawned a wave of iWakes across the world, but the loss of <a href="http://en.wikipedia.org/wiki/Dennis_Ritchie">Dennis Ritchie</a> - the father of the <strong>C programming language</strong> and <strong>unix</strong>, was just as sad a day for techies everywhere. Perhaps even worse &#8211; as many people didn&#8217;t even notice.</p>
<p>Afterall, OSX could not exist without the work that Ritchie did 30 years ago.</p>
<p>To pay respect to the digital pioneer, our very own <strong>Sean Davis</strong> wrote a C program to send a cheers to the big bit bucket in the sky.</p>
<p>You can find the original <a href="http://www.endersgame.net/farewell.c.txt">here</a>.</p>
<p>&#8212;&#8211;</p>
<pre>#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;string.h&gt;
#include &lt;unistd.h&gt;
#include &lt;fcntl.h&gt;
#include &lt;errno.h&gt;
#include &lt;sys/types.h&gt;
#include &lt;sys/uio.h&gt;

#define URANDOM "/dev/urandom"
#define OUT "/dev/null"
#define A_FORTY 5 /* 40 bits */

int
main(argc,argv)
	int argc;
	char **argv;
{
	char *buf;
	int fd,ret;
	size_t rwret;

	buf = (char *)malloc(A_FORTY);

	if (buf == NULL) {
		fprintf(stderr,"Can't hold a forty. (%s)\n",
			strerror(errno));
		exit(1);
	}

	fd = open(URANDOM,O_RDONLY);

	if (fd == -1) {
		fprintf(stderr,"Failed to open %s: %s\n",
			URANDOM,strerror(errno));
		free(buf);
		exit(1);
	}

	rwret = read(fd,buf,A_FORTY);

	if (rwret == -1) {
		fprintf(stderr,"Failed to grab a forty: %s\n",
			strerror(errno));
		free(buf);
		exit(1);
	}

	if (rwret == 5) {
		printf("Got a forty.\n");
	} else if (rwret == -1) {
		fprintf(stderr,"Couldn't get a forty. (%s)\n",
			strerror(errno));
		free(buf);
		exit(1);
	} else {
		fprintf(stderr,"This forty is light, only %d bits!\n",
			(int)rwret * 8);
		free(buf);
		exit(1);
	}

	ret = close(fd);

	if (ret == -1) {
		fprintf(stderr,"Failed to close the beer fridge. (%s)\n",
			strerror(errno));
		free(buf);
		exit(1);
	}

	fd = open(OUT,O_WRONLY);

	if (fd == -1) {
		fprintf(stderr,"Can't find the drain. (%s)\n",
			strerror(errno));
		free(buf);
		exit(1);
	}

	rwret = write(fd,buf,A_FORTY);

	if (rwret == 5) {
		printf("Goodbye, Dennis. I wouldn't be what I am without you.\n");
		printf("Poured out forty bits for our dead homie.\n");
	} else {
		fprintf(stderr,"The drain must be clogged, only poured out %d bits.\n",
			(int)rwret * 8);
		free(buf);
		ret = close(fd);
		if (ret == -1) {
			fprintf(stderr,"Can't plug the drain (%s)\n",
				strerror(errno));
			exit(1);
		}
	}

	free(buf);
	exit(0);
}

Goodbye Dennis, and thanks for all the magic!</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/serverbeach.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/serverbeach.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/serverbeach.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/serverbeach.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/serverbeach.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/serverbeach.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/serverbeach.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/serverbeach.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/serverbeach.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/serverbeach.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/serverbeach.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/serverbeach.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/serverbeach.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/serverbeach.wordpress.com/1423/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1423&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://serverbeach.wordpress.com/2011/10/24/a-binary-salute-to-a-digital-visionary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c51dc17c9f2f26e71d182e880f5ee9c3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">m0demgirl</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/10/tumblr_lt019edhss1qzxfyto1_500.png?w=300" medium="image">
			<media:title type="html">tumblr_lt019eDhss1qzxfyto1_500</media:title>
		</media:content>
	</item>
		<item>
		<title>Open Heart Surgery, Geeky Beach Style.</title>
		<link>http://serverbeach.wordpress.com/2011/09/23/open-heart-surgery-geeky-beach-style/</link>
		<comments>http://serverbeach.wordpress.com/2011/09/23/open-heart-surgery-geeky-beach-style/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 09:31:11 +0000</pubDate>
		<dc:creator>Serra Boten</dc:creator>
				<category><![CDATA[ServerBeach]]></category>
		<category><![CDATA[FastFiber Network]]></category>
		<category><![CDATA[Network Upgrade]]></category>

		<guid isPermaLink="false">http://serverbeach.wordpress.com/?p=1401</guid>
		<description><![CDATA[I once heard someone say that doing a major network upgrade on a live production network is not unlike performing open heart surgery on someone &#8211; while they are running a marathon. In the world of The Internet, one bad keystroke can be as dangerous as an unanticipated slip of the scalpel. Over the past [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1401&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://serverbeach.files.wordpress.com/2011/09/heart-network.jpg"><img class="alignright size-medium wp-image-1402" style="border:1px solid black;margin:3px;" title="heart-network" src="http://serverbeach.files.wordpress.com/2011/09/heart-network.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a>I once heard someone say that doing a major network upgrade on a live production network is not unlike performing open heart surgery on someone &#8211; while they are running a marathon. In the world of The Internet, one bad keystroke can be as dangerous as an unanticipated slip of the scalpel.</p>
<p>Over the past 8 months, the <strong>Serverbeach</strong> network has undergone a series of upgrades that definitely felt like open heart surgery. It’s challenging to truly do the scope of these network upgrades justice, but I&#8217;d like to attempt to give this project a bit of perspective.</p>
<p>We spent months designing, planning, organizing, testing, and re-testing. Planning for any possible issues that might come up, because there&#8217;s no such thing as an undo button on a live production network. No amount of planning can make that open heart surgery any easier, It simply means you’re more aware of the difficulties that might arise, and are suitably prepared for them.</p>
<p>Although a datacenter network can range from modest all the way to the Googlesque, they can all be broken into 3 layers. The Serverbeach network upgrades touched every single layer in each data center. We completely upgraded the top two layers, essentially transplanting the heart and all supporting muscle and valves. On top of the transplant, we also reconfigured the whole bottom layer of the network, which would equate to making every vein and artery more efficient. In the end we succeeded in completely overhauling Serverbeach&#8217;s circulatory system.</p>
<p>For a little more directness on the scope of this project, here are some of the numbers that make up what the 5 person backbone network engineering team worked through:</p>
<p>Number of man-hours spent planning, coordinating, ordering, designing, meeting, preparing, decommissioning, documenting, diagramming: <strong>1800</strong><br />
Number of man-hours spent in after hours change control windows: <strong>300</strong><br />
Number of man-hours spent in after hours emergency change control windows: <strong>18</strong><br />
Number of after hours Change controls performed: <strong>16</strong><br />
Number of after hours Emergency Change controls performed: <strong>1</strong><br />
Number of Kilometers/Miles flown: <strong>33,800 / 21,000</strong><br />
Number of hours spent in airplanes: <strong>55</strong><br />
Number of network devices reconfigured locally while sitting within the datacenter : <strong>380</strong><br />
Number of hardware failures that occurred within Change Control windows: <strong>6</strong><br />
<strong></strong><br />
To allude back to the original metaphor of comparing a network upgrade to open heart surgery, a successful surgery requires more than just a surgeon to be a success. Just like a surgeon is aided by a variety of resources, so too was the backbone network engineering team aided by an incredible variety of teams within Peer1. Without this level of coordination of efforts and awesome team work, these upgrades would not be possible.</p>
<blockquote><p><em>Guest author<strong> Ben &#8220;Dr. Network&#8221; Kennedy</strong> is a hockey player, network engineer, and aspiring open heart surgeon who has developed a mild case of Stockholm syndrome ever since the 8 month network maintenance window has closed. </em></p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/serverbeach.wordpress.com/1401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/serverbeach.wordpress.com/1401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/serverbeach.wordpress.com/1401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/serverbeach.wordpress.com/1401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/serverbeach.wordpress.com/1401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/serverbeach.wordpress.com/1401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/serverbeach.wordpress.com/1401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/serverbeach.wordpress.com/1401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/serverbeach.wordpress.com/1401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/serverbeach.wordpress.com/1401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/serverbeach.wordpress.com/1401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/serverbeach.wordpress.com/1401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/serverbeach.wordpress.com/1401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/serverbeach.wordpress.com/1401/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1401&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://serverbeach.wordpress.com/2011/09/23/open-heart-surgery-geeky-beach-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c51dc17c9f2f26e71d182e880f5ee9c3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">m0demgirl</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/09/heart-network.jpg?w=300" medium="image">
			<media:title type="html">heart-network</media:title>
		</media:content>
	</item>
		<item>
		<title>70 Years of SuperComputing Infographic</title>
		<link>http://serverbeach.wordpress.com/2011/08/17/70-years-of-supercomputing-infographic/</link>
		<comments>http://serverbeach.wordpress.com/2011/08/17/70-years-of-supercomputing-infographic/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 22:09:27 +0000</pubDate>
		<dc:creator>Serra Boten</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[Infographics]]></category>
		<category><![CDATA[SuperComputing]]></category>

		<guid isPermaLink="false">http://serverbeach.wordpress.com/?p=1390</guid>
		<description><![CDATA[From vacuum tubes and that filled entire basements and required a math degree to program to 8.2 petaflops on demand in the cloud, computing has come a long way over the past 70 years. Our friends over at PEER 1 Hosting made an infographic Created by PEER 1 Cloud Hosting<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1390&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>From vacuum tubes and that filled entire basements and required a math degree to program to 8.2 petaflops on demand in the cloud, computing has come a long way over the past 70 years. Our friends over at PEER 1 Hosting made an infographic </p>
<p><a href="http://www.peer1.com/blog/wp-content/uploads/Supercomputers_Final.png" rel="lightbox[1487]"> <img src="http://www.peer1.com/blog/wp-content/uploads/Supercomputers_Final_Small.png" alt="" width="450" border="0" /></a><br />
<span style="font-size:10px;">Created by PEER 1 <a href="http://www.peer1.com/hosting/cloud-services.php?v=p1&amp;utm_source=Blog&amp;utm_medium=Infographic&amp;utm_campaign=Supercomputing">Cloud Hosting</a></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/serverbeach.wordpress.com/1390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/serverbeach.wordpress.com/1390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/serverbeach.wordpress.com/1390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/serverbeach.wordpress.com/1390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/serverbeach.wordpress.com/1390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/serverbeach.wordpress.com/1390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/serverbeach.wordpress.com/1390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/serverbeach.wordpress.com/1390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/serverbeach.wordpress.com/1390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/serverbeach.wordpress.com/1390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/serverbeach.wordpress.com/1390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/serverbeach.wordpress.com/1390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/serverbeach.wordpress.com/1390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/serverbeach.wordpress.com/1390/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1390&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://serverbeach.wordpress.com/2011/08/17/70-years-of-supercomputing-infographic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c51dc17c9f2f26e71d182e880f5ee9c3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">m0demgirl</media:title>
		</media:content>

		<media:content url="http://www.peer1.com/blog/wp-content/uploads/Supercomputers_Final_Small.png" medium="image" />
	</item>
		<item>
		<title>Hug a SysAdmin on July 29th</title>
		<link>http://serverbeach.wordpress.com/2011/07/25/hug-a-sysadmin-on-july-29th/</link>
		<comments>http://serverbeach.wordpress.com/2011/07/25/hug-a-sysadmin-on-july-29th/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 21:36:06 +0000</pubDate>
		<dc:creator>Serra Boten</dc:creator>
				<category><![CDATA[Geek Love]]></category>
		<category><![CDATA[In the Community]]></category>
		<category><![CDATA[Appreciation]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[ThinkGeek]]></category>

		<guid isPermaLink="false">http://serverbeach.wordpress.com/?p=1374</guid>
		<description><![CDATA[Being a Systems Administrator can be thankless work. They&#8217;re the ones who keep your data flowing, networks pinging and computers booting round the clock, and the cruel hallmark of a great Sysadmin is this: If they&#8217;re doing a good job, you don&#8217;t even know they&#8217;re doing it. So we have SysAdmin Appreciation Day &#8211; an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1374&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Being a Systems Administrator can be thankless work. They&#8217;re the ones who keep your data flowing, networks pinging and computers booting round the clock, and the cruel hallmark of a great Sysadmin is this:</p>
<p><strong>If they&#8217;re doing a good job, you don&#8217;t even know they&#8217;re doing it.</strong></p>
<p><a href="http://serverbeach.files.wordpress.com/2011/07/computer_fire-300x215.jpg"><img class="aligncenter size-full wp-image-1379" title="dontpanic" src="http://serverbeach.files.wordpress.com/2011/07/computer_fire-300x215.jpg?w=468" alt=""   /></a></p>
<p>So we have<strong> <a href="http://www.sysadminday.com/whatsysadmin.html" target="_blank">SysAdmin Appreciation Day</a></strong> &#8211; an attempt to recognize the unsung heros of Information Technology. And while a single day of recognition and appreciation doesn&#8217;t really undo the countless hours of frustration that can come along with the job, it sure doesn&#8217;t hurt either.</p>
<p>This year <a href="http://www.thinkgeek.com" target="_blank">ThinkGeek </a>has partnered with <a href="http://www.themarysue.com/" target="_blank">The Marysue</a> and <a href="http://www.geekosystem.com/" target="_blank">Geekosystem</a> to sweeten the deal with a <strong>SysAdmin Pageant</strong>! Nominate your favorite SysAdmin and they could be crowned <strong>SysKing</strong> or <strong>SysQueen</strong> of 2011. Winners take home a whole array of prizes, including a <a href="http://fastcache.gawkerassets.com/assets/images/13242/2010/01/screen_shot_2010-01-29_at_11.29.44_am.png" target="_blank"><strong>16GB iPad</strong></a>, a<a href="http://www.thinkgeek.com/images/products/additional/large/my-stapler-alt1.jpg" target="_blank"> fancy red swingline stapler</a>, and an RTFM mug.</p>
<p style="text-align:center;"><a href="http://www.thinkgeek.com/contests/sysadmin2011.shtml" target="_blank"><img class="aligncenter size-medium wp-image-1378" title="pageant" src="http://serverbeach.files.wordpress.com/2011/07/11-07-18-sysadmin-blog.jpg?w=300&#038;h=136" alt="" width="300" height="136" /></a></p>
<p style="text-align:left;">If you&#8217;d just like to show your Sysadmin love the old fashioned way, I suggest the showering your I.T. department with the following on Friday:</p>
<ul>
<li>Delicious food</li>
<li>High fives / Mad Props</li>
<li>Cold hard cash</li>
<li>Bottles of fermented grain</li>
<li>Cake and other tasty treats</li>
</ul>
<p>What do you have planned for your SysAdmins for this Friday?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/serverbeach.wordpress.com/1374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/serverbeach.wordpress.com/1374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/serverbeach.wordpress.com/1374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/serverbeach.wordpress.com/1374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/serverbeach.wordpress.com/1374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/serverbeach.wordpress.com/1374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/serverbeach.wordpress.com/1374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/serverbeach.wordpress.com/1374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/serverbeach.wordpress.com/1374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/serverbeach.wordpress.com/1374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/serverbeach.wordpress.com/1374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/serverbeach.wordpress.com/1374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/serverbeach.wordpress.com/1374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/serverbeach.wordpress.com/1374/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1374&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://serverbeach.wordpress.com/2011/07/25/hug-a-sysadmin-on-july-29th/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c51dc17c9f2f26e71d182e880f5ee9c3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">m0demgirl</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/07/computer_fire-300x215.jpg" medium="image">
			<media:title type="html">dontpanic</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/07/11-07-18-sysadmin-blog.jpg?w=300" medium="image">
			<media:title type="html">pageant</media:title>
		</media:content>
	</item>
		<item>
		<title>ServerBeach Bowls for Kid&#8217;s Sake</title>
		<link>http://serverbeach.wordpress.com/2011/06/07/serverbeach-bowls-for-kids-sake/</link>
		<comments>http://serverbeach.wordpress.com/2011/06/07/serverbeach-bowls-for-kids-sake/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 09:29:59 +0000</pubDate>
		<dc:creator>Serra Boten</dc:creator>
				<category><![CDATA[In the Community]]></category>
		<category><![CDATA[ServerBeach]]></category>
		<category><![CDATA[Bowl for Kids' Sake]]></category>
		<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://serverbeach.wordpress.com/?p=1355</guid>
		<description><![CDATA[Last month a team of Beachers traded in their geeky glasses for some super stylin&#8217; shoes and headed down to the bowling alley to take part in the annual Bowl For Kids&#8217; Sake Fundraiser. The event is the largest annual fundraiser for Big Brothers and Big Sisters of South Texas, and very close to our [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1355&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://serverbeach.files.wordpress.com/2011/06/bbbs.jpeg"><img class="alignright size-medium wp-image-1357" style="margin:3px;" title="bbbs" src="http://serverbeach.files.wordpress.com/2011/06/bbbs.jpeg?w=300&#038;h=225" alt="" width="300" height="225" /></a>Last month a team of Beachers traded in their geeky glasses for some super stylin&#8217; shoes and headed down to the bowling alley to take part in the annual <strong><a href="http://bfks.kintera.org/faf/help/helpEventInfo.asp?ievent=461619&amp;lis=1&amp;kntae461619=FB2EDB2AE8EB43ED8B186201817BB749">Bowl For Kids&#8217; Sake</a></strong> Fundraiser.</p>
<p>The event is the largest annual fundraiser for <strong>Big Brothers and Big Sisters</strong> of South Texas, and very close to our own <strong>Alyssa Vargas</strong>&#8216; heart, as she was involved as a Big Sister back when she was in High School &amp; College. She coordinated our participation in the event, and was thrilled to see that we were able to fill not one, not two but <em>three</em> teams to represent the SeverBeach family.</p>
<p>&#8220;Participating in the Bowl for Kids Sake fundraiser was a great experience&#8221; said Business Analyst <strong>Matt Valdes</strong>. &#8220;It&#8217;s always rewarding to help raise money for a good cause, especially one that helps children. To be able to play a game while doing it makes it a win-win situation!&#8221;</p>
<p>Congratulations go out to our Assistant Data Center Manager<strong><a href="http://serverbeach.files.wordpress.com/2011/02/brad1.png" target="_blank"> Brad Pearson</a></strong> for bowling  the game of his life, knocking down a 7-10 split. Apparently our team was defeated during the hula hoop contest, but I hear guarantees of redemption being promised for next year.</p>
<p><a href="http://serverbeach.files.wordpress.com/2011/06/hula.jpeg"><img class="size-medium wp-image-1358 alignright" style="margin:3px;" title="hula" src="http://serverbeach.files.wordpress.com/2011/06/hula.jpeg?w=225&#038;h=300" alt="" width="225" height="300" /></a>I&#8217;ve also been told there&#8217;s video of IT Support Guru <strong>Jim Park</strong> and our very own Big Kahuna <strong>Dax Moreno</strong> dancing the YMCA circulating on Facebook, but this has yet to be confirmed by the author.</p>
<p>Special thanks goes out to all of our friends and families who supported our efforts. In total we were able to raise almost $2000, all of which will go toward making a positive, long-lasting impact on children in our community.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/serverbeach.wordpress.com/1355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/serverbeach.wordpress.com/1355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/serverbeach.wordpress.com/1355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/serverbeach.wordpress.com/1355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/serverbeach.wordpress.com/1355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/serverbeach.wordpress.com/1355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/serverbeach.wordpress.com/1355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/serverbeach.wordpress.com/1355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/serverbeach.wordpress.com/1355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/serverbeach.wordpress.com/1355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/serverbeach.wordpress.com/1355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/serverbeach.wordpress.com/1355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/serverbeach.wordpress.com/1355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/serverbeach.wordpress.com/1355/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1355&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://serverbeach.wordpress.com/2011/06/07/serverbeach-bowls-for-kids-sake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c51dc17c9f2f26e71d182e880f5ee9c3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">m0demgirl</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/06/bbbs.jpeg?w=300" medium="image">
			<media:title type="html">bbbs</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/06/hula.jpeg?w=225" medium="image">
			<media:title type="html">hula</media:title>
		</media:content>
	</item>
		<item>
		<title>Geek Pride Day Contest Winners</title>
		<link>http://serverbeach.wordpress.com/2011/05/27/geek-pride-day-contest-winners/</link>
		<comments>http://serverbeach.wordpress.com/2011/05/27/geek-pride-day-contest-winners/#comments</comments>
		<pubDate>Fri, 27 May 2011 17:59:48 +0000</pubDate>
		<dc:creator>Serra Boten</dc:creator>
				<category><![CDATA[Geek Love]]></category>
		<category><![CDATA[ServerBeach]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[geek pride day]]></category>

		<guid isPermaLink="false">http://serverbeach.wordpress.com/?p=1318</guid>
		<description><![CDATA[Congratulations to our five Geek Pride Day contest winners! 1. Jason enjoyed towel day by reading some Douglas Adams and playing some minecraft 2. Alex hangs out at work with his friend little Cthulhu 3. Jot shows off his customized Nintendo DS project 4. Jennifer is an indisputable Queen of the Geeks (check her full [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1318&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Congratulations</strong> to our five Geek Pride Day contest winners!</p>
<p><a href="http://serverbeach.files.wordpress.com/2011/05/jason-towel.jpg"><img class="size-medium wp-image-1319 alignnone" title="jason towel" src="http://serverbeach.files.wordpress.com/2011/05/jason-towel.jpg?w=210&#038;h=265" alt="" width="210" height="265" /></a> <a href="http://serverbeach.files.wordpress.com/2011/05/alex2.jpg"><img class="alignnone size-medium wp-image-1322" title="Alex2" src="http://serverbeach.files.wordpress.com/2011/05/alex2.jpg?w=204&#038;h=265" alt="" width="204" height="265" /></a></p>
<p><a href="http://serverbeach.files.wordpress.com/2011/05/jot2.jpg"><img class="alignnone size-medium wp-image-1330" title="jot2" src="http://serverbeach.files.wordpress.com/2011/05/jot2.jpg?w=421&#038;h=177" alt="" width="421" height="177" /></a></p>
<p><a href="http://serverbeach.files.wordpress.com/2011/05/jen1.png"><img class="alignnone size-medium wp-image-1324" title="jen" src="http://serverbeach.files.wordpress.com/2011/05/jen1.png?w=209&#038;h=283" alt="" width="209" height="283" /></a> <a href="http://serverbeach.files.wordpress.com/2011/05/chris-marvin.jpg"><img class="alignnone size-medium wp-image-1328" title="chris marvin" src="http://serverbeach.files.wordpress.com/2011/05/chris-marvin.jpg?w=208&#038;h=283" alt="" width="208" height="283" /></a></p>
<p>1. <strong>Jason</strong> enjoyed towel day by reading some Douglas Adams and playing some minecraft<br />
2. <strong>Alex</strong> hangs out at work with his friend little Cthulhu<br />
3. <strong>Jot</strong> shows off his customized Nintendo DS project<br />
4. <strong>Jennifer</strong> is an indisputable Queen of the Geeks (check her full submission <a href="http://farm4.static.flickr.com/3659/5755050663_e7863d0482_o.jpg" target="_blank">here</a>)<br />
5. <strong>Chris</strong> keeps a reminder from Marvin the paranoid android close at all times: Don&#8217;t Panic!</p>
<p>We had a lot of great entries to the contest, you can check out the rest of them <a href="http://www.flickr.com/photos/peer1/sets/72157626633985061/">here</a> if you&#8217;d like, and let us know your favorites!</p>
<p>Winners will receive an awesome $100 credit at<strong> <a href="http://www.thinkgeek.com/">ThinkGeek.com</a></strong>, and we will be sending a free copy of our <strong><a href="http://www.peer1.com/map-of-the-internet" target="_blank">Map of the Internet</a> </strong>poster to all participants. If you submitted a photo please forward your address to me (sboten at serverbeach dot com) so I can get your poster on it&#8217;s way as soon as possible.</p>
<p>Thanks again to everyone who entered from all of us at ServerBeach &#8211; we definitely got a kick out of all your photos. Until next year &#8211; Stay Geeky!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/serverbeach.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/serverbeach.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/serverbeach.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/serverbeach.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/serverbeach.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/serverbeach.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/serverbeach.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/serverbeach.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/serverbeach.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/serverbeach.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/serverbeach.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/serverbeach.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/serverbeach.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/serverbeach.wordpress.com/1318/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1318&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://serverbeach.wordpress.com/2011/05/27/geek-pride-day-contest-winners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c51dc17c9f2f26e71d182e880f5ee9c3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">m0demgirl</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/05/jason-towel.jpg?w=225" medium="image">
			<media:title type="html">jason towel</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/05/alex2.jpg?w=231" medium="image">
			<media:title type="html">Alex2</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/05/jot2.jpg?w=300" medium="image">
			<media:title type="html">jot2</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/05/jen1.png?w=222" medium="image">
			<media:title type="html">jen</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/05/chris-marvin.jpg?w=225" medium="image">
			<media:title type="html">chris marvin</media:title>
		</media:content>
	</item>
		<item>
		<title>Pebkacs, Cthulhu and Stormtroopers, Oh My! Last chance to show us your Geek Pride!</title>
		<link>http://serverbeach.wordpress.com/2011/05/24/pebkacs-cthulhu-and-stormtroopers-oh-my/</link>
		<comments>http://serverbeach.wordpress.com/2011/05/24/pebkacs-cthulhu-and-stormtroopers-oh-my/#comments</comments>
		<pubDate>Tue, 24 May 2011 18:44:28 +0000</pubDate>
		<dc:creator>Serra Boten</dc:creator>
				<category><![CDATA[Geek Love]]></category>
		<category><![CDATA[geek pride day]]></category>
		<category><![CDATA[ServerBeach]]></category>

		<guid isPermaLink="false">http://serverbeach.wordpress.com/?p=1310</guid>
		<description><![CDATA[Geek Pride Day is tomorrow -  Have you entered our contest yet?  Take a look at all the entries so far and let us know which is your favourite. So far we&#8217;ve had appearances from an astronaught, Darth Vader, Gordon Freeman and even the Queen of the Geeks herself! You have until 5pm PST tomorrow [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1310&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 224px"><img class=" " src="http://farm3.static.flickr.com/2156/5737177201_7bb7888b9d_b.jpg" alt="" width="214" height="222" /><p class="wp-caption-text">Canucks/StarWars/Geek pride!</p></div>
<p><strong>Geek Pride Day</strong> is tomorrow -  Have you entered our <a href="http://serverbeach.files.wordpress.com/2011/05/geekpride.jpg">contest </a>yet?  Take a look at <a href="http://www.flickr.com/photos/peer1/sets/72157626633985061/show/">all the entries so far </a>and let us know which is your favourite. So far we&#8217;ve had appearances from <a href="http://farm6.static.flickr.com/5062/5755050531_1e0c3ec77a_b.jpg">an astronaught</a>, <a href="http://farm3.static.flickr.com/2226/5755050683_906491c71c_b.jpg">Darth Vader</a>, <a href="http://farm3.static.flickr.com/2205/5755050623_6fc383d785_o.jpg">Gordon Freeman</a> and even the <a href="http://farm4.static.flickr.com/3659/5755050663_e7863d0482_o.jpg">Queen of the Geeks</a> herself!</p>
<p>You have until 5pm PST tomorrow to get over to <a href="http://www.facebook.com/weheartgeeks">facebook</a> and post your geeky photos on our wall to get your free<a href="http://www.peer1.com/blog/2011/03/map-of-the-internet-2011/"> Map of the Internet</a> poster and a your chance to win<strong> one of five $100 credits at <a href="http://www.thinkgeek.com">Thinkgeek.com.</a></strong><br />
<strong></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/serverbeach.wordpress.com/1310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/serverbeach.wordpress.com/1310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/serverbeach.wordpress.com/1310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/serverbeach.wordpress.com/1310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/serverbeach.wordpress.com/1310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/serverbeach.wordpress.com/1310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/serverbeach.wordpress.com/1310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/serverbeach.wordpress.com/1310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/serverbeach.wordpress.com/1310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/serverbeach.wordpress.com/1310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/serverbeach.wordpress.com/1310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/serverbeach.wordpress.com/1310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/serverbeach.wordpress.com/1310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/serverbeach.wordpress.com/1310/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1310&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://serverbeach.wordpress.com/2011/05/24/pebkacs-cthulhu-and-stormtroopers-oh-my/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c51dc17c9f2f26e71d182e880f5ee9c3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">m0demgirl</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2156/5737177201_7bb7888b9d_b.jpg" medium="image" />
	</item>
		<item>
		<title>Show Us Your Geek Pride to Win $100 at Thinkgeek.com</title>
		<link>http://serverbeach.wordpress.com/2011/05/13/show-us-your-geek-pride-to-win-100-at-thinkgeek-com/</link>
		<comments>http://serverbeach.wordpress.com/2011/05/13/show-us-your-geek-pride-to-win-100-at-thinkgeek-com/#comments</comments>
		<pubDate>Fri, 13 May 2011 09:22:15 +0000</pubDate>
		<dc:creator>Serra Boten</dc:creator>
				<category><![CDATA[Geek Love]]></category>
		<category><![CDATA[Geek Pride]]></category>
		<category><![CDATA[giveaways]]></category>
		<category><![CDATA[ServerBeach]]></category>
		<category><![CDATA[Winning]]></category>

		<guid isPermaLink="false">http://serverbeach.wordpress.com/?p=1287</guid>
		<description><![CDATA[May 25th is Geek Pride Day &#8211; An entire day dedicated to embracing your inner geek! This year we&#8217;re celebrating by offering FIVE $100 gift certificates for ThinkGeek.com. To enter all you have to do is like us on facebook and post a picture or video on our wall showing us your geek pride. Entries [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1287&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://serverbeach.files.wordpress.com/2011/05/geekpride.jpg"><img class="aligncenter size-full wp-image-1297" style="border:1px solid black;" title="geekpride" src="http://serverbeach.files.wordpress.com/2011/05/geekpride.jpg?w=468&#038;h=291" alt="" width="468" height="291" /></a></p>
<p>May 25th is <strong><a href="http://en.wikipedia.org/wiki/Geek_Pride_Day">Geek Pride Day</a> &#8211; </strong>An entire day dedicated to embracing your inner geek<strong>!</strong> This year we&#8217;re celebrating by offering<strong> FIVE $100 gift certificates for ThinkGeek.com</strong>. To enter all you have to do is <a href="http://www.facebook.com/WeHeartGeeks">like us on facebook</a> and post a picture or video on our wall showing us your geek pride. Entries can be anything that <em>you</em> think is awesome but other people might not all understand &#8211; maybe it&#8217;s your mint condition original issue Millennium Falcon model, that Cthulhu costume you wore last year for Halloween, that light sensitive midi controller you built out of a an old Nintendo or even your &#8216;There&#8217;s no place like 127.0.0.1&#8242; door mat. Anything that says <strong>I&#8217;m a Geek &#8211; and Proud of it!</strong></p>
<p>And just because we love you, every entry get will get a free copy of our full sized <a href="http://www.peer1.com/map-of-the-internet" target="_blank"><strong>Map of the Internet</strong></a> poster! Click <a href="http://www.facebook.com/weheartgeeks" target="_blank">facebook.com/WeHeartGeeks</a> today and post your entry before May 25th to win.</p>
<p><strong>What Makes A Geek and Why Do We Love Them?</strong></p>
<p><strong> </strong><img class="alignright size-medium wp-image-1299" style="border:1px solid black;margin:3px;" title="132261_10150112183315100_505900099_7965978_7944626_o(1)" src="http://serverbeach.files.wordpress.com/2011/05/132261_10150112183315100_505900099_7965978_7944626_o1.jpg?w=199&#038;h=300" alt="" width="199" height="300" />When you think of the word Geek, what comes to mind? Pocket protectors? Glasses? An insatiable love for 20 sided die? Skillful mastery of quantum mechanics and an affinity for Renaissance fairs? Or maybe it&#8217;s the the guy or girl who rescues your computer at work, or the friend who comes over and sets up your TiVO for you?</p>
<p>Whatever your internal geek stereotype may be, I think there is a common thread between them, and it isn&#8217;t necessarily just mouth breathing and social awkwardness.</p>
<p>For example, I have a friend with an extensive record collection. He used to run a record store, and now has an entire room devoted to his vinyl. It&#8217;s meticulously organized, incredibly thorough and properly cataloged. In short, it&#8217;s <em>awesome</em>. But you get this guy talking about music&#8230; he&#8217;ll just keep talking. Forever. Add another music buff to the conversation and you&#8217;ve got yourself a pair of <strong>music geeks</strong>, who will proceed to talk your ear off for hours, which can get pretty boring if you&#8217;ve never heard any of the music they are talking about. (Thankfully the giant room of records really helps with that.)</p>
<p>So I don&#8217;t think being a geek really has anything to do specifically with technology these days, but moreso that <strong>geeks are people who are just really into something that other people don&#8217;t understand</strong>. So under this definition, anyone who knows a lot about something you don&#8217;t know about can potentially be a geek &#8211; and that&#8217;s what we love about them.</p>
<p>Geeks are <strong>passionate</strong>. Geeks are <strong>knowledgeable</strong>. Geeks are <strong>dedicated</strong>. Geeks come <strong><em>correct</em></strong> &#8211; and aren&#8217;t afraid to go off on a tangent to defend their point of view.</p>
<p>Like just the other day I was at a restaurant and overheard two men having a fairly intense Lord of the Rings discussion. I wasn&#8217;t really paying too much attention because I&#8217;m not a huge fan, but out of nowhere the sassy looking blonde lady behind the bar walks over and says;</p>
<p>&#8220;Um ACTUALLY that&#8217;s movie canon which is highly fallacious. Faramir is the true hero of men and foil for Boromir as in the book he not only resisted the ring and sent Frodo on his waybut is the only man to do so. Aragorn is a member of the Dunedain, descendants of the ancient race of kings, and has a small amount of elf blood. It&#8217;s shown many times that due to their wisdom, inherent magical characteristics, and race knowledge, elves are far more successful at resisting a Ring of Power. Faramir&#8217;s accomplishment is therefore more significant than Aragorn&#8217;s, even though Aragorn&#8217;s story arc is more central.&#8221;</p>
<p>The two gentlemen put their drinks down and looked somewhat taken aback. Lord of the Rings trivia may seem like stereotypical geek fodder, but the fact that this tangent had come from the bright red lips of a pin-up looking barkeep was enough to prove to anyone that geeks can be as much awesome as they are awkward!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/serverbeach.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/serverbeach.wordpress.com/1287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/serverbeach.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/serverbeach.wordpress.com/1287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/serverbeach.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/serverbeach.wordpress.com/1287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/serverbeach.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/serverbeach.wordpress.com/1287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/serverbeach.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/serverbeach.wordpress.com/1287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/serverbeach.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/serverbeach.wordpress.com/1287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/serverbeach.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/serverbeach.wordpress.com/1287/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=serverbeach.wordpress.com&amp;blog=752879&amp;post=1287&amp;subd=serverbeach&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://serverbeach.wordpress.com/2011/05/13/show-us-your-geek-pride-to-win-100-at-thinkgeek-com/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c51dc17c9f2f26e71d182e880f5ee9c3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">m0demgirl</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/05/geekpride.jpg" medium="image">
			<media:title type="html">geekpride</media:title>
		</media:content>

		<media:content url="http://serverbeach.files.wordpress.com/2011/05/132261_10150112183315100_505900099_7965978_7944626_o1.jpg?w=199" medium="image">
			<media:title type="html">132261_10150112183315100_505900099_7965978_7944626_o(1)</media:title>
		</media:content>
	</item>
	</channel>
</rss>
