<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Jaybill.com</title>
	
	<link>http://jaybill.com</link>
	<description>Jaybill McCarthy's blog.</description>
	<lastBuildDate>Thu, 19 Aug 2010 00:22:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jaybilldotcom" /><feedburner:info uri="jaybilldotcom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Quick and Dirty Amazon S3 Integration</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/MSbVOWZjVWc/</link>
		<comments>http://jaybill.com/2010/08/18/quick-and-dirty-amazon-s3-integration/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 00:17:24 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=674</guid>
		<description><![CDATA[Unless you&#8217;ve been hiding under a rock, you probably know about Amazon S3 by now. As far as I&#8217;m concerned, it&#8217;s about as cheap and easy to use as cloud-based storage gets. If you&#8217;re writing your own application, there&#8217;s a very simple API for getting stuff into and out of it. If you&#8217;ve got a baked [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jaybill.com/wp-content/uploads/2010/08/s3bucket.png"><img class="alignright size-full wp-image-721" title="It's a bucket. Shut up." src="http://jaybill.com/wp-content/uploads/2010/08/s3bucket.png" alt="" width="150" height="150" /></a>Unless you&#8217;ve been hiding under a rock, you probably know about <a title="cloud shoveling" href="http://aws.amazon.com/s3/">Amazon S3</a> by now. As far as I&#8217;m concerned, it&#8217;s about as cheap and easy to use as cloud-based storage gets. If you&#8217;re writing your own application, there&#8217;s a very simple API for getting stuff into and out of it. If you&#8217;ve got a baked application, it&#8217;s a bit more complicated. Sometimes you want to take advantage of the cost savings and scalability of S3, but can&#8217;t (or don&#8217;t want to) modify the web application to use the s3 API directly.</p>
<p>I came up a quick and dirty workaround for this by installing a little utility called <a title="so handy" href="http://s3tools.org/s3cmd">s3cmd</a> to move the files for me. Here are the steps I took. I&#8217;m using Ubuntu on this server, but this should really work with minor adaptation on any Unix variant.</p>
<p>The basic theory of operation is this. The files in a local directory will get synced to s3, then your site will redirect (via .htaccss) visitors to the s3 files instead of the local files.</p>
<ol>
<li>Have the same setup as me: Apache under Ubuntu.</li>
<li>Set up an <a title="there's a button on the right" href="http://aws.amazon.com/s3/">s3 account</a>.</li>
<li>Install s3cmd:
<pre>sudo apt-get install s3cmd</pre>
</li>
<li>Configure s3cmd. It will prompt you for your API keys, which you can get from your <a title="you'll need to sign in." href="https://aws-portal.amazon.com/gp/aws/developer/account/index.html?ie=UTF8&amp;action=access-key">account page</a>.
<pre>s3cmd --configure</pre>
</li>
<li>Create a bucket:
<pre>s3cmd mb s3://mah-bucket</pre>
</li>
<li>Create a script somewhere called <strong>s3sync.sh</strong> (or whatever you like). Be sure to change &#8220;mah-bucket&#8221; to something more meaningful.</li>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="re3">#!/bin/sh</span></div>
</li>
<li class="li1">
<div class="de1">s3cmd <span class="kw2">sync</span> &#8211;acl-public /path/to/<span class="kw3">local</span>/content/folder/ s3://mah-bucket</div>
</li>
</ol>
</div>
<li>Make sure your script is executable:
<pre>chmod 0755 s3sync.sh</pre>
</li>
<li>Run your script. All your images will be copied to your s3 bucket:
<pre>./wps3sync.sh</pre>
</li>
<li>Make sure apache has <strong>mod_rewrite</strong> turned on, then edit your <strong>.htaccess</strong> file so it includes the lines below. Don&#8217;t forget to change &#8220;mah-bucket&#8221; to whatever you called your bucket in step 6. Also change &#8220;url/path/to/folder/&#8221; to the url path of the foler from step 6. (Note presence of &#8220;^&#8221; and lack of slash at the beginning.)</li>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&lt;IfModule mod_rewrite.c&gt;</div>
</li>
<li class="li1">
<div class="de1">RewriteEngine On</div>
</li>
<li class="li1">
<div class="de1">RewriteBase /</div>
</li>
<li class="li1">
<div class="de1">RewriteRule ^url/path/to/folder/<span class="br0">&#40;</span>.*<span class="br0">&#41;</span> http:<span class="co1">//mah-bucket.s3.amazonaws.com/uploads/$1 [R,L]</span></div>
</li>
<li class="li2">
<div class="de2">&lt;/IfModule&gt;</div>
</li>
</ol>
</div>
</ol>
<p>That&#8217;s it! Your site will now redirect requests for the original files to your s3 bucket. The only caveat is that you will need to run your sync script every time you upload new files so they get copied to s3. I run mine manually via ssh, but this could become a pain if there was a lot of new files. One option would be to cron it to run every few minutes, but bear in mind that s3 is billed by the request and it will add up over time. A better way of auto-syncing might be to write a script that polls your uploads folder for changes, then calls your s3 script if it finds something different.</p>
<p>Here&#8217;s a modified <strong>s3sync.sh</strong> that uses <a title="also available in Ubuntu repos" href="http://md5deep.sourceforge.net/">md5deep</a> to see if the folder contents have changed. You can cron this as often as you like and it will only talk to s3 if there are actually changes.</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="re3">#!/bin/sh</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="re2">HASH_FILE=</span>/path/to/home/<span class="kw2">dir</span>/hashes.txt</div>
</li>
<li class="li1">
<div class="de1"><span class="re2">HASH_DIFF_FILE=</span>/path/to/home/<span class="kw2">dir</span>/tmp_diff_hashes.txt</div>
</li>
<li class="li2">
<div class="de2"><span class="re2">LOCAL_DIR=</span>/path/to/<span class="kw3">local</span>/content/folder</div>
</li>
<li class="li1">
<div class="de1"><span class="re2">S3_BUCKET=</span>s3://mah-bucket/</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span> <span class="br0">&#91;</span> ! -f <span class="re1">$HASH_FILE</span> <span class="br0">&#93;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">then</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="kw3">echo</span> <span class="st0">&quot;<span class="es0">\n</span>Creating new hash file $HASH_FILE<span class="es0">\n</span>&quot;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; md5deep -rl <span class="st0">&quot;$LOCAL_DIR&quot;</span> &gt; <span class="re1">$HASH_FILE</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">fi</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span> <span class="br0">&#91;</span> -f <span class="re1">$HASH_DIFF_FILE</span> <span class="br0">&#93;</span></div>
</li>
<li class="li2">
<div class="de2"><span class="kw1">then</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw2">rm</span> <span class="re1">$HASH_DIFF_FILE</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">fi</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">md5deep -x <span class="re1">$HASH_FILE</span> -r <span class="re1">$LOCAL_DIR</span> &gt; <span class="re1">$HASH_DIFF_FILE</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span> <span class="br0">&#91;</span> -s <span class="re1">$HASH_DIFF_FILE</span> <span class="br0">&#93;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">then</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; s3cmd <span class="kw2">sync</span> &#8211;acl-public <span class="re1">$LOCAL_DIR</span> <span class="re1">$S3_BUCKET</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw2">rm</span> -f <span class="re1">$HASH_FILE</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; md5deep -rl <span class="st0">&quot;$LOCAL_DIR&quot;</span> &gt; <span class="re1">$HASH_FILE</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">fi</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span> <span class="br0">&#91;</span> -f <span class="re1">$HASH_DIFF_FILE</span> <span class="br0">&#93;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">then</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="kw2">rm</span> <span class="re1">$HASH_DIFF_FILE</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">fi</span></div>
</li>
</ol>
</div>
<p>And that&#8217;s that! I hope someone finds this useful. If you did, let me know!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/6jJ3WpOXOTugR-ZsNuR79pGVMhU/0/da"><img src="http://feedads.g.doubleclick.net/~a/6jJ3WpOXOTugR-ZsNuR79pGVMhU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6jJ3WpOXOTugR-ZsNuR79pGVMhU/1/da"><img src="http://feedads.g.doubleclick.net/~a/6jJ3WpOXOTugR-ZsNuR79pGVMhU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/MSbVOWZjVWc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2010/08/18/quick-and-dirty-amazon-s3-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jaybill.com/2010/08/18/quick-and-dirty-amazon-s3-integration/</feedburner:origLink></item>
		<item>
		<title>Deployment-First Development</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/c7NjUfTHwfw/</link>
		<comments>http://jaybill.com/2010/08/17/deployment-first-development/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 18:26:05 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=704</guid>
		<description><![CDATA[In the ever-shifting landscape that is developing web applications, there are a few things that have remained relatively constant:

It will always take longer to develop an application than anyone involved thinks it will.
No matter when your deadline is, you will always run short on time towards the end.
No matter what project management methodology you use, (or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jaybill.com/wp-content/uploads/2010/08/deploy.jpg"><img class="alignright size-full wp-image-706" title="This image is meaningless but important-looking." src="http://jaybill.com/wp-content/uploads/2010/08/deploy.jpg" alt="" width="300" height="300" /></a>In the ever-shifting landscape that is developing web applications, there are a few things that have remained relatively constant:</p>
<ol>
<li>It will always take longer to develop an application than anyone involved thinks it will.</li>
<li>No matter when your deadline is, you will always run short on time towards the end.</li>
<li>No matter what project management methodology you use, (or what software supports it) at crunch time, people will resort to sticking Post-it notes to your monitor. (&#8230;but that&#8217;s another show.)</li>
<li>No piece of software will ever be perfect, but any &#8220;extra time&#8221; will generally be eaten by trying to make it such.</li>
<li>Deployment (putting the application into production) will always be a rush job done at the last minute.</li>
</ol>
<p>The first four things are more or less laws of nature as far as I am concerned. No matter how hard everyone works or how on the ball everyone is, software is hard to write and it&#8217;s even harder to say how long it will take. What <em>isn&#8217;t</em> a constant, though, is that last one, despite the fact that most people do it that way. In general, there is a fair amount of wiggle room in the area of what order things get done in.</p>
<p>Generally, when you&#8217;re building an app, the minute you have a loose idea of what&#8217;s getting built you want to build something and get it in front of people so they can start picking it apart. This idea, in fact, is at the core of a lot of very well-meaning project management methodologies. (I&#8217;m looking at you, <a title="Manifestos over ACTUALLY DOING WORK" href="http://agilemanifesto.org">Agile</a>.) The sooner you can show something working, the better the people who sign the checks will feel about your project. (At least at the beginning, anyway.)</p>
<p>The flaw in this approach is that it gives everyone a false sense of security about the schedule. Even as work proceeds at a brisk pace, most people ignore that most crucial of steps: getting the thing to work in &#8220;real-life&#8221;. Deployment is left for the last possible second, when the project isn&#8217;t quite done, but must be pushed live. There&#8217;s generally a lot of hand-wringing and brow-mopping and a lot of impatient people at this stage. (A good PM might even build in &#8220;go live&#8221; time for this, but it will always be eaten up by last minute development.) In the worst case, there will be no actual deployment strategy and someone from the development team will end up dragging files from one machine to another, manually. Things that worked perfectly on all the developers machines will break catastrophically on the live servers. Someone will have forgotten to purchase a license for some critical piece of software the app needs to run. The firewall ports that the web server uses to talk to the database server won&#8217;t be open, and neither will the help desk of the hosting company. All of this is, of course, terrible. To paraphrase <a title="I admit he is kind of my hero." href="http://www.hanselman.com">Scott Hanselman</a>, &#8220;You get to drag files from your local machine to a server for deployment <em>once</em>. After that, if you&#8217;re not typing &#8216;deploy&#8217; somewhere to push your application, <em>YOU ARE STUPID</em>.&#8221;</p>
<p>The second worst case is that an already under-the-gun developer will be pulled off some other very important task (you know, like, <em>finishing</em> the damned thing) to crap out some way of deploying the app to production. It will often end up being a brittle, undocumented kludge that some poor intern will have to sift through later. Everyone will hate it and it will reflect poorly on the team that spent six months developing an otherwise amazing application.</p>
<p>Why is deployment (and the setup therein) such a loathed task? I would say it&#8217;s because it&#8217;s a necessary but highly unglamorous task. It&#8217;s also one that very few people will get. Show your client the cool new feature you just added to the image gallery and they&#8217;ll buy you a pizza. Show them your one-button application deployment and they&#8217;ll give you a blank stare. For this reason, deployment has always been a last-minute rush job.</p>
<p>I would like to propose a better way. Deploy first. By &#8220;first&#8221;, I mean that as soon as you have checked in the very skeleton of your application into your version control system, figure out how and where and by what method you will put the thing into a production environment. Then do it. Do it a bunch of times. Get it so that it&#8217;s a completely natural, totally painless process that you don&#8217;t even have to think about. While it&#8217;s my opinion that a deployment-first strategy is good practice for any project, I think it&#8217;s absolutely <em>critical</em> to any project using a new or unfamiliar development platform. (Also, as an aside, if you do not have a version control system, please stop reading this. Clean out your desk, leave your ID card with security, walk out of the building and don&#8217;t look back. Seriously. Shame on you.)</p>
<p>To deploy your app, you will generally need to take care of all (or most) of the following:</p>
<ul>
<li>setup and configuration of production machines (be they real or virtual)</li>
<li>installation of prerequisite software for your application (web servers, application platforms, RDBMSes, etc.)</li>
<li>load balancing</li>
<li>network configuration</li>
<li>development of a deployment system</li>
</ul>
<p>If you get this all squared away first, you can merrily write code up until the last possible second, because when you&#8217;re done, you push a button and the site goes live. Maybe there will be a speed bump or two in that process, but you won&#8217;t be starting from scratch.</p>
<p>Make no mistake. Writing software may be hard, but deployment is always harder. It also (generally) involves coordinating lots of different people, often at different companies, many of whom will not share your sense of urgency. Deploying first exposes a bunch of issues that you can square away long before they become emergencies.</p>
<p>That last item on my list there is often a source of confusion for a lot of people. Why would you &#8220;develop&#8221; a deployment system? There&#8217;s a lot of tools that do this already, right? Well, sure, but you have to set them up and configure them, and in most cases, write scripts that will tell them what to do. This is often a lot less trivial than the makers of those tools would have you believe. Take the time and figure out what you&#8217;re going to use and how your going to use it before you even really start developing.</p>
<p>As for how you go about building deployment systems, there are lots and lots of options. The best one for your project will largely depend on what you&#8217;re using. In  most cases, you can get your build tool (<a href="http://ant.apache.org">Ant</a>, <a href="http://maven.apache.org">Maven</a>, <a href="http://nant.sourceforge.net">NAnt</a>, <a href="http://www.capify.org">Capistrano</a>, etc.) to do it for you. In a lot of cases this can get overly complicated, though. My personal favorite way is to write a short, project-specific shell script (though I recently started using Python for this) with good inline comments. Whatever you use, here&#8217;s a loose set of steps for any deployment script:</p>
<ul>
<li>Pull <em>a copy</em> of the latest code from the version control system (never deploy off of your current development tree)</li>
<li>Increment the version number (I like using a text file called VERSION in the root of my project)</li>
<li>tag (or whatever your VCS calls it) the revision with your version number</li>
<li>copy required libraries into the build tree</li>
<li>create compressed archive of your build</li>
<li>transfer the archive to the production system</li>
<li>unpack the archive into the right place (via remote, perhaps with <a href="http://www.debian-administration.org/articles/152">passwordless</a> SSH or <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx">Powershell</a>. Some build tools have this functionality as well.)</li>
<li>perform any required administration tasks that a new build would need (update database structure, restart web server, etc.)</li>
<li>email a notification that a build was pushed out</li>
</ul>
<p>You may need more steps, you may need fewer. Whatever you can reasonably automate, do it. Every step you make automatic will be one less manual headache at the 11th hour. Also, the more manual steps you remove, the more you reduce the likelihood of human error and dependency on a particular human to do deployment.</p>
<p>I hope this will inspire you to think about incorporating deployment-first development into your next project. I can tell you that doing things this way has greatly improved my life as a developer, especially at crunch time.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/NztTWH8gopWX_FewF3ElWHtY2X0/0/da"><img src="http://feedads.g.doubleclick.net/~a/NztTWH8gopWX_FewF3ElWHtY2X0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NztTWH8gopWX_FewF3ElWHtY2X0/1/da"><img src="http://feedads.g.doubleclick.net/~a/NztTWH8gopWX_FewF3ElWHtY2X0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/c7NjUfTHwfw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2010/08/17/deployment-first-development/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://jaybill.com/2010/08/17/deployment-first-development/</feedburner:origLink></item>
		<item>
		<title>The Hundred Pound Countdown</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/BXxFenxh7SQ/</link>
		<comments>http://jaybill.com/2010/06/01/the-hundred-pound-countdown/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 21:03:01 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[100lbcountdown]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=687</guid>
		<description><![CDATA[Here&#8217;s a picture of me, taken a few days ago:

Here&#8217;s a picture of me taken about a year and a half ago:

The first picture is the heaviest I&#8217;ve ever been. 280 pounds. The second picture is the thinnest I&#8217;ve been in recent history, probably about 240. I was still overweight, but not nearly as bad [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a picture of me, taken a few days ago:</p>
<p><img class="alignnone size-full wp-image-689" title="I am the KING of being fat and unhappy." src="http://jaybill.com/wp-content/uploads/2010/06/me_fat.jpg" alt="" width="450" height="300" /></p>
<p>Here&#8217;s a picture of me taken about a year and a half ago:</p>
<p><img class="alignnone size-full wp-image-690" title="Sure, I was a retard, but I was a THINNER retard." src="http://jaybill.com/wp-content/uploads/2010/06/me_not_fat.jpg" alt="" width="450" height="300" /></p>
<p>The first picture is the heaviest I&#8217;ve ever been. 280 pounds. The second picture is the thinnest I&#8217;ve been in recent history, probably about 240. I was still overweight, but not nearly as bad as I am now.</p>
<p>Why am I telling you this? Because today is the beginning of a new era for me. One in which I am not fat. One where I do not get exhausted after half an hour of moderate activity. One where my back doesn&#8217;t hurt all the time. One where my clothes fit. One where I am not cruising headlong for Type 2 Diabetes and early death. I am telling you this because I am going to use fear of public humiliation as my primary weight-loss tool.</p>
<h3>The Hundred Pound Countdown</h3>
<p>As previously stated, I weigh almost 300 pounds. I really <em>should</em> weigh more like 200 pounds. That&#8217;s a difference of (wait for it) like 100 pounds. Just for the sake of argument, let&#8217;s call my goal weight 200 pounds, meaning I&#8217;ve got to lose like 80. Okay, so not quite 100, but &#8220;eighty pound countdown&#8221; doesn&#8217;t have the same ring to it. So, inspired by <a title="Drew Magary of Deadspin" href="http://reso.ws/bk">this guy</a>, here&#8217;s my plan:</p>
<ol>
<li>I will get down to 200 lbs and stay there.</li>
<li>I will weigh myself every Monday and post it on <a title="@jaybill" href="http://twitter.com/jaybill">Twitter</a>. (#100lbcountdown)</li>
<li>I will take a picture of myself every Monday and post it on <a title="@jaybill" href="http://twitter.com/jaybill">Twitter</a>. (#100lbcountdown)</li>
<li>I will only snack on fruits and vegetables.</li>
<li>I will eat three meals a day, and they will be awesome and delicious.</li>
<li>I will not eat after dinner.</li>
<li>I will not eat crap in the form of processed food or fast food.</li>
<li>I will <a title="I have whale shoes." href="http://inmbtshoes.com">walk</a> outside for no less than 30 minutes every day.</li>
<li>I will take a fiber supplement (because, well, you know.)</li>
<li>If I break a rule, I will post the infraction on <a title="@jaybill" href="http://twitter.com/jaybill">Twitter</a>. (#100lbcountdown)</li>
</ol>
<h3>Do Me a Favor</h3>
<p>Don&#8217;t &#8220;encourage&#8221; me. F@%k encouragement. What I need right now is <em>derision.</em> Tell me what a fat, unhealthy slob I am. Mock me mercilessly when I cock this up (as I inevitably will). This isn&#8217;t something fun I&#8217;m doing just for the hell of it. I&#8217;m fat and sad and I don&#8217;t want to live with it or die from it. Here&#8217;s hoping my ego is bigger than my paunch.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/6YTLvuR1KJhGW0YipgZuVMIcyHw/0/da"><img src="http://feedads.g.doubleclick.net/~a/6YTLvuR1KJhGW0YipgZuVMIcyHw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6YTLvuR1KJhGW0YipgZuVMIcyHw/1/da"><img src="http://feedads.g.doubleclick.net/~a/6YTLvuR1KJhGW0YipgZuVMIcyHw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/BXxFenxh7SQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2010/06/01/the-hundred-pound-countdown/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://jaybill.com/2010/06/01/the-hundred-pound-countdown/</feedburner:origLink></item>
		<item>
		<title>Fridgetoons: Magnets and Markers</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/U5y4ZTveTyg/</link>
		<comments>http://jaybill.com/2010/03/01/fridgetoons-magnets-and-markers/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 19:46:48 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[fridgetoons]]></category>
		<category><![CDATA[web comics]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=668</guid>
		<description><![CDATA[I seem to have a sickness that causes me to start new web projects. The latest symptom of this is something I&#8217;m calling fridgetoons. Essentially, I have a bunch of magnetic letters on my fridge next to a whiteboard. My housemates come along and arrange the letters in to a caption. I then illustrate the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://fridgetoons.com"><img class="alignright size-full wp-image-667" title="No one understands his problems." src="http://jaybill.com/wp-content/uploads/2010/03/emo-shark.jpg" alt="" width="335" height="230" /></a>I seem to have a sickness that causes me to start new web projects. The latest symptom of this is something I&#8217;m calling <a title="magnets and markers" href="http://fridgetoons.com">fridgetoons</a>. Essentially, I have a bunch of magnetic letters on my fridge next to a whiteboard. My housemates come along and arrange the letters in to a caption. I then illustrate the caption on the whiteboard. I take a picture of the results and post them on the Internet. Once in a while, they end up being funny.</p>
<p>It&#8217;s been a pretty satisfying project so far, mainly because I can draw them quickly and they aren&#8217;t &#8220;precious&#8221;. My earlier attempts at comics failed because it took me more than a week to do each page. I suppose if the outcomes were awesome, I could have justified it (there are those that can) but the results were always sub-par. These comics, on the other hand, are <em>intentionally</em> sub-par, which is somehow psychologically liberating, resulting in more output. This is all to say that I&#8217;ve produced quite a few of them in a pretty short period of time. There&#8217;s even an accidental <a title="I still drew it, which is apparent." href="http://fridgetoons.com/2010/02/13/brown-rhone-varietal-3/">guest strip</a> by a totally famous <a title="even famous web cartoonists need to get things out of the fridge sometimes" href="http://achewood.com">web cartoonist</a> who happened to be getting something out of my fridge.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/1BUVsDXCGina51eOVRcutvXlz_o/0/da"><img src="http://feedads.g.doubleclick.net/~a/1BUVsDXCGina51eOVRcutvXlz_o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1BUVsDXCGina51eOVRcutvXlz_o/1/da"><img src="http://feedads.g.doubleclick.net/~a/1BUVsDXCGina51eOVRcutvXlz_o/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/U5y4ZTveTyg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2010/03/01/fridgetoons-magnets-and-markers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jaybill.com/2010/03/01/fridgetoons-magnets-and-markers/</feedburner:origLink></item>
		<item>
		<title>I Can’t F#%king See: Part II</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/nNMy66cxGAE/</link>
		<comments>http://jaybill.com/2010/02/15/i-cant-fking-see-part-ii/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 07:50:05 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[glasses]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=657</guid>
		<description><![CDATA[Well, the votes are in and I have returned from the optometrist and spectacle monger. I more or less went with #5 from the poll. It&#8217;s like my grandfather always said, &#8220;Don&#8217;t buy glasses until you ask the Internet.&#8221; Okay, he never said that, but he would have if he had been around for the Internet. As [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/jaybill/4361999546/"><img class="alignright" title="This might be the most awesome picture I've ever taken in my bathroom. What is that penguin pointing at? F@#K you, penguin!" src="http://farm5.static.flickr.com/4062/4361999546_e6a477eb72.jpg" alt="New Glasses" width="334" height="500" /></a>Well, the votes are in and I have returned from the optometrist and spectacle monger. I more or less went with #5 from the poll. It&#8217;s like my grandfather always said, &#8220;Don&#8217;t buy glasses until you ask the Internet.&#8221; Okay, he never said that, but he <em>would</em> have if he had been around for the Internet. As it stands, he sort of just missed it.</p>
<p>I really like how these look, if I do say so myself. Some kind of weird cross between Henry Rollins in <em><a title="That OTHER 90s Cyberpunk Keanu Reeves vehicle. The stupid one." href="http://www.imdb.com/title/tt0113481/">Johnny Mnemonic</a></em> and Ray Smuckles in every <em><a title="That's Chris. I know Chris." href="http://achewood.com/index.php?date=01272005">Achewood</a></em><a title="I know Chris." href="http://achewood.com/index.php?date=01272005"> </a>strip since <a title="whenever he started wearing them closer to his nose" href="http://achewood.com/index.php?date=01072005">2004</a>. I guess I most closely resemble <a title="Elroy Cohen gets The Gas Face" href="http://a854.ac-images.myspacecdn.com/images01/68/l_e963d16ca0941483c1eb46d289cc9e75.jpg">M.C. Serch</a>, which is pretty rad, considering that he has basically been my hero since middle school. He is, even still. Even after <a title="Even after that." href="http://www.vh1.com/shows/white_rapper/series.jhtml"><em>The (White) Rapper</em></a>.</p>
<p>I suppose that while this is clearly a win for fashion, the really awesome part is that I can actually use a computer without getting a pounding headache.</p>
<p>So thanks for telling me which pair of glasses to buy, Internet! I won&#8217;t forget this!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/3hCzNDBmb_nWEJwVH15oTBk29ho/0/da"><img src="http://feedads.g.doubleclick.net/~a/3hCzNDBmb_nWEJwVH15oTBk29ho/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/3hCzNDBmb_nWEJwVH15oTBk29ho/1/da"><img src="http://feedads.g.doubleclick.net/~a/3hCzNDBmb_nWEJwVH15oTBk29ho/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/nNMy66cxGAE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2010/02/15/i-cant-fking-see-part-ii/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://jaybill.com/2010/02/15/i-cant-fking-see-part-ii/</feedburner:origLink></item>
		<item>
		<title>I Can’t F#%king See.</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/xqK8J5UyK8U/</link>
		<comments>http://jaybill.com/2010/01/31/i-cant-fking-see/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 08:18:46 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[glasses]]></category>
		<category><![CDATA[poll]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=646</guid>
		<description><![CDATA[I am apparently getting old and falling apart. Within the past few months it has become clear that I need to get fitted for a pair of glasses. I have narrowed it down to six pairs that could potentially work on my fat freaking face. They are below. Would you kindly take a second and [...]]]></description>
			<content:encoded><![CDATA[<p>I am apparently getting old and falling apart. Within the past few months it has become clear that I need to get fitted for a pair of glasses. I have narrowed it down to six pairs that could potentially work on my fat freaking face. They are below. Would you kindly take a second and tell me which one you think looks best? I would greatly appreciate it.</p>
<p>Yes, I know the temple is missing on a few of them. This is a low-budget operation. Use your imagination.</p>
<p><img class="alignnone size-full wp-image-649" title="That is six times more of me than you really need to see at once." src="http://jaybill.com/wp-content/uploads/2010/01/glasses_options.jpg" alt="" width="450" height="350" /></p>
Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.

<p><a href="http://feedads.g.doubleclick.net/~a/TW2HlA0GtqLhSWuwY30Zs3CbK30/0/da"><img src="http://feedads.g.doubleclick.net/~a/TW2HlA0GtqLhSWuwY30Zs3CbK30/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TW2HlA0GtqLhSWuwY30Zs3CbK30/1/da"><img src="http://feedads.g.doubleclick.net/~a/TW2HlA0GtqLhSWuwY30Zs3CbK30/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/xqK8J5UyK8U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2010/01/31/i-cant-fking-see/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jaybill.com/2010/01/31/i-cant-fking-see/</feedburner:origLink></item>
		<item>
		<title>Things I Am So Totally Going To Do In 2010</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/JiNQGTmUPiE/</link>
		<comments>http://jaybill.com/2010/01/03/things-i-am-so-totally-going-to-do-in-2010/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 23:17:50 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[newyear]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=640</guid>
		<description><![CDATA[It&#8217;s 2010! According to most credible science fiction, that means that it is now the future. Granted, we do not have flying cars, but then I&#8217;m writing about that from a tiny supercomputer sitting on my lap that&#8217;s connected to a global network via an invisible wireless connection. I&#8217;d say we&#8217;re doing right by Asimov [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jaybill.com/wp-content/uploads/2010/01/newyears.jpg"><img class="alignright size-full wp-image-643" title="This is the instant right before the woman in the upper left hand corner of this image ate the other guests." src="http://jaybill.com/wp-content/uploads/2010/01/newyears.jpg" alt="" width="300" height="300" /></a>It&#8217;s 2010! According to most credible science fiction, that means that it is now <em>the future</em>. Granted, we do not have flying cars, but then I&#8217;m writing about that from a tiny supercomputer sitting on my lap that&#8217;s connected to a global network via an invisible wireless connection. I&#8217;d say we&#8217;re doing right by Asimov at this point.</p>
<p>Because it&#8217;s the beginning of both a year and a decade, I had the totally original idea of setting some goals for the year to come. To be honest, this is one of those blog posts that&#8217;s really more for me than it is for you. I mean, sure, I want you to read it, but that&#8217;s mainly so you can make fun of me in 2011 when I don&#8217;t actually do half of these things. Despite the timing, this list shouldn&#8217;t be considered &#8220;New Year&#8217;s Resolutions&#8221; per se.  The only real criteria for putting things on this list was that I must conceivably be able to check said things off within 2010. So here&#8217;s my list, in no particular order.</p>
<h3>Lose Like&#8230;A Hundred Pounds</h3>
<p>I am fat. I&#8217;m not kidding. I make jokes about it all the time. The fact of it is that if I keep carrying around all this extra weight I&#8217;m putting myself at risk for a bunch of terrible things, say nothing of the fact that it diminishes the quality of my life on a daily basis. No more. I am launching an all out war on fat. Let&#8217;s hope it goes better than The War on TerrorTM or The War on DrugsTM.</p>
<h3>Be a Better Blogger</h3>
<p>Historically, I&#8217;ve been kind of half-assed about my website. I keep committing to update it regularly and failing. It needs to be more worthwhile to read so that more people will read it. I&#8217;d also like to add some kind of podcast or video blog component to it. (I will not use the word &#8220;vlog&#8221;. Wait, I just did. Dammit.) I also one to pick a few areas of subject matter to focus on, rather than continuing the mish-mash whatever I&#8217;ve been doing so far.</p>
<h3>Be a Better Maker</h3>
<p>I need to re-reorganize my shop. Then I need to use it to finish a few projects. I&#8217;m long on ideas short on finished projects. I also need to do more with my sewing machine, as it is awesome and capable of doing a ton of cool and money-saving things. Making stuff is fun and rewarding. I enjoy doing it. I need to do it more.</p>
<h3>Finish My Novel</h3>
<p>While I did not succeed in mashing out the requisite fifty thousand words I needed to call NaNoWriMo a success, I actually didn&#8217;t fail <em>nearly</em> as hard as I thought. I came up with a story and characters that I&#8217;m really excited to develop further. I need to finish writing it, preferably before the <em>next</em> NaNoWriMo.</p>
<h3>Make New Some Music</h3>
<p>I used to be really into music production. I very much enjoy writing and recording music. I need to get back into it, preferably by producing an album-sized body of work. I really want to pick up guitar again. Now that <a title="f@#k ReWire" href="http://www.propellerheads.se/products/record/">Propellerhead</a> is making recording software, I&#8217;m totally excited about getting into it again.</p>
<h3>Take The Next Step in Education</h3>
<p>This one is sort of intentionally vague and will likely take several years, but I have to start somewhere. I want to get a masters degree (at least) in something awesome, like astrobiology or evolutionary biology. These areas of study fascinate me, and its maddening that I don&#8217;t know more about them.</p>
<h3>Create a Financially Viable Web Property</h3>
<p>I&#8217;ve been talking about and half-assing this goal for a while, but I need to just bang out out. I need to pick one of my many half-finished projects and complete it. I want to do something that can more or less run on its own and cover my basic bills.</p>
<p>So that&#8217;s my list. What&#8217;s on your list for this year?</p>

<p><a href="http://feedads.g.doubleclick.net/~a/TuLST3C_MLu0w_r6hEAx25neKgs/0/da"><img src="http://feedads.g.doubleclick.net/~a/TuLST3C_MLu0w_r6hEAx25neKgs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TuLST3C_MLu0w_r6hEAx25neKgs/1/da"><img src="http://feedads.g.doubleclick.net/~a/TuLST3C_MLu0w_r6hEAx25neKgs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/JiNQGTmUPiE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2010/01/03/things-i-am-so-totally-going-to-do-in-2010/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://jaybill.com/2010/01/03/things-i-am-so-totally-going-to-do-in-2010/</feedburner:origLink></item>
		<item>
		<title>Conservatives and Climate Change</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/JDEwpZyBsxI/</link>
		<comments>http://jaybill.com/2009/12/18/conservatives-and-climate-change/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 01:56:44 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[climate change]]></category>
		<category><![CDATA[global warming]]></category>
		<category><![CDATA[Limbaugh]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=625</guid>
		<description><![CDATA[So, being that it is Friday, I&#8217;m going to take this opportunity to stand on my tiny soapbox and point out a rather hilarious bit of cognitive dissonance.
It has long been understood that the conservative element in America, for whatever reason, believes (or has a vested financial interest in everyone else believing) that any suggestion that the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-632" title="I really wish Rush Limbaugh was stuck here instead of this bear. That is because he is a *jerk*. Rush, not the bear. The bear is a pretty okay guy." src="http://jaybill.com/wp-content/uploads/2009/12/polar_bear.jpg" alt="I really wish Rush Limbaugh was stuck here instead of this bear. That is because he is a *jerk*. Rush, not the bear. The bear is a pretty okay guy." width="316" height="293" />So, being that it is <a title="I'm handin' em' out like parking tickets today." href="http://twitter.com/#search?q=%23fuckyoufriday">Friday</a>, I&#8217;m going to take this opportunity to stand on my tiny soapbox and point out a rather hilarious bit of cognitive dissonance.</p>
<p>It has long been understood that the conservative element in America, for whatever reason, believes (or has a vested financial interest in everyone <em>else</em> believing) that any suggestion that the planet might be warming up is simply a hoax intended to&#8230;I don&#8217;t really know what they think the intent is. They&#8217;re fuzzy on that.</p>
<p>For example, yesterday, <strong>Rush Limbaugh</strong> (No, I&#8217;m not even <em>linking</em> to his ass.) latched on to the fact it snowed in Copenhagen during the climate talks.  If you&#8217;ve got a strong stomach, watch the episode. If not, here&#8217;s the take away quote:</p>
<blockquote><p>&#8220;So just when [Al] Gore and all these enviro-wacko Commies and phony scientists reach the height of deceit, God dumps a snowstorm on &#8216;em, all over this manmade fraud. &#8230; Denmark has not had a white Christmas for 14 years. All of a sudden, God, with his sense of humor, gives us a blizzard on loan from him, right in the middle of these wackos getting together for their little conference.&#8221;</p></blockquote>
<p>I&#8217;m not even going to get into how tenuous a grasp on reality you&#8217;d need to suggest that a single snow storm disproves global warming. What I&#8217;m interested in is the contradiction that exists both within this very statement and within the right in general. Let&#8217;s look at the two generally held (religious) conservative beliefs we&#8217;re talking about here:</p>
<ol>
<li>Climate change is a complete scam that has no credible science behind it.</li>
<li>There is an invisible, almighty, all-knowing God that directly interacts with people on a daily basis.</li>
</ol>
<p>The obvious question here is, &#8220;When did you guys start caring about having credible science behind your views?&#8221;</p>
<p>Seriously, if you want me to take it on <em>faith</em> that Adam and Eve rode to church on dinosaurs six thousand years ago and that there&#8217;s a war between religious superheroes in space, you can&#8217;t in the same breath talk about anyone else&#8217;s scientific credibility. You just can&#8217;t.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/swPijpYTnJqyNhPijesOnllFISc/0/da"><img src="http://feedads.g.doubleclick.net/~a/swPijpYTnJqyNhPijesOnllFISc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/swPijpYTnJqyNhPijesOnllFISc/1/da"><img src="http://feedads.g.doubleclick.net/~a/swPijpYTnJqyNhPijesOnllFISc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/JDEwpZyBsxI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/12/18/conservatives-and-climate-change/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/12/18/conservatives-and-climate-change/</feedburner:origLink></item>
		<item>
		<title>Zombiepunk. It’s the new Steampunk.</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/YoRCHdfaKQ8/</link>
		<comments>http://jaybill.com/2009/12/13/zombiepunk-its-the-new-steampunk/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 22:17:06 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[cyberpunk]]></category>
		<category><![CDATA[fiction]]></category>
		<category><![CDATA[steampunk]]></category>
		<category><![CDATA[zombiepunk]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=592</guid>
		<description><![CDATA[Adding &#8220;-punk&#8221; to the end of words to describe a setting and design aesthetic is a staple of speculative fiction. It began (as a language construct, anyway) with cyberpunk, a type of fiction which suggests a dystopian future dominated by cybernetics, virtual reality and people running around in tight black things one minute and poorly rendered green 3d wireframe graphics the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-614" title="As of this writing, I have not seen this movie. I *loved* the book." src="http://jaybill.com/wp-content/uploads/2009/12/theroad.jpg" alt="As of this writing, I have not seen this movie. I *loved* the book." width="300" height="201" />Adding &#8220;-punk&#8221; to the end of words to describe a setting and design aesthetic is a staple of <a title="In a world...where [SOMETHING]" href="http://en.wikipedia.org/wiki/Speculative_fiction">speculative fiction</a>. It began (as a language construct, anyway) with <a title="A term coined by Bruce Bethke, NOT William Gibson." href="http://en.wikipedia.org/wiki/cyberpunk">cyberpunk</a>, a type of fiction which suggests a dystopian future dominated by cybernetics, virtual reality and people running around in tight black things one minute and poorly rendered green 3d wireframe graphics the next.</p>
<p><a title="Do you feel lucky?" href="http://en.wikipedia.org/wiki/Steampunk">Steampunk</a>, despite having highly disputed origins, has a very consistent aesthetic involving high technology powered by steam and mechanical means. The dress code is all about brown leather, tweed, brass accents and anything else that looks vaguely Victorian.</p>
<p>While cyberpunk and steampunk have become widely understood, there is, in my mind, a third x-punk aesthetic. While it&#8217;s equally as prevalent, codified and overused as its brethren, it has not, until I named it just now, had a name. Its name is &#8220;Zombiepunk&#8221;. It just is. Because I said so.</p>
<p>Zombiepunk fiction is based on the idea that some event has effectively ended modern civilization, leaving the survivors to fight over the scraps. The name comes from the fact that this event is often the outbreak of a disease which turns most of the population into a horde of murderous zombies. This isn&#8217;t always the case, sometimes the event is a nuclear war or an alien invasion. It creates a world where the events of <em><a title="Sarah Jessica Parker would be first against the wall." href="http://en.wikipedia.org/wiki/Sex_and_the_City">Sex and the City</a></em> could not take place, or at the very least, they would become watchable televison. As far as design sense goes, it is effectively an a kind of &#8220;un-aesthetic&#8221;. Its technology is cobbled together from the remains of a dead civilization. As far as fashion goes, there&#8217;s a lot of denim, canvas and inexplicably, <a title="Totally NSFW." href="http://en.wikipedia.org/wiki/Bondage_(sexual)">bondage gear</a>.</p>
<p>In the service of clarity, I have prepared this handy chart:</p>
<table border="0">
<colgroup>
<col width="136"></col>
<col width="189"></col>
<col width="189"></col>
<col width="189"></col>
</colgroup>
<tbody>
<tr>
<td></td>
<td><strong>Cyberpunk</strong></td>
<td><strong>Steampunk</strong></td>
<td><strong>Zombiepunk</strong></td>
</tr>
<tr>
<td><strong>Essential Book</strong></td>
<td><em>Neuromancer</em></td>
<td><em>The Difference Engine</em></td>
<td><em>The Road</em></td>
</tr>
<tr>
<td><strong>Essential Movie</strong></td>
<td><em>The Matrix</em></td>
<td><em>League of Extraordinary Gentlemen</em></td>
<td><em>The Road Warrior</em></td>
</tr>
<tr>
<td><strong>Building Materials</strong></td>
<td>steel, virtual reality</td>
<td>brass, polished mahogany</td>
<td>plywood, garbage bags</td>
</tr>
<tr>
<td><strong>Dress Code for Men</strong></td>
<td>black, with black on black.</td>
<td>tweed, plaid, vests, brass accents</td>
<td>leather and spikes</td>
</tr>
<tr>
<td><strong>Dress Code for Women</strong></td>
<td>tight synthetic rubber</td>
<td>tight tweed corsets</td>
<td>tight canvas with too many straps</td>
</tr>
</tbody>
</table>
<p>Just to be thorough, let&#8217;s look at some examples. (Mouse over each for alt-text.)</p>
<p><strong>Cyberpunk &#8211; Dress Code</strong></p>
<p><img class="aligncenter size-full wp-image-604" title="Is that a scope or a laser sight? PICK ONE, DEAD-EYED CYBER-DUDE" src="http://jaybill.com/wp-content/uploads/2009/12/cyberpunk_dress_code.jpg" alt="Is that a scope or a laser sight? PICK ONE, DEAD-EYED CYBER-DUDE" width="600" height="480" /></p>
<p><strong>Cyberpunk &#8211; Vehicles</strong></p>
<p><img class="aligncenter size-full wp-image-605" title="The headlight on this motorcycle would not be good for driving in the dark." src="http://jaybill.com/wp-content/uploads/2009/12/cyberpunk_vehicle.jpg" alt="The headlight on this motorcycle would not be good for driving in the dark." width="600" height="375" /></p>
<p><strong>Steampunk &#8211; Dress Code</strong></p>
<p><img class="alignnone size-full wp-image-606" title="There is no way this girl hangs out with this guy unless she is his sister." src="http://jaybill.com/wp-content/uploads/2009/12/steampunk_dress_code.jpg" alt="There is no way this girl hangs out with this guy unless she is his sister." width="600" height="601" /></p>
<p><strong>Steampunk &#8211; Vehicles</strong></p>
<p><img class="alignnone size-full wp-image-607" title="Perhaps not the best example, but one of the few I found that wasn't from the remake of Wild Wild West." src="http://jaybill.com/wp-content/uploads/2009/12/steampunk_vehicle.jpg" alt="Perhaps not the best example, but one of the few I can find that wasn't from the remake of Wild Wild West." width="600" height="425" /></p>
<p><strong>Zombiepunk &#8211; Dress Code</strong></p>
<p><img class="alignnone size-full wp-image-608" title="I want to know who would win if this were a fight. My money's on Milla. She'd probably be the more sober of the two." src="http://jaybill.com/wp-content/uploads/2009/12/zombiepunk_dress_code.jpg" alt="I want to know who would win if this were a fight. My money's on Milla. She'd probably be the more sober of the two." width="600" height="426" /></p>
<p><strong>Zombiepunk &#8211; Vehicles</strong></p>
<p><img class="alignnone size-full wp-image-609" title="This car never has to worry about finding a parking spot." src="http://jaybill.com/wp-content/uploads/2009/12/zombiepunk_vehicle.jpg" alt="This car never has to worry about finding a parking spot." width="600" height="328" /></p>
<p>You may wonder why I&#8217;ve suddenly become obsessed with this, and you would be right to do so. (I even did a pretty major overhaul of my <a title="I scanned a bunch of garbage. It was awesome." href="http://jaybill.com">website</a> visuals.) I&#8217;m not sure, really, other than I am not-so-secretly planning for a zombie apocalypse. It&#8217;s by far the most plausible speculative fiction there is. Sure, you can wait until it actually happens and <em>then</em> figure out what to wear. Me? I&#8217;m already stockpiling canned food and ammo and warming up my welding gear.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/HQyklyAmxy-exg6N8emlcltezfo/0/da"><img src="http://feedads.g.doubleclick.net/~a/HQyklyAmxy-exg6N8emlcltezfo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HQyklyAmxy-exg6N8emlcltezfo/1/da"><img src="http://feedads.g.doubleclick.net/~a/HQyklyAmxy-exg6N8emlcltezfo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/YoRCHdfaKQ8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/12/13/zombiepunk-its-the-new-steampunk/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/12/13/zombiepunk-its-the-new-steampunk/</feedburner:origLink></item>
		<item>
		<title>A Picture is Worth a Thousand Words</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/MhlM393y15o/</link>
		<comments>http://jaybill.com/2009/11/03/a-picture-is-worth-a-thousand-words/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 23:58:16 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[nanowrimo]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=575</guid>
		<description><![CDATA[It&#8217;s day three of NaNoWriMo. I&#8217;m pretty pleased that I&#8217;ve managed to crap out over three thousand words in such a short time. One thing is that&#8217;s becoming readily apparent, though, is how much I suck at writing compelling descriptions of things. Not having any idea what I&#8217;m doing, I&#8217;ve sort of been approaching this [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-576" title="I believe this speech bubble was in the original version of the painting." src="http://jaybill.com/wp-content/uploads/2009/11/monastfu.jpg" alt="I believe this speech bubble was in the original version of the painting." width="239" height="208" />It&#8217;s day three of <a title="National Novel Writing Month" href="http://nanowrimo.org">NaNoWriMo</a>. I&#8217;m pretty pleased that I&#8217;ve managed to crap out over three thousand words in such a short time. One thing is that&#8217;s becoming readily apparent, though, is how much I suck at writing compelling descriptions of things. Not having any idea what I&#8217;m doing, I&#8217;ve sort of been approaching this novel like I might approach a screenplay (which I have written before) in that I&#8217;m trying to weave a thread of narrative through a series of set pieces. Granted, no one is going to win a Nobel prize in literature using this method, but it&#8217;s how Michael Bay approaches a story, and that motherf@#ker is <em>rich</em>.</p>
<p>The problem arises from the fact that my set piece ideas are <em>visual</em>. I can see them clearly in my head. This would be fine, you see, if I were writing this thing just for myself. It would seem, though, that any potential reader needs me to <em>describe</em> that which I see in my head. This has been harder than it initially appeared for me. I had been handling it like I handle all difficult problems, which is to say that I simply avoided them in the hopes that I&#8217;d figure something out later. This was going well until last night, when I read the first few paragraphs of my girlfriend Sarah&#8217;s NaNoWriMo efforts. Sarah has a degree in English from the prestigious Smith College in western Massachusetts. She is an unqualified genius and an absolute <em>painter</em> when it comes to words. In less than two hundred words, she was able to evoke an utterly compelling sense of place and a whole set of emotional responses to go with it. She&#8217;s painting the Sistine Chapel whilst I lay on the floor of the den with a box of crayons, drawing stick figures next to a two-dimensional house with a sun in the sky.</p>
<p>I knew full well what my set pieces and characters made <em>me</em> feel like, but I was having trouble describing them. Then it hit me. What I&#8217;m trying to do is <em>paint a picture</em>. What I simply called out places in my text where I wanted to paint those pictures and pasted in a photograph of what I wanted to describe? Once my description matches the picture to my satisfaction, I can simply delete the picture. I tried a test with a road through a forest I wanted to describe, and to my amazement, it worked really well.</p>
<p>I spent the first part of today finding the right pictures of people and places I want to describe and inserting them into my text. I&#8217;ve got around twenty right now. If a picture is worth a thousand words, describing these pictures should get me twenty thousand more words! At least I think that&#8217;s how the math for that works out. I&#8217;ll let you know.</p>
<p>Crap. Here&#8217;s 489 words that <em>aren&#8217;t</em> in my effing novel. Back to work!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/msrLxq8E05mnuNgnG84x9JYrlFA/0/da"><img src="http://feedads.g.doubleclick.net/~a/msrLxq8E05mnuNgnG84x9JYrlFA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/msrLxq8E05mnuNgnG84x9JYrlFA/1/da"><img src="http://feedads.g.doubleclick.net/~a/msrLxq8E05mnuNgnG84x9JYrlFA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/MhlM393y15o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/11/03/a-picture-is-worth-a-thousand-words/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/11/03/a-picture-is-worth-a-thousand-words/</feedburner:origLink></item>
		<item>
		<title>I Am Writing a Novel</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/q4BfdMkOZeU/</link>
		<comments>http://jaybill.com/2009/10/30/i-am-writing-a-novel/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 00:10:27 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[crazy]]></category>
		<category><![CDATA[nanowrimo]]></category>
		<category><![CDATA[novel]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=567</guid>
		<description><![CDATA[Apparently I don&#8217;t have enough to do. Also, when I fail, I like to fail big (and publicly, if at all possible.) That&#8217;s why I&#8217;ve decided to participate in this years National Novel Writing Month. Crazy, you say? No crazier than any of the other &#8220;creative efforts&#8221; I&#8217;ve attempted in the past ten years. Hell, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-568" title="I do not plan to use one of these. Also, I do not smoke." src="http://jaybill.com/wp-content/uploads/2009/10/typewriter.png" alt="I do not plan to use one of these. Also, I do not smoke." width="200" height="150" />Apparently I don&#8217;t have enough to do. Also, when I fail, I like to fail big (and publicly, if at all possible.) That&#8217;s why I&#8217;ve decided to participate in this years <a title="like-minded fools" href="http://www.nanowrimo.org">National Novel Writing Month</a>. Crazy, you say? No crazier than any of the other &#8220;creative efforts&#8221; I&#8217;ve attempted in the past ten years. Hell, this one doesn&#8217;t require any more resources than the time it will take and a modest laptop. I wish I could say that of my film career. My <em>credit rating</em> wishes I could say that of my film career as well.</p>
<p>If you&#8217;re not familiar with National Novel Writing Month (or NaNoWriMo as it has come to be known), it&#8217;s an organized effort to get people to write a 50,000 word novel in the month of November. While it might seem a bit ambitious to try and write 50,000 words in a month and even <em>more</em> ambitious to have those words form something like a story, the organizers (and several friends who&#8217;ve done it before) say it&#8217;s totally possible.</p>
<p>Speaking of friends, I have conscripted a few to participate in the event with me and write their <em>own</em> terrible novels. I really did conscript them rather than ask them. This is one of those things where you just have to tell people to &#8220;get in the car&#8221; and don&#8217;t really let them worry about the destination. Really, it&#8217;s motivation for me, as I&#8217;m going to look like quite an idiot if I encourage people to do this and fail to do it myself. Two of these people live in my house, so we&#8217;ll be able to &#8220;support&#8221; (read: mock) each other as we go.</p>
<p>Interestingly, I just noticed that Wordpress here counts words as you type. I just managed to crap out 250 words in a little over fifteen minutes. Considering that one needs to average 1667 words per day to write 50,000 words in 30 days, I really only need to write for around one to three hours a day to make this happen.</p>
<p>Like many people, I&#8217;ve started writing several novels. I&#8217;ve never finished one, though I did get pretty far along with my last attempt.  My hope is that by tearing through this one in a month, I&#8217;ll have a reasonable piece of work (or crap) to start editing.</p>
<p>I&#8217;ve also decided to write this novel using only open source software. I was going to use a Mac emulator running System 7 and Word 5 (the best word processor ever written, im my opinion), but once I got it running I felt like the whole setup was a little dodgy, even for me. Instead, I installed a relatively recent laptop I had with <a title="it is actually pretty okay!" href="http://www.ubuntulinux.org">Ubuntu 9.10</a> and <a title="fast, stable and doesn't have that goddamned paperclip." href="http://www.abisource.com">AbiWord</a>. I wanted a machine that would be dedicated to this process, so when I sit down at it to write I don&#8217;t flail about and do anything else. I&#8217;m even going to disable the wireless during designated writing time so I don&#8217;t fall into a lolcat pit whilst doing &#8220;research&#8221;.</p>
<p>I&#8217;ll be updating my wordcount on <a title="they give you a whole page! on the internet!" href="http://www.nanowrimo.org/eng/user/553445">my NaNoWriMo page</a>, but I&#8217;ll also be updating it here, in the sidebar. Oh, and please, do me a huge favor: Do NOT encourage me. It has been my experience that encouragement does nothing for me. If you want to help, what I need now is cold, hard <em>derision</em>. Feel free to tell me how much I suck if my daily word count falls below 1667. Tell me I&#8217;ll never amount to anything. Ridicule my efforts as much as you can. This is the only effective motivation you can provide. The more you ride me, the more likely I am to defy you and succeed.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/mIBMBNEdxLv2wUSc6enEWJ2Zl9E/0/da"><img src="http://feedads.g.doubleclick.net/~a/mIBMBNEdxLv2wUSc6enEWJ2Zl9E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/mIBMBNEdxLv2wUSc6enEWJ2Zl9E/1/da"><img src="http://feedads.g.doubleclick.net/~a/mIBMBNEdxLv2wUSc6enEWJ2Zl9E/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/q4BfdMkOZeU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/10/30/i-am-writing-a-novel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/10/30/i-am-writing-a-novel/</feedburner:origLink></item>
		<item>
		<title>Sometimes, Numbers Lie</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/YrKYT0-3X90/</link>
		<comments>http://jaybill.com/2009/10/28/sometimes-numbers-lie/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 16:40:53 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[numbers]]></category>
		<category><![CDATA[song titles]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=562</guid>
		<description><![CDATA[


]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-563" title="This conclusion remains true no matter how many more songs you add." src="http://jaybill.com/wp-content/uploads/2009/10/songs_with_numbers.png" alt="This conclusion remains true no matter how many more songs you add." width="425" height="625" /></p>
<input id="gwProxy" type="hidden"/><!--Session data--><br />
<input id="jsProxy" onclick="jsCall();" type="hidden" />

<p><a href="http://feedads.g.doubleclick.net/~a/mSJUCEOsrty3W3M6M2pCWnTYlXo/0/da"><img src="http://feedads.g.doubleclick.net/~a/mSJUCEOsrty3W3M6M2pCWnTYlXo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/mSJUCEOsrty3W3M6M2pCWnTYlXo/1/da"><img src="http://feedads.g.doubleclick.net/~a/mSJUCEOsrty3W3M6M2pCWnTYlXo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/YrKYT0-3X90" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/10/28/sometimes-numbers-lie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/10/28/sometimes-numbers-lie/</feedburner:origLink></item>
		<item>
		<title>Let’s Get Our Heads in the Game</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/MnpNCG1sILE/</link>
		<comments>http://jaybill.com/2009/10/27/lets-get-our-heads-in-the-game/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 18:22:59 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[acres]]></category>
		<category><![CDATA[brazil]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[pizza]]></category>
		<category><![CDATA[rainforest]]></category>
		<category><![CDATA[usa]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=557</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-558" title="Unknown: Percentage of acres of pizza consumed per day while playing World of Warcraft" src="http://jaybill.com/wp-content/uploads/2009/10/acres_per_day.png" alt="Unknown: Percentage of acres of pizza consumed per day while playing World of Warcraft" width="400" height="350" /></p>

<p><a href="http://feedads.g.doubleclick.net/~a/hpaXXKdYN2ybF1PcXW8ru40IQ6Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/hpaXXKdYN2ybF1PcXW8ru40IQ6Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hpaXXKdYN2ybF1PcXW8ru40IQ6Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/hpaXXKdYN2ybF1PcXW8ru40IQ6Q/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/MnpNCG1sILE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/10/27/lets-get-our-heads-in-the-game/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/10/27/lets-get-our-heads-in-the-game/</feedburner:origLink></item>
		<item>
		<title>The Formula For Invincibility</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/tL9IbhOK924/</link>
		<comments>http://jaybill.com/2009/10/26/invincibility-formula/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 23:10:13 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[falling]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[invincibility]]></category>
		<category><![CDATA[odds]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=550</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-553" title="I am not responsible for any real-world tests based on this information." src="http://jaybill.com/wp-content/uploads/2009/10/odds_of_falling_off.png" alt="I am not responsible for any real-world tests based on this information." width="504" height="504" /></p>

<p><a href="http://feedads.g.doubleclick.net/~a/q-szOlCPY4YP8uzh9jOWF05LCcc/0/da"><img src="http://feedads.g.doubleclick.net/~a/q-szOlCPY4YP8uzh9jOWF05LCcc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/q-szOlCPY4YP8uzh9jOWF05LCcc/1/da"><img src="http://feedads.g.doubleclick.net/~a/q-szOlCPY4YP8uzh9jOWF05LCcc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/tL9IbhOK924" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/10/26/invincibility-formula/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/10/26/invincibility-formula/</feedburner:origLink></item>
		<item>
		<title>Wind Power and Hot Air</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/yBUhSljYTOg/</link>
		<comments>http://jaybill.com/2009/10/21/wind-power-and-hot-air/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 19:22:51 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[alternative energy]]></category>
		<category><![CDATA[coal]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[wind]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=537</guid>
		<description><![CDATA[I am in no way an environmentalist. This may strike you as odd, considering how far left I generally lean. My general opinion on the subject, though, is that it is a morass of competing goals and that humans are terrible at doing anything preventative, especially for altruistic motives.  We might be able to solve [...]]]></description>
			<content:encoded><![CDATA[<p>I am in no way an environmentalist. This may strike you as odd, considering how far left I generally lean. My general opinion on the subject, though, is that it is a morass of competing goals and that humans are terrible at doing anything preventative, especially for altruistic motives.  We <em>might</em> be able to solve our environmental crisis after the fact, but there is absolutely no way you&#8217;re going to get everyone on earth to drastically change their behaviors on the timescales required. (read: yesterday)</p>
<p>This is not to say that I&#8217;m in support of dumping my garbage in a river and clubbing baby seals. I just think that environmentalism, is, in general, a lost cause. We should be preparing for the eventualities rather than trying to prevent them. I&#8217;d rather invest my energy where it can actually do something productive.</p>
<p>For this reason, I&#8217;m a huge supporter of renewable energy, particularly in the form of solar and wind.  Both of these resources, are, for practical purposes, infinite and free. You&#8217;d think that would make them absurdly compelling, even if your only motive is greed. It is for this reason that I am continually amazed by the efforts the big energy industry to cast doubt on these technologies.</p>
<p>Yesterday, for example, I came across <a title="Later - Straw men: should you fear them?" href="http://www.nextgenpe.com/news/new-york-wind-farms/">this article</a> in <a title="Industry stooges? Where?" href="http://www.nextgenpe.com/">Power &amp; Energy Magazine</a> on the advantages and disadvantages of wind power. The highlight was the following infographic. (Click to see original.)</p>
<p><a href="http://www.nextgenpe.com/news/new-york-wind-farms/"><img class="alignnone size-full wp-image-538" title="Wind Power Infographic" src="http://jaybill.com/wp-content/uploads/2009/10/wind_small.png" alt="Wind Power Infographic" width="300" height="353" /></a></p>
<p>Ah, yes. Nothing like the clean lines, good design and extensive use of green to aid you in your <a title="if it only had a brain" href="http://en.wikipedia.org/wiki/Straw_man">straw man argument</a>. I don&#8217;t want to accuse the fine folks at Power &amp; Energy Magazine of being industry stooges, but come now. Let&#8217;s look at some of their &#8220;disadvantages&#8221; of wind power, according to the article:</p>
<blockquote><p><strong>Unreliability</strong></p>
<p>The main issue concerned with power from the wind, is that of its unreliability. Wind strength cannot be controlled and in some areas it is just not a viable source of power.</p></blockquote>
<p>So, um, here&#8217;s a crazy idea: Maybe don&#8217;t put wind farms in places where they won&#8217;t work. Then you wouldn&#8217;t have that problem! Also: Don&#8217;t put a hydroelectric power plant in the desert.</p>
<blockquote><p><strong>Lower Electricity Output</strong></p>
<p>Wind power generates significantly less electricity than its fossil fuel equivalent, meaning more turbines are required to generate the same amount of power. Wind turbines are also highly inefficient in terms of output capacity.</p></blockquote>
<p>This <em>would</em> be a really good point, if it weren&#8217;t the fact that energy efficiency concerns kind of don&#8217;t matter when your fuel source is  <em>free</em> and <em>nearly infinite.</em></p>
<blockquote><p><strong>Costly to surrounding wildlife</strong></p>
<p>With demand for renewable and cleaner energy sources growing it is likely that the need for land for wind farms will increase, which will potentially damage a high percentage of local wildlife In the process. It is also estimated that each wind turbine kills over 4 birds a year.</p></blockquote>
<p>Really?  <em>Really?</em> Compare wind farms to say&#8230;coal mining. I&#8217;m just guessing here, but I&#8217;m guessing coal mining probably kills more than four birds a year. Hell, <em>Thanksgiving</em> kills a hell of a lot more birds than that.</p>
<blockquote><p><strong>Noise Pollution</strong></p>
<p>The noise produced from a singular wind turbine is similar to that of a small jet engine and can be a cause of major concern for those living near a wind farm.</p></blockquote>
<p>Again, let&#8217;s compare this to the relative concerns of living near a coal-fired power plant. Coal plants are <em>known</em> to expose people living near them to elevated levels of radiation, airborne toxins and smog. Granted, you probably wouldn&#8217;t want a wind turbine in your back yard, but I can&#8217;t imagine this is any different than living near an airport. Even so, airports tend to be in populated areas, whereas wind farms tend to be in very rural areas.</p>
<p>So it&#8217;s probably fair to say the &#8220;disadvantages&#8221; listed in this article don&#8217;t stand up to even casual scrutiny. Just to put things into perspective, I&#8217;ve prepared my own infographic for you, breaking down the advantages and disadvantages of another energy source: coal. Click for the larger version.</p>
<p><a href="http://jaybill.com/wp-content/uploads/2009/10/coal.png"><img class="alignnone size-full wp-image-543" title="It's amazing what you can do with photoshop in twenty minutes." src="http://jaybill.com/wp-content/uploads/2009/10/coal_small.jpg" alt="It's amazing what you can do with photoshop in twenty minutes." width="300" height="353" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/XvY0Fbm3HwgTRF5zULhvZi1Gjlk/0/da"><img src="http://feedads.g.doubleclick.net/~a/XvY0Fbm3HwgTRF5zULhvZi1Gjlk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/XvY0Fbm3HwgTRF5zULhvZi1Gjlk/1/da"><img src="http://feedads.g.doubleclick.net/~a/XvY0Fbm3HwgTRF5zULhvZi1Gjlk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/yBUhSljYTOg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/10/21/wind-power-and-hot-air/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/10/21/wind-power-and-hot-air/</feedburner:origLink></item>
		<item>
		<title>Everything in Its Right Place</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/pHticvJX9_Q/</link>
		<comments>http://jaybill.com/2009/03/24/everything-in-its-right-place/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 21:15:16 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[garage]]></category>
		<category><![CDATA[organize]]></category>
		<category><![CDATA[shop]]></category>
		<category><![CDATA[toolbox]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=511</guid>
		<description><![CDATA[ I spend my working life writing software and generally staring at computer screens. When I&#8217;m done with the computer for the day, I feel compelled to do something &#8220;real world&#8221;, like cook or build something. Cooking is easy, satisfying and relatively self-contained. Other types of projects require not only space, but an organized space [...]]]></description>
			<content:encoded><![CDATA[<p><a class="tt-flickr tt-flickr-Small" title="It's not a mess! Yay!" href="http://jaybill.com/photos/photo/3382025883/new-layout.html"><img class="alignright" src="http://farm4.static.flickr.com/3419/3382025883_b52f164166_m.jpg" alt="It's not a mess! Yay!" width="180" height="240" /></a> I spend my working life writing software and generally staring at computer screens. When I&#8217;m done with the computer for the day, I feel compelled to do something &#8220;real world&#8221;, like cook or build something. Cooking is easy, satisfying and relatively self-contained. Other types of projects require not only space, but an organized space where you can find the right tool or the right size bolt before you have to stop because it&#8217;s bed time.</p>
<p>Such has been the problem with my garage since I&#8217;ve had a garage. My tools have traditionally been stored in a pile next to the last thing I worked on. At best, they were all jumbled up in a toolbox. After seeing how <a title="he has probably lost more tools than I will ever own" href="http://dsc.discovery.com/videos/mythbusters-raw-jamies-toolkit.html">Jaime Hyneman</a> keeps his tools organized, I was kind of inspired. So long as everything has a place and you know where that place is, the amount of time you spend looking for something in particular can be greatly reduced, if not eliminated.</p>
<p>I started by declaring a number of functional areas for the space. I would have one bench for small projects, like electronics and another for larger stuff, like woodworking. Bike repair would have its own area. Tool storage would be centrally located.</p>
<p>I decided that I what I really wanted was a way to have my tools all out and accessible at all times, but not all jumbled up. I&#8217;ve seen this done effectively with peg boards, but those get pricey by the time you&#8217;ve got a hook for every tool. I also don&#8217;t love how much actual wall space pegboards take up.  I decided I wanted something that would come out from the wall a bit that had a horizontal surface with holes in it. This could be used to store all manner of commonly used hand tools, like screwdrivers, hammers, pliers and so on. I was just about to make something when I saw this milk crate in the corner of the garage. It was an older one that had this heavy metal band around the top. I turned it upside down, bolted it to the wall and started putting tools in the holes in the bottom. If a tool wouldn&#8217;t fit, I cut some of the plastic bars to accomodate it. I probably fit two pegboards worth of tools in a quarter of the space.  Here&#8217;s a picture of it:</p>
<p><a class="tt-flickr tt-flickr-Medium" href="http://jaybill.com/photos/photo/3382836270/toolbox.html"><img class="alignnone" src="http://farm4.static.flickr.com/3615/3382836270_4638d4e6ef.jpg" alt="" width="500" height="375" /></a></p>
<p>For things that wouldn&#8217;t fit in the rack, I just put a finishing nail in the wall and hung it.  Another thing I&#8217;m kind of proud of is this quick but useful drill bit holder I made:</p>
<p><a class="tt-flickr tt-flickr-Medium" title="Drill Bit Holder" href="http://jaybill.com/photos/photo/3382899036/drill-bit-holder.html"><img class="alignnone" src="http://farm4.static.flickr.com/3548/3382899036_42402dff42.jpg" alt="Drill Bit Holder" width="500" height="375" /></a></p>
<p>It has hooks so it can hang on the wall but can also be moved where it needs to go.</p>
<p>Now that everything has a spot, I waste no time looking for stuff. I can spend the hour or two at a time I might have for projects actually working on projects instead of looking for my sh*t. Yay!  Here&#8217;s <a title="You can even see where I keep paint! Yay!" href="http://jaybill.com/photos/album/72157615765592407/garage-re-organization.html">more pictures</a> of the finished reorganization.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/Rlsr6jv3HvCZKv4tgnobISCmm_w/0/da"><img src="http://feedads.g.doubleclick.net/~a/Rlsr6jv3HvCZKv4tgnobISCmm_w/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Rlsr6jv3HvCZKv4tgnobISCmm_w/1/da"><img src="http://feedads.g.doubleclick.net/~a/Rlsr6jv3HvCZKv4tgnobISCmm_w/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/pHticvJX9_Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/03/24/everything-in-its-right-place/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/03/24/everything-in-its-right-place/</feedburner:origLink></item>
		<item>
		<title>Pharrell Talks About ARTST</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/6RkoV0dwTa8/</link>
		<comments>http://jaybill.com/2009/02/27/498/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 18:28:42 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=498</guid>
		<description><![CDATA[Via Steve King of Fishbucket:
Pharrell did a nice little piece on Current a few days ago, talking about the inspiration behind artst.com (formerly known as Heywire.) The site has been blowing up this month, a huge flood of new members and artwork and always inspiring stuff to check out. If you haven’t yet, get in [...]]]></description>
			<content:encoded><![CDATA[<p>Via <a title="Steve King. The one that doesn't write novels." href="http://fishbucket.com/king">Steve King</a> of <a title="It's like a bucket of fish" href="http://fishbucket.com">Fishbucket</a>:</p>
<blockquote><p>Pharrell did a nice little piece on <a title="Al Gore does TV!" href="http://current.com">Current</a> a few days ago, talking about the inspiration behind <a href="http://artst.com/">artst.com</a> (formerly known as Heywire.) The site has been blowing up this month, a huge flood of new members and artwork and always inspiring stuff to check out. If you haven’t yet, get in on that!</p></blockquote>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_en_US_1000464664"
			class="flashmovie"
			width="400"
			height="342">
	<param name="movie" value="http://current.com/e/89827615/en_US" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://current.com/e/89827615/en_US"
			name="fm_en_US_1000464664"
			width="400"
			height="342">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>

<p><a href="http://feedads.g.doubleclick.net/~a/lCvmQW01dTcrqp190aPiofF6H0E/0/da"><img src="http://feedads.g.doubleclick.net/~a/lCvmQW01dTcrqp190aPiofF6H0E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/lCvmQW01dTcrqp190aPiofF6H0E/1/da"><img src="http://feedads.g.doubleclick.net/~a/lCvmQW01dTcrqp190aPiofF6H0E/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/6RkoV0dwTa8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/02/27/498/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/02/27/498/</feedburner:origLink></item>
		<item>
		<title>Remove OSX “._” files from Subversion</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/_ecbyuxWsWg/</link>
		<comments>http://jaybill.com/2009/02/12/remove-osx-_-files-from-subversion/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 03:38:31 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[svn del]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=493</guid>
		<description><![CDATA[Do you use subversion? Did some well meaning OSX-using member of your team do &#8220;svn add *&#8221;  and accidentially commit a bunch of OSX&#8217;s vestigal &#8220;._&#8221; files?
Here&#8217;s an easy way to get rid of them. From the command line (in any Unix variant, including OSX) and cd to the working directory in question.  Then [...]]]></description>
			<content:encoded><![CDATA[<p>Do you use <a title="svn to my homies" href="http://subversion.tigris.org/">subversion</a>? Did some well meaning OSX-using member of your team do &#8220;svn add *&#8221;  and accidentially commit a bunch of OSX&#8217;s vestigal &#8220;._&#8221; files?</p>
<p>Here&#8217;s an easy way to get rid of them. From the command line (in any Unix variant, including OSX) and cd to the working directory in question.  Then paste in the following:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="co2">#!/bin/bash</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">for</span> <a href="http://www.php.net/file"><span class="kw3">file</span></a> in \</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; `find . -name <span class="st0">&quot;._*&quot;</span> -<a href="http://www.php.net/print"><span class="kw3">print</span></a> | grep -v <span class="st0">&quot;.svn&quot;</span>`;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="kw1">do</span> svn del <span class="re0">$file</span>;</div>
</li>
<li class="li1">
<div class="de1">done</div>
</li>
</ol>
</div>
<p>Then commit, and you&#8217;re done.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/01f-tfQnAx_d2xBLBFhuH7InQhs/0/da"><img src="http://feedads.g.doubleclick.net/~a/01f-tfQnAx_d2xBLBFhuH7InQhs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/01f-tfQnAx_d2xBLBFhuH7InQhs/1/da"><img src="http://feedads.g.doubleclick.net/~a/01f-tfQnAx_d2xBLBFhuH7InQhs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/_ecbyuxWsWg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/02/12/remove-osx-_-files-from-subversion/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/02/12/remove-osx-_-files-from-subversion/</feedburner:origLink></item>
		<item>
		<title>Kanye West – 808s &amp; Heartbreaks</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/bapu-X-xxQk/</link>
		<comments>http://jaybill.com/2009/02/09/kanye-west-808s-heartbreaks/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 17:31:11 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[hip hop]]></category>
		<category><![CDATA[kanye west]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[playlist]]></category>
		<category><![CDATA[records]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=469</guid>
		<description><![CDATA[I am not given to writing music reviews, especially of pop music. There are two reasons for this. First is that I&#8217;m generally about three to five months behind in terms of &#8220;new&#8221; music. Second is that I don&#8217;t know that I want all my cool hipster friends knowing that I listen to pop music [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rhapsody.com/goto?variant=play&amp;rcid=Alb.24458327&amp;rws=%2Fuser-album-history.rss"><img class="alignright size-full wp-image-485" title="Kanye West - 808s &amp; Heartbreaks" src="http://jaybill.com/wp-content/uploads/2009/02/kanyewest808.jpg" alt="Kanye West - 808s &amp; Heartbreaks" width="170" height="170" /></a>I am not given to writing music reviews, especially of pop music. There are two reasons for this. First is that I&#8217;m generally about three to five months behind in terms of &#8220;new&#8221; music. Second is that I don&#8217;t know that I want all my cool hipster friends knowing that I listen to pop music now and then. Sometimes even listen to it non-ironically! (gasp)</p>
<p>In semi-related news, I found out that <a title="iTunes is mostly for suckahs. But that's another show." href="http://www.rhapsody.com">Rhapsody</a> allows you to get your playlist via RSS, complete with album art and links to listen to the tracks on the free (web-based) version of the service. Pretty neat! I thought it would be fun to publish that, so one quick and dirty Wordpress plugin later and <a title="I don't know why you would want this. But now you have it. So there's that." href="http://jaybill.com/playlist">here it is</a>. I&#8217;m sure it will be used against me at some point in the future when <a title="I wonder what he'd sound like without Auto-TuneTM" href="http://www.rhapsody.com/t-pain">T-Pain</a> puts out a new record and I play it continuously for three weeks straight.</p>
<p>Anyway, back to the matter at hand. Currently, the most recent <a title="Jay-Z just calls him &quot;yay&quot;" href="http://www.rhapsody.com/kanye-west">Kanye West</a> record, <em><a title="808s &amp; Heartbreaks" href="http://play.rhapsody.com/kanye-west/808s-heartbreak--roc-a-fella-records">808s &amp; Heartbreaks</a></em> has been in heavy rotation on <a title="I wish I had thought of that sooner." href="http://jaybill.com/playlist">Radio Jaybill</a>. Now granted, I liked <a title="she ain't messing with no broke nillas" href="http://www.rhapsody.com/kanye-west/late-registration--explicit/gold-digger">Golddigger</a> as much as the next thirty-something uncool white guy, but this record couldn&#8217;t be less like <em><a title="what is it with him and college-related album titles?" href="http://www.rhapsody.com/kanye-west/late-registration--explicit">Late Registration</a></em>. I&#8217;ve decided that this record is basically to pop music what <em><a title="Depp!" href="http://www.imdb.com/title/tt0325980/">Pirates of the Caribbean</a></em> is to movies. That is that it&#8217;s such a stupid idea that it shouldn&#8217;t have worked, so one has very low expectations. Then it actually turns out to be <em>good</em> and you&#8217;re that much more surprised. Seriously, this should have been a formula for disaster: rapper turned R&amp;B singer makes record with little more than sparse drum machines and <a title="also known as the &quot;remove soul&quot; button" href="http://en.wikipedia.org/wiki/Auto-Tune">Auto-Tune</a> about why he is sad. On the surface, it&#8217;s far less plausible than a pirate movie based on a theme park ride.</p>
<p>Somehow, though, it works. I think the most striking thing about it is how utterly <em>sincere</em> it sounds. Granted, Mr. West has had a pretty <a title="his mom died" href="http://www.msnbc.msn.com/id/21742159/">rough</a> <a title="he broke up with his fiancee" href="http://www.foxnews.com/story/0,2933,352036,00.html">year</a> and has plenty to be upset about. I mean, nothing worse than your average country songwriter must endure in a typical year, but still. That&#8217;s probably got something to do with why this record succeeds, actually. If someone had made a country record out of this subject matter, it would have been totally boring. The choice of medium really helps the final product.</p>
<p><img class="alignright size-full wp-image-487" title="He looks so SAD!" src="http://jaybill.com/wp-content/uploads/2009/02/kanye_head_small.jpg" alt="He looks so SAD!" width="233" height="284" />I thought it would be difficult to feel <em>bad</em> for someone who makes more money in twenty minutes than I&#8217;ll make this year, and yet, I kind of did. His apparent honesty is utterly disarming. He makes no apologies for being rich, famous and powerful. If he had, it probably would have cheapened it somehow. If art is about finding a unique perspective, I put forth West has done nothing if not that. This is a record about someone who seemingly has everything and is suddenly forced to reckon with the utter vacuousness of his existence. This is combined with his realization that he&#8217;s worked so hard on his career that he&#8217;s left no room for his personal life. It&#8217;s a heady mix of inner torment that would make Trent Reznor proud.</p>
<p>Aside from a slew of guest appearances (including Lil Wayne and the ever forgettable Young Jeezy) it lacks most of the trite trappings of typical hip hop record. (including, for the most part, actual hip hop) While overall a pretty great record, it&#8217;s not without a few duds. The final track, <a title="turn it back on" href="http://www.rhapsody.com/kanye-west/808s-heartbreak--roc-a-fella-records/pinocchio-story-freestyle-live-from-singapore">Pinocchio Story</a>, for example, shows what happens when he turns off Auto-Tune. It&#8217;s not pretty.</p>
<p>Overall, though, it&#8217;s a very solid record and I highly recommend it.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/dDaXahnkDUTwn-hR20k4D--5J-M/0/da"><img src="http://feedads.g.doubleclick.net/~a/dDaXahnkDUTwn-hR20k4D--5J-M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dDaXahnkDUTwn-hR20k4D--5J-M/1/da"><img src="http://feedads.g.doubleclick.net/~a/dDaXahnkDUTwn-hR20k4D--5J-M/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/bapu-X-xxQk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/02/09/kanye-west-808s-heartbreaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/02/09/kanye-west-808s-heartbreaks/</feedburner:origLink></item>
		<item>
		<title>Dear Myanmar…</title>
		<link>http://feedproxy.google.com/~r/jaybilldotcom/~3/yosgl0DnEXY/</link>
		<comments>http://jaybill.com/2009/02/07/dear-myanmar/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 00:37:49 +0000</pubDate>
		<dc:creator>Jaybill McCarthy</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[chinlone]]></category>
		<category><![CDATA[hack sack]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jaybill.com/?p=472</guid>
		<description><![CDATA[Thanks for making hacky sack look stupid:
This is a sport called chinlone. It&#8217;s sort of a cross between sport and dance and people that are good at it are amazing to watch. I imagine if you&#8217;re a fan of this and go to events, you probably don&#8217;t want to sit too close to the action [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks for making <a title="more like sad sack" href="http://en.wikipedia.org/wiki/Hacky_Sack">hacky sack</a> look stupid:</p>
<p><a href="http://jaybill.com/2009/02/07/dear-myanmar/"><em>Click here to view the embedded video.</em></a></p>
<p>This is a sport called <a title="no chins are harmed" href="http://en.wikipedia.org/wiki/Chinlone">chinlone</a>. It&#8217;s sort of a cross between sport and dance and people that are good at it are amazing to watch. I imagine if you&#8217;re a fan of this and go to events, you probably don&#8217;t want to sit too close to the action unless a really good team is playing, or you are <em>so</em> taking a foot to the teeth.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/rPC12eHgI3zSQOxmE_n2T72Um5Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/rPC12eHgI3zSQOxmE_n2T72Um5Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rPC12eHgI3zSQOxmE_n2T72Um5Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/rPC12eHgI3zSQOxmE_n2T72Um5Q/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jaybilldotcom/~4/yosgl0DnEXY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jaybill.com/2009/02/07/dear-myanmar/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://jaybill.com/2009/02/07/dear-myanmar/</feedburner:origLink></item>
	</channel>
</rss>
