<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>sleptlate.org &#187; Zach Musgrave</title>
	<atom:link href="http://www.sleptlate.org/author/zachm/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sleptlate.org</link>
	<description>One free adverb with every purchase!</description>
	<lastBuildDate>Sun, 23 May 2010 20:29:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Coding corner</title>
		<link>http://www.sleptlate.org/2010/05/16/coding-corner/</link>
		<comments>http://www.sleptlate.org/2010/05/16/coding-corner/#comments</comments>
		<pubDate>Mon, 17 May 2010 03:29:51 +0000</pubDate>
		<dc:creator>Zach Musgrave</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.sleptlate.org/?p=931</guid>
		<description><![CDATA[I ran in the Beat the Bridge 8k today, and I was getting frustrated waiting for the online results to get posted.  So I fired up a little script.

#!/usr/local/bin/perl

use strict;
use warnings;

while (1) {
    eval {
        system ("wget 'http://onlineraceresults.com/race/view_race.php?race_id=14261' -O race");
     [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://onlineraceresults.com/race/view_individual.php?make_printable=1&#038;bib_num=761&#038;race_id=14261&#038;type=result">I ran in the Beat the Bridge 8k today</a>, and I was getting frustrated waiting for the online results to get posted.  So I fired up a little script.</p>
<pre>
<code >#!/usr/local/bin/perl

use strict;
use warnings;

while (1) {
    eval {
        system ("wget 'http://onlineraceresults.com/race/view_race.php?race_id=14261' -O race");
        my $results = system ("grep 'There are currently no results posted for this race' race");
        if ( $results ) {
            system("/usr/bin/mail -s 'Race results' xxxxxxxxxx\@tmomail.net &lt; /home/zachmu/results") and die "can't send mail";
            exit 0;
        }
    };
    sleep 60;
}</code>
</pre>
<p>By the way, if you know my mobile phone number, you can use the email address template above to send me text messages via email.  Please don&#8217;t script this.</p>
<p>Anyway, the above didn&#8217;t work because of a subtle bug.  See it?  I didn&#8217;t, and so I didn&#8217;t get a text when the results were posted.  Turns out that <code>wget -O file</code> won&#8217;t overwrite an existing file, so after the first one it was a no-op.  Grr.  Always read your man pages!  This can be fixed with a little call to <code>rm</code> inside the loop.</p>
<p>Next I wanted to see how I did compared to the rest of the pack, and wanted to view a histogram of times.  The online results site doesn&#8217;t support such a thing, of course, so I ginned something up:</p>
<pre>
<code >#!/usr/local/bin/perl

use warnings;
use strict;

use Data::Dumper;

my $seenDiv = 0;
my $runner;
my $cell = 0;
my $runners = [];
my $cellProcessors = [
                     simpleFieldExtractor('link'),
                     simpleFieldExtractor('first'),
                     simpleFieldExtractor('last'),
                     simpleFieldExtractor('division'),
                     simpleFieldExtractor('place'),
                     simpleFieldExtractor('divplace'),
                     simpleFieldExtractor('genderplace'),
                     timeExtractor('guntime'),
                     timeExtractor('time'),
                     timeExtractor('pace'),
                     ];

while (&lt;&gt;) {
    my $line = $_;
    chomp($line);

#    print "DEBUG $line\n";

    if (!$seenDiv &amp;&amp; $line =~ m/DIVISION:/) {
        $seenDiv = 1;
    } elsif (!$seenDiv) {
        next;
    }

    if ($line =~ m/tr class/) {
        $runner = {};
        push @$runners, $runner;
    } elsif ($line =~ m/td class.*&gt;(.*)&lt;\/td&gt;/) {
        $cellProcessors-&gt;[$cell]-&gt;($runner, $1);
        $cell = ($cell + 1) % scalar @$cellProcessors;
    } elsif ($line =~ m/block-footer/) {
        last;
    } elsif ($line =~ m/&lt;\/tr&gt;/) {
        $cell = 0;
    }
}

my @filteredRunners = grep { defined $_-&gt;{'time:sec'} } @$runners;
$runners = \@filteredRunners;

analyze();

sub analyze {
    my @sortedByTime = sort {
        $a-&gt;{'time:hrs'} &lt;=&gt; $b-&gt;{'time:hrs'}
        || $a-&gt;{'time:min'} &lt;=&gt; $b-&gt;{'time:min'}
        || $a-&gt;{'time:sec'} &lt;=&gt; $b-&gt;{'time:sec'}
        || 0;
        } @$runners;

    my $bucket = 0;
    my $bucketCnt = 0;
    my $STEP = 60;
    foreach $runner ( @sortedByTime ) {
        next if (not defined $runner-&gt;{'time:sec'});

        my $totalSec = $runner-&gt;{'time:hrs'} * 3600
            + $runner-&gt;{'time:min'} * 60
            + $runner-&gt;{'time:sec'};
        if ($bucket == 0 || $totalSec &gt; $bucket + $STEP) {
            use integer;
            my $label = "";
            $label .= $bucket / 3600;
            my $min = ($bucket % 3600) / 60;
            $min = "0$min" if ($min &lt; 10);
            $label .= ":" . $min;
#            $label .= ":" . $bucket % 60;
            print "$label:";
            for (my $i = 0; $i &lt; $bucketCnt / 10; $i++) {
                print "*";
            }
            print " $bucketCnt\n";
            $bucket = $totalSec - ($totalSec % $STEP);
            $bucketCnt = 1;
        } else {
            $bucketCnt++;
        }
    }
}

#print Dumper $runners;

sub simpleFieldExtractor {
    my $fieldName = shift;
    return sub {
        my ($runner, $field) = @_;
        $runner-&gt;{$fieldName} = $field;
    };
}

sub timeExtractor {
    my $fieldName = shift;
    return sub {
        my ($runner, $field) = @_;
        my ($hrs, $min, $sec) = split(/:/, $field);
        if (not defined $sec) {
            $sec = $min;
            $min = $hrs;
            $hrs = 0;
        }

        $runner-&gt;{"$fieldName:hrs"} = $hrs;
        $runner-&gt;{"$fieldName:min"} = $min;
        $runner-&gt;{"$fieldName:sec"} = $sec;
    };
}</code>
</pre>
<p>When you feed this the <a href="http://onlineraceresults.com/race/view_race.php?race_id=14261&#038;relist_record_type=result&#038;lower_bound=0&#038;upper_bound=5468&#038;use_previous_sql=1&#038;group_by=DIVISION#racetop">race results page</a>, it spits out the following histogram.  Each asterisk represents 10 finishers with the time indicated, discarding seconds.</p>
<pre>
0:24: 2
0:25: 7
0:26:* 14
0:27:* 12
0:28:* 12
0:29:** 20
0:30:** 28
0:31:*** 38
0:32:**** 41
0:33:***** 51
0:34:******** 83
0:35:********* 90
0:36:************ 128
0:37:************* 137
0:38:****************** 180
0:39:********************* 216
0:40:********************* 210
0:41:********************** 228
0:42:************************ 243
0:43:***************************** 296
0:44:************************* 257
0:45:*********************** 238
0:46:****************** 187
0:47:********************** 221
0:48:************************ 241
0:49:******************** 209
0:50:******************* 192
0:51:*********************** 231
0:52:******************* 190
0:53:****************** 187
0:54:************ 129
0:55:*************** 151
0:56:************ 126
0:57:*********** 111
0:58:********* 98
0:59:******* 77
1:00:********* 97
1:01:****** 66
1:02:***** 55
1:03:***** 54
1:04:****** 66
1:05:*** 36
1:06:** 27
1:07:*** 32
1:08:** 27
1:09:* 17
1:10:* 18
1:11:** 26
1:12: 8
1:13: 7
1:14: 8
1:15: 8
1:16: 6
1:17: 9
1:18: 8
1:19: 7
1:20: 1
1:21: 3
</pre>
<p>So, my 37 minute time puts me well above the modal hump there.  That&#8217;s what I wanted to know!</p>
<p>I should be able to use these same tools on other race results posted on that site, provided they don&#8217;t change their format significantly and break my screen scraping.  Provide an API, you yokels!  I hereby release the above software into the public domain, so if you&#8217;re of the running and coding persuasion feel free to use it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sleptlate.org/2010/05/16/coding-corner/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The return of scientific racism</title>
		<link>http://www.sleptlate.org/2010/05/16/the-return-of-scientific-racism/</link>
		<comments>http://www.sleptlate.org/2010/05/16/the-return-of-scientific-racism/#comments</comments>
		<pubDate>Sun, 16 May 2010 22:11:53 +0000</pubDate>
		<dc:creator>Zach Musgrave</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.sleptlate.org/?p=927</guid>
		<description><![CDATA[Scientific racism is the proposal of significant, usually cognitive, differences between ethnic groups justified by (usually sketchy) scientific research.  Navel-gazing European colonialists, eager to understand their race&#8217;s effortless domination of the new world, published many essays speculating about biological causes of their own racial superiority; in the antebellum South (and on contemporary white supremacist [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Scientific_racism">Scientific racism</a> is the proposal of significant, usually cognitive, differences between ethnic groups justified by (usually sketchy) scientific research.  Navel-gazing European colonialists, eager to understand their race&#8217;s effortless domination of the new world, published many essays speculating about biological causes of their own racial superiority; in the antebellum South (and on contemporary white supremacist sites), racists eager to justify their own prejudices obsess over skull volume diagrams.</p>
<p>&#8220;Scientific racism&#8221; is a slur in the academy, roughly analogous to calling something &#8220;psuedoscientific&#8221; in the mainstream scientific community.  Largely because <a href="http://en.wikipedia.org/wiki/Race_and_intelligence#Test_scores">there are observed differences in the results of IQ tests of different races</a>, it is politically correct in many academic circles to refer to general intelligence under the euphemism &#8220;whatever it is that IQ tests measure.&#8221;  </p>
<p>And, in fact, it&#8217;s solid science that performance on such tests is strongly influenced by individuals&#8217; own perceptions of their ability.  Blacks taking a test that is presented as a &#8220;laboratory exercise&#8221; outperform those taking the same test presented as an exam.  In <a href="http://www.goodreads.com/book/show/1713426.Predictably_Irrational_The_Hidden_Forces_That_Shape_Our_Decisions">Predictably Irrational</a>, Dan Ariely relates an even more intriguing experimental result.  Researchers seeking to understand the effect that stereotypes have on math test performance decided to see if they could study the interaction between two conflicting stereotypes: that Asians are good at math; and that women are bad at it.  They tested a large sample of Asian women, subconsciously priming a third of them to think about their womanhood (by asking questions about child birth, motherhood, etc.), another third to think about their Asian-ness (by asking questions about the language spoken at home, immigration, etc.), and leaving a final third as a control group.  Perhaps not surprisingly, they found that each test group lived up to the stereotype they were primed to think about &#8212; the Asian group did better, and the woman group worse, than the control group.</p>
<p>As a society, we find the very idea of cognitive differences between races so vile and reprehensible that anyone making such claims does so at the risk of their academic and scientific career.  <a href="http://en.wikipedia.org/wiki/The_Bell_Curve">The Bell Curve</a>, a book on intelligence distribution that includes a chapter on the black-white achievement gap and suggests it cannot be explained by social factors alone, has received more refutation (and its authors, more ostracism) than any other modern, mainstream scientific text.</p>
<p>I&#8217;m currently reading <a href="http://www.goodreads.com/book/show/835623.How_the_Mind_Works">How the Mind Works</a>, an aptly named treatise about how evolution designed the human brain to fill the &#8220;cognitive niche&#8221; that no other species does.  The author, Steven Pinker, understands that any discussion about innate human behavior, no matter how polite, raises the hackles on many of his more critical readers, and so he spends the first couple chapters of his book hammering home the point that we, as a society, need to separate the concept of what is right from what is true.  He warns about the dangers of the twin logical fallacies applied to this area of research: the naturalistic fallacy (because something is natural, it must be good); and its opposite, the moralistic fallacy (because something is good, it must be natural).  He notes that in the 1980s UNESCO proactively refuted any scientific study that claimed humans have an innate, evolved tendency towards violence and war, asserting that it is &#8220;scientifically inaccurate&#8221; to make such claims.</p>
<p>But with the genetic revolution, any ethnic differences that do exist are inevitably going to come to the forefront.  <a href="http://www.edge.org/q2009/q09_4.html#haidt">Jonathan Haidt of the University of Virginia</a> is concerned about our ability to keep this discussion civil:</p>
<blockquote><p>The most offensive idea in all of science for the last 40 years is the possibility that behavioral differences between racial and ethnic groups have some genetic basis. Knowing nothing but the long-term offensiveness of this idea, a betting person would have to predict that as we decode the genomes of people around the world, we&#8217;re going to find deeper differences than most scientists now expect. Expectations, after all, are not based purely on current evidence; they are biased, even if only slightly, by the gut feelings of the researchers, and those gut feelings include disgust toward racism&#8230;</p>
<p>The protective &#8220;wall&#8221; is about to come crashing down, and all sorts of uncomfortable claims are going to pour in. Skin color has no moral significance, but traits that led to Darwinian success in one of the many new niches and occupations of Holocene life — traits such as collectivism, clannishness, aggressiveness, docility, or the ability to delay gratification — are often seen as virtues or vices. Virtues are acquired slowly, by practice within a cultural context, but the discovery that there might be ethnically-linked genetic variations in the ease with which people can acquire specific virtues is — and this is my prediction — going to be a &#8220;game changing&#8221; scientific event&#8230;</p>
<p>I believe that the &#8220;Bell Curve&#8221; wars of the 1990s, over race differences in intelligence, will seem genteel and short-lived compared to the coming arguments over ethnic differences in moralized traits. I predict that this &#8220;war&#8221; will break out between 2012 and 2017.</p></blockquote>
<p>It&#8217;s getting harder every year to profess the standard social science model of the &#8220;blank slate&#8221; embraced by Piaget and Freud (and many others).  The more we learn about genetics and the brain, the more we learn that major aspects of our personalities and minds are determined at birth or earlier.  For example, recent research suggests that executive function &#8212; one&#8217;s ability to control one&#8217;s thoughts and behavior &#8212; <a href="http://scienceblogs.com/developingintelligence/2008/05/99_genetic_individual_differen.php">is almost entirely heritable</a>.  As time passes, the number of cognitive and behavioral traits in the &#8220;almost entirely heritable&#8221; list is guaranteed to grow, seriously challenging long-cherished beliefs about justice, merit, and agency.</p>
<p>Since this result is inevitable, it&#8217;s imperative that we begin, as Pinker suggests, to separate our moral disgust from our notion of scientific truth.  It&#8217;s certainly proper to be passionately skeptical about results indicating inborn differences between groups of humans; but it&#8217;s not proper to rule out, a priori, the possibility that such differences could exist, as is the current fashion in the academy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sleptlate.org/2010/05/16/the-return-of-scientific-racism/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tea Party: definitely not racist</title>
		<link>http://www.sleptlate.org/2010/04/27/tea-party-definitely-not-racist/</link>
		<comments>http://www.sleptlate.org/2010/04/27/tea-party-definitely-not-racist/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 02:34:12 +0000</pubDate>
		<dc:creator>Zach Musgrave</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.sleptlate.org/?p=915</guid>
		<description><![CDATA[You guys, all those bigoted posters showing Obama with the bone through his nose, even the protest signs that talked about white slavery and called various people niggers, were just outliers.  The tea party movement is about one thing, and one thing only: getting gubmint off our backs!  The fact that the president [...]]]></description>
			<content:encoded><![CDATA[<p>You guys, all those bigoted posters showing Obama with the bone through his nose, even the protest signs that talked about white slavery and called various people niggers, were just outliers.  The tea party movement is about one thing, and one thing only: getting gubmint off our backs!  The fact that the president happens to have dark skin has nothing to do with it.</p>
<p style="text-align: center"><object width="420" height="255"><param name="movie" value="http://www.youtube.com/v/i_AGDih9dBQ&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/i_AGDih9dBQ&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="420" height="255"></embed></object></p>
<p>Yeah!  We&#8217;re against the expansion of the federal government and fiscal irresponsibility!  Seriously, we didn&#8217;t even notice that the president was of the negro persuasion until someone pointed it out to us, and then we were all &#8220;whaaa?&#8221;  We&#8217;d be saying the same things about a white president &#8212; that&#8217;s why we were so overwhelmingly opposed to the Bush tax cuts and deficit spending, and the creation of the DHS, the single largest expansion of the federal government in a generation.</p>
<p style="text-align: center"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/PU_mMwCNl0M&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/PU_mMwCNl0M&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>We wanted to show up to protest the Bush administration, too&#8230; well, about that. Jim&#8217;s grandma got real sick, and Lou there was busy with overtime at the slaughterhouse.  Also, we couldn&#8217;t find any black markers or paint stirrers to make our signs.  By a total coincidence, when Obama was elected we overcame these obstacles just in time to warn America about how the gubmint takeover of health care was gonna death-panel Jim&#8217;s grandma after putting her Medicare in the hands of some Washington bureaucrat.</p>
<p>You see, this movement is all about freedom, not racism!  That&#8217;s why when Arizona passed a law to allow police officers to demand that anyone they suspected of being an illegal immigrant show their papers or face indefinite detention, we showed up in mass to protest this Nazi-like intrusion into American liberty.  Actually hold on&#8230; in this case, we&#8217;re sure those government officials will not abuse their powers (we trust them), so <a href="http://voices.washingtonpost.com/right-now/2010/04/tea_parties_backing_the_arizon.html">we showed up to protest the overwhelming protests of the new law</a>.  You see, this law keeps America America-<em>er</em>.  Any real American has nothing to fear.  There&#8217;s no way that brown-skinned people are going to be targeted by this law; if they&#8217;re here legally, <a href="http://thinkprogress.org/2010/04/27/arizona-tea-parties/">they&#8217;re one of us</a>.</p>
<blockquote><p>
Approximately 45% of Whites either strongly or somewhat approve of the [Tea Party] movement. Of those, only 35% believe Blacks to be hardworking, only 45 % believe Blacks are intelligent, and only 41% think that Blacks are trustworthy. Perceptions of Latinos aren’t much different. While 54% of White Tea Party supporters believe Latinos to be hardworking, only 44% think them intelligent, and even fewer, 42% of Tea Party supporters believe Latinos to be trustworthy.
</p></blockquote>
<p>Ok, yeah, if you&#8217;re talking about <em>all</em> black, and <em>all</em> latinos, sure.  But the ones we know personally are great, and those other ones could be great too, if only they just applied themselves and quit looking to the gubmint for a handout.</p>
<p>Our movement welcomes all people of color!  There&#8217;s no reason to imagine things would be any different if <a href="http://www.alternet.org/story/146616/what_if_the_tea_party_were_black">we were all negroes ourselves</a>.</p>
<blockquote><p>Imagine that hundreds of black protesters were to descend upon Washington DC and Northern Virginia, just a few miles from the Capitol and White House, armed with AK-47s, assorted handguns, and ammunition. And imagine that some of these protesters —the black protesters — spoke of the need for political revolution, and possibly even armed conflict in the event that laws they didn’t like were enforced by the government? Would these protesters — these black protesters with guns — be seen as brave defenders of the Second Amendment, or would they be viewed by most whites as a danger to the republic? What if they were Arab-Americans? Because, after all, that’s what happened recently when white gun enthusiasts descended upon the nation’s capital, arms in hand, and verbally announced their readiness to make war on the country’s political leaders if the need arose.</p></blockquote>
<p>Hey, who are you going to believe, us, or the Jew-run liberal media?  Now for the last time, quit calling us racists!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sleptlate.org/2010/04/27/tea-party-definitely-not-racist/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dammit, Girls Scouts</title>
		<link>http://www.sleptlate.org/2010/04/23/dammit-girls-scouts/</link>
		<comments>http://www.sleptlate.org/2010/04/23/dammit-girls-scouts/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 04:33:31 +0000</pubDate>
		<dc:creator>Zach Musgrave</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://www.sleptlate.org/?p=913</guid>
		<description><![CDATA[You had to know that I would end up calling them Samoans by mistake all the time.  There is no plural of Samoa!
]]></description>
			<content:encoded><![CDATA[<p>You had to know that I would end up calling them <a href="http://www.apartmenttherapy.com/uimages/kitchen/2009_04_02-Samoa.jpg">Samoans</a> by mistake all the time.  There is no plural of Samoa!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sleptlate.org/2010/04/23/dammit-girls-scouts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Almost everyone is wrong about video games</title>
		<link>http://www.sleptlate.org/2010/04/20/almost-everyone-is-wrong-about-video-games/</link>
		<comments>http://www.sleptlate.org/2010/04/20/almost-everyone-is-wrong-about-video-games/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 05:48:30 +0000</pubDate>
		<dc:creator>Zach Musgrave</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://www.sleptlate.org/?p=893</guid>
		<description><![CDATA[There&#8217;s been quite a bit of noise on the intertubes lately about the nature of video games.  What are they, exactly?  Are they art (yes, idiots, JESUS)?  What do they do to us as animals and people?
First, they are big.  How big?  Bigger than both the music industry and Hollywood.

That [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been quite a bit of noise on the intertubes lately about the nature of video games.  What are they, exactly?  Are they art (yes, idiots, JESUS)?  What do they do to us as animals and people?</p>
<p>First, they are big.  How big?  Bigger than both the music industry and Hollywood.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.sleptlate.org/wp-content/uploads/HLIC/88afee55eef88bea4b02133627f8942e.png" alt="just kids huh" width="448" height="336" /></p>
<p>That didn&#8217;t answer any real question about the nature of video games, but it does give you a sense of scale.  Regardless of how you feel about them, video games are an essential part of modern society.</p>
<p>However, mainstream society dismisses them as a juvenile waste of time, in some ineffable but furious way a graver vice than other isolated, passive forms of entertainment like television, film, or reading (not that anyone reads, just saying).  I recently found the following <a href="http://www.viceland.com/int/dd.php?id=1114">pseudo-anonymous screed</a> linked from an <a href="http://syntheticpubes.com/">erotic photo blog I read</a>:</p>
<blockquote><p>The average video-game player is thirty-fucking-four years old. Every other generation had a career and a family by then. Get your shit together, us! We’re basically the explosive diarrhea generation.</p></blockquote>
<p>This kind of critique is easily dismissed, and should be, as the self-hating whining of an underachiever trying to scapegoat their failure.  I guess when you lack even a basic understanding of the topic you&#8217;re criticizing, it&#8217;s not hard to be this wrong.  Yes, the average gamer is 34.  My older brother is, in fact, the average 34-year-old gamer.  He has a solid career and 3 children.  He and his kind (and mine, for that matter) are quickly entering the mainstream, although you wouldn&#8217;t know it to listen to the dang liberal media*.  <a href="http://www.pewinternet.org/~/media//Files/Reports/2008/PIP_Adult_gaming_memo.pdf.pdf">An entire generation is playing video games</a>, but the mainstream is content to treat gaming, the most ascendant and important cultural trend since the television itself, with a slack-jawed mixture of condescension, befuddlement, and fear.  You might be surprised how often they hit the trifecta in a single story, actually &#8212; pretty much happens whenever a white teenager shoots someone.</p>
<p>With only mad jibbering coming out of the mainstream on the topic, people who care about this kind of thing look inward for insight.  Jesse Schell recently gave a talk at a gaming expo, worth a watch even if you don&#8217;t have any interest in gaming as a hobby.  He gets the importance of gaming, really gets it, on a level that most people don&#8217;t.  He sees gaming-like activities permeating every aspect of our society within a decade, and from where I&#8217;m sitting it looks like he&#8217;s right.</p>
<p style="text-align: center;"><object id="VideoPlayerLg44277" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="418" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://g4tv.com/lv3/44277" /><param name="name" value="VideoPlayer" /><param name="allowfullscreen" value="true" /><embed id="VideoPlayerLg44277" type="application/x-shockwave-flash" width="480" height="418" src="http://g4tv.com/lv3/44277" name="VideoPlayer" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<p>The aspect of gaming that Jesse Schell thinks is migrating to the real world is the same one we exploit when we wire up a rat&#8217;s reward center in its brain to a switch on the floor of its cage, and it steps on that switch over and over until it keels over from exhaustion.  We know from scanning live brains that this region lights up equally readily in response to getting fed for a hungry person, looking at porn for a man, hitting a jackpot for a gambler, and incrementing the Xbox Live gamer score for a gamer.  The neural mechanism that is ultimately responsible for all addiction literally cannot tell the difference between biting into a cheeseburger when ravenous and getting a sweet frag on Live.  Almost all successful games exploit this mechanism to some extent, and some of the most successful ones effectively wire into the brain directly, just like we do to those poor (but happy) lab rats.</p>
<p>A few months ago I poured about twelve hours into an indie game called Miner Dig Deep.  There&#8217;s no reason anyone should call the activity in this game, which involves tediously digging thousands of feet underground and then riding elevators back to the surface, &#8220;fun.&#8221;   But it is fun.  It&#8217;s so fun it&#8217;s hard to put down.  It&#8217;s fun because it randomly but consistently rewards you with ever more valuable gems as you delve deeper underground.  You can sell the gems for money, which you can use to buy better equipment, which lets you dig deeper or faster or longer, which is how you recover even more valuable gems, completing the cycle.  I found this pointless cycle so incredibly rewarding that I always, always had to make an effort to put the game down, to not head back down to the bottom of the mine for one last haul before bed.  In the game&#8217;s defense, it&#8217;s a charming piece of cottage art, complete with an original guitar score.  But to call its gameplay mechanics Pavlovian would be generous.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Y-R_w8UYB_A&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="420" height="255" src="http://www.youtube.com/v/Y-R_w8UYB_A&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>As Schell mentions, the largest part of the Zeitgeist is harvesting virtual tomatoes in Farmville.  I haven&#8217;t gotten on board; not because I wouldn&#8217;t like it, but because due to experiences like Miner Dig Deep I know I would, and I don&#8217;t have the spare time to get involved with it.  There&#8217;s quite a lot of scholarship on Farmville being written, such as <a href="http://mediacommons.futureofthebook.org/content/cultivated-play-farmville">this one out of SUNY</a>.  It&#8217;s interesting because it accurately assesses the role that social obligation plays in Farmville&#8217;s success, and then absurdly concludes that this obligation is the only reason anyone plays.  I love picking apart this kind of academic drivel, because it sounds so plausible to read if you&#8217;re willing to settle for appeal to authority over actual observation; for semantic niggling over real debate.</p>
<blockquote><p>Farmville is not a good game. While Caillois tells us that games offer a break from responsibility and routine, Farmville is defined by responsibility and routine. Users advance through the game by harvesting crops at scheduled intervals; if you plant a field of pumpkins at noon, for example, you must return to harvest at eight o’clock that evening or risk losing the crop. Each pumpkin costs thirty coins and occupies one square of your farm, so if you own a fourteen by fourteen farm a field of pumpkins costs nearly six thousand coins to plant. Planting requires the user to click on each square three times: once to harvest the previous crop, once to re-plow the square of land, and once to plant the new seeds. This means that a fourteen by fourteen plot of land—which is relatively small for Farmville—takes almost six hundred mouse-clicks to farm, and obligates you to return in a few hours to do it again. This doesn’t sound like much fun, Mr. Caillois. Why would anyone do this?</p></blockquote>
<p>True, I did produce this kind of sophistry on demand when I was earning my own liberal arts degree, but that doesn&#8217;t mean I can&#8217;t call out egregious bullshit when I see it.  I don&#8217;t have to; Farmville players get it, and this guy doesn&#8217;t.  Every one of those pumpkins is a bump of coke.  The activity is its own reward.  If you don&#8217;t understand this about the medium, you shouldn&#8217;t attempt to form an opinion.</p>
<p>Successful writer Tom Bissell recently <a href="http://www.guardian.co.uk/theobserver/2010/mar/21/tom-bissell-video-game-cocaine-addiction">spent three entire years doing nothing but snorting coke and playing Grand Theft Auto 4</a>, which is about as perfect a complementary activity as I can imagine.</p>
<blockquote><p>The coke sailed up my nasal passage, leaving behind the delicious smell of a hot leather car seat on the way back from the beach. My previous coke experience had made feeling good an emergency, but this was something else, softer and almost relaxing. This coke, my friend told me, had not been &#8220;stepped on&#8221; with any amphetamine, and I pretended to know what that meant. I felt as intensely focused as a diamond-cutting laser; Grand Theft Auto IV was ready to go. My friend and I played it for the next 30 hours straight.</p>
<p>There are times when I think GTA IV is the most colossal creative achievement of the last 25 years, times when I think of it as an unsurpassable example of what games can do, and times when I think of it as misguided and a failure. No matter what I think about GTA IV, or however I am currently regarding it, my throat gets a little drier, my head a little heavier, and I know I am also thinking about cocaine.</p></blockquote>
<p>Last week Roger Ebert returned to a statement he made years ago: that <a href="http://blogs.suntimes.com/ebert/2010/04/video_games_can_never_be_art.html">video games can never be art</a>.  Again, it&#8217;s possible to imagine a way for a person to be this wrong; I think in Ebert&#8217;s case it&#8217;s a combination of advanced age and a profound misunderstanding of the medium he tries to critique.  For example, he believes he can experience a game without playing it.  For a better, more nuanced rebuttal to this absurd position than I could write, see <a href="http://pc.ign.com/articles/108/1084661p1.html">Mike Thomsen&#8217;s at IGN</a>.</p>
<blockquote><p>The reason football is not art is because its rules were designed with the primary goal of competition. Competition is only one of a great many different experiences that a videogame can create. Games can also be about losing, and not competing at all. They can be about love, the impossibility of relationships, the beautiful indifference to our individual life choices, urgent intimacy in the shadow of death, sexual anxiety, and confrontation with life choices to which there are no right answers. There are games that, using the language of authored interaction, invoke all of these ideas, and many more beyond.</p></blockquote>
<p>For myself, I simply know they&#8217;re art.  I can&#8217;t feel otherwise; too many gaming experiences have affected me deeply, too many to count, in ways that only the finest non-electronic art ever has.  And so I know they&#8217;re art the same way I know I love looking at naked ladies.  The fact that they&#8217;re also a lot like a slot machine doesn&#8217;t change that in the least.</p>
<p>*The term &#8220;liberal media&#8221; is used here ironically and is not meant to imply the existence even of a centrist media.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sleptlate.org/2010/04/20/almost-everyone-is-wrong-about-video-games/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Lawrence Lessig on saving democracy from money</title>
		<link>http://www.sleptlate.org/2010/04/07/lawrence-lessig-on-saving-democracy-from-money/</link>
		<comments>http://www.sleptlate.org/2010/04/07/lawrence-lessig-on-saving-democracy-from-money/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 01:46:11 +0000</pubDate>
		<dc:creator>Zach Musgrave</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.sleptlate.org/?p=891</guid>
		<description><![CDATA[Lawrence Lessig is the rare political luminary who transcends partisanship.  It&#8217;s not that he&#8217;s not a filthy progressive at heart; it&#8217;s that he thinks the only way to achieve a progressive agenda in this country is by removing the influence of money from Congress &#8212; a goal that, in itself, has broad popular support [...]]]></description>
			<content:encoded><![CDATA[<p>Lawrence Lessig is the rare political luminary who transcends partisanship.  It&#8217;s not that he&#8217;s not a filthy progressive at heart; it&#8217;s that he thinks the only way to achieve a progressive agenda in this country is by removing the influence of money from Congress &#8212; a goal that, in itself, has broad popular support across party lines.  He outlines the problem, and how he thinks we should address it, in this talk to the Reboot Democracy conference in Bend, OR.</p>
<p style="text-align: center"><embed src="http://blip.tv/play/lG2B0cAtAg" type="application/x-shockwave-flash" width="480" height="390" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>I don&#8217;t know if calling a Constitutional Convention is a realistic goal, but I agree with Lessig that&#8217;s it&#8217;s probably our best shot of fixing the system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sleptlate.org/2010/04/07/lawrence-lessig-on-saving-democracy-from-money/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I probably shouldn&#8217;t have found this so amusing</title>
		<link>http://www.sleptlate.org/2010/03/15/i-probably-shouldnt-have-found-this-so-amusing/</link>
		<comments>http://www.sleptlate.org/2010/03/15/i-probably-shouldnt-have-found-this-so-amusing/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 05:52:33 +0000</pubDate>
		<dc:creator>Zach Musgrave</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://www.sleptlate.org/?p=887</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://www.sleptlate.org/wp-content/uploads/HLIC/8ac5e94f5d633a512395597587948e9a.gif" class="aligncenter" width="450" height="238" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sleptlate.org/2010/03/15/i-probably-shouldnt-have-found-this-so-amusing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Out with the old, in with the new</title>
		<link>http://www.sleptlate.org/2010/03/15/out-with-the-old-in-with-the-new/</link>
		<comments>http://www.sleptlate.org/2010/03/15/out-with-the-old-in-with-the-new/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 05:28:09 +0000</pubDate>
		<dc:creator>Zach Musgrave</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.sleptlate.org/?p=873</guid>
		<description><![CDATA[I finally gave in.  I ditched one of my last remaining sources of indie cred: the non-smart phone.

For most of a decade I&#8217;ve been carrying around a phone that was pretty cool in 2001 and hopelessly outdated by 2003, the Nokia 8390. Just look at this bad mother.  It has these sweet white [...]]]></description>
			<content:encoded><![CDATA[<p>I finally gave in.  I ditched one of my last remaining sources of indie cred: the non-smart phone.</p>
<p><img class="alignleft" alt="sexy in 2001" src="http://www.sleptlate.org/wp-content/uploads/HLIC/45419b2615e09561ec15953a34f25924.jpg" width="122" height="200" /></p>
<p>For most of a decade I&#8217;ve been carrying around a phone that was pretty cool in 2001 and hopelessly outdated by 2003, the Nokia 8390. Just look at this bad mother.  It has these sweet white LEDs in its faceplate that light up when you push a button or get a call.  Back when nobody had color screens yet, the 8390 was about as sexy as phones got.  That changed pretty quickly.</p>
<p>Fast-forward to 2010 to find me carrying the same model. Not the same phone &#8212; I&#8217;ve gone through three identical ones in all, including <a href="/2005/07/05/dammit-this-almost-never-happens/">one that spent 15 minutes at the bottom of Lake Sutherland and recovered</a>.  My coworkers universally have iPhones or Blackberries, and my friends, even the luddites, have color screens and cameras on their phones.  I&#8217;ll admit to the occasional pang of jealousy at those luminous devices, but mostly I was immune to phone envy.</p>
<p><img class="alignright" alt="sexy now" src="http://www.sleptlate.org/wp-content/uploads/HLIC/cbf87ad205caac6ec14a7c4af87f31f1.jpg" width="180" height="300" /></p>
<p>Ironically, what spurred my decision to move into the 21st century of mobile communication is that AT&amp;T became so overwhelmed with the volume of data traffic generated by iPhone customers that they couldn&#8217;t even bother to reliably make my simple non-smart phone ring when I got a call.  So I caved and, for better or worse, joined the ranks of people who can dick around on the internet in public whenever they want.  I chose this sexy beast to the right here over the iPhone, mostly because I want to write applications for it without having to buy a $2000 laptop.  Overall it&#8217;s probably not as polished as the iPhone, but it has more functionality (at least until the 4G) and will let me put my own software on it without jumping through a bunch of quasi-criminal hoops.</p>
<p>I&#8217;m still just scratching the surface of its functionality beyond making phone calls and web browsing, but I&#8217;ve already started using it as a camera and a GPS.  This weekend I used it to trace Roark, Adam and me as we wended our way <a href="http://worksmartlabs.com/cardiotrainer/tracks.php?trackId=1032636&amp;sig=b698f3ef83fb0f9b7ffae4239f4ccb771ba6a96f">up a ridge line outside Leavenworth</a>.  I might even buy an armband and take it running, just like those people I used to mock mercilessly once they had jogged out of earshot.</p>
<p>I hate to say this, but Twitter is probably next.  Sorry, everybody.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sleptlate.org/2010/03/15/out-with-the-old-in-with-the-new/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Someone is masturbating to this as we speak</title>
		<link>http://www.sleptlate.org/2010/03/06/someone-is-masturbating-to-this-as-we-speak/</link>
		<comments>http://www.sleptlate.org/2010/03/06/someone-is-masturbating-to-this-as-we-speak/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 22:16:21 +0000</pubDate>
		<dc:creator>Zach Musgrave</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://www.sleptlate.org/?p=865</guid>
		<description><![CDATA[Being the savvy internet denizen that you are, you&#8217;re no doubt aware of the bizarre meme of Japanese game shows.  The one below is representative, in that it involves teams of diaper-wearing men competing to see some blurred-out female nudity.

It&#8217;s relatively safe to say that some impressionable pubescent male is getting turned on by [...]]]></description>
			<content:encoded><![CDATA[<p>Being the savvy internet denizen that you are, you&#8217;re no doubt aware of the bizarre meme of Japanese game shows.  The one below is representative, in that it involves teams of diaper-wearing men competing to see some blurred-out female nudity.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/j9uY9NRVVNQ&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/j9uY9NRVVNQ&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>It&#8217;s relatively safe to say that some impressionable pubescent male is getting turned on by this stuff, and that, later in life, he&#8217;s going to have trouble getting off unless he hears the sound of a team of Japanese men screaming at him to <em>try harder</em>.  Imagine how crippling that&#8217;s going to be for him in his relationships.</p>
<p><a href="http://boytaur.net"><img class="alignright" src="http://www.sleptlate.org/wp-content/uploads/HLIC/09501fd57d65705b8541e1ef30a4c3fa.jpg" alt="" width="177" height="279" /></a></p>
<p>This problem, writ large, is really about the extent to which the ubiquity and strangeness of internet pornography is producing a generation of deviants.  It really is too early to tell &#8212; the medium only really flowered with broadband, so we&#8217;re talking this decade.  The first batch of young men to be shaped by it only recently reached the age of majority.  The sexual dysfunctions and anxieties they&#8217;re going to have as a result of exposure to the above kind of stuff from an early age (as well as dozens of flavors of much nastier, abusive porn) really is hard to predict, but I&#8217;m going to go on the record right now and say that in another five or ten years it&#8217;s something we&#8217;re going to have to confront as a society, probably at the institutional level.  Sex therapy for men, to re-wire their brains to be turned on by something as humdrum as a naked lady, is going to be common.  We&#8217;ve got advance warning of this problem coming from the ultimate spiritual source of bizarre porn, Japan.  In 2005, Durex conducted a global poll of sexual satisfaction which found that <a href="http://www.guardian.co.uk/world/2007/mar/15/japan.justinmccurry">Japan is the least sexually satisfied country in the world</a>, with just 25% of those polled saying they enjoy sex.</p>
<p><img class="alignleft" src="http://www.sleptlate.org/wp-content/uploads/HLIC/d46bf5dd37ebd4c493cdc894412b3c48.gif" alt="This isn't even that bad by internet standards" width="320" height="254" /></p>
<p>To be clear, I&#8217;m a fierce opponent of censorship of any kind on the internet &#8212; it always, always starts with someone asking you to think of the children, and ends with your news being filtered.  Literally every country with internet censorship has followed this pattern.  But I do think that parents today need to consider being much more open with their kids about the topic of sex and porn, especially little boys.  It&#8217;s no longer enough to keep them away from those dirty magazines; limiting exposure with today&#8217;s technology is like trying to beat back the ocean.  Rather, today&#8217;s parents probably need to actively talk about &#8220;good porn&#8221; versus &#8220;bad porn.&#8221;</p>
<p>That American parents are in no way ready to have that talk with their kids tells me that we&#8217;re going to be in for some really interesting and depressing cases of sexual dissatisfaction that affects an entire generation of men.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sleptlate.org/2010/03/06/someone-is-masturbating-to-this-as-we-speak/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Out with the new, in with the old</title>
		<link>http://www.sleptlate.org/2010/03/06/out-with-the-new-in-with-the-old/</link>
		<comments>http://www.sleptlate.org/2010/03/06/out-with-the-new-in-with-the-old/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 20:55:32 +0000</pubDate>
		<dc:creator>Zach Musgrave</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://www.sleptlate.org/?p=862</guid>
		<description><![CDATA[Due to a combination of bad luck and irresponsibility, the old host for sleptlate.org, a random machine in a college friend&#8217;s basement in Colorado, suffered a blown capacitor and died, taking with it the only copy of all the extracurricular creative output I&#8217;d generated from 2003 to 2009.  At some point I had made [...]]]></description>
			<content:encoded><![CDATA[<p>Due to a combination of bad luck and irresponsibility, the old host for sleptlate.org, a random machine in a college friend&#8217;s basement in Colorado, suffered a blown capacitor and died, taking with it the only copy of all the extracurricular creative output I&#8217;d generated from 2003 to 2009.  At some point I had made a backup to my local disk, but of course that drive had died in the interim, never to spin up again.  The drive on the old server was fine, but 1) its owner was in Berkeley, not Colorado, and 2) it was a SCSI interface, an ancient class of data connector that most systems aren&#8217;t capable of mounting.  The drive sat in limbo for over a year, until finally I had my friend mail it to me and threw money at the problem to end up with a CD of my precious data.  One quick import script later and I had all my archives converted to the WordPress format.</p>
<p>It&#8217;s difficult to express how this wealth of archaeological data makes me feel.  On the one hand, it&#8217;s a meticulous and reasonably honest record of my life, such as this <a href="/2004/04/04/about-the-graf-family/">account of my host family in Vienna</a>.  On the other, it&#8217;s a look back to <a href="/2004/01/20/a-weekend-of-firsts-and-fancy-homes/">a trivial and somehow gratuitous form of self-expression</a> that&#8217;s frankly embarrassing to read.  It&#8217;s a view onto a younger, less settled incarnation of myself, one I&#8217;m not entirely sure I still want around.</p>
<p>My dad sometimes comments dolefully on how my blog got all serious and full of, you know, content all of a sudden.  He has a point.  I don&#8217;t fully understand why, but I got pretty deeply disenchanted with the idea of online journaling, to the extent where updating the website felt like a chore.  Maybe I&#8217;m just not self-absorbed enough anymore, or maybe there are only so many &#8220;interesting&#8221; things one can write about oneself before getting burned out.  In any case, you&#8217;ll notice that I filed all those old posts under <a href="/category/musings/">the &#8220;Musings&#8221; category</a> to highlight their essentially substance-less nature.  I think it says a lot that the earliest incarnation of this blog was titled &#8220;Zach&#8217;s Musings.&#8221;  I&#8217;m not so interested in musing about nothing anymore, for better or worse.</p>
<p>Now, at least, the evidence of all those former musings are part of the public record.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sleptlate.org/2010/03/06/out-with-the-new-in-with-the-old/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
