<?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>Right Up Top</title>
	<atom:link href="http://www.rightuptop.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rightuptop.com</link>
	<description>Incredible. I'm having an incredible year.</description>
	<lastBuildDate>Fri, 08 Jul 2011 05:39:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>The Greatest PHP Debugging Function of All Time</title>
		<link>http://www.rightuptop.com/techie/the-greatest-php-debugging-function-of-all-time/</link>
		<comments>http://www.rightuptop.com/techie/the-greatest-php-debugging-function-of-all-time/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 20:27:22 +0000</pubDate>
		<dc:creator>jake</dc:creator>
				<category><![CDATA[Techie]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.rightuptop.com/?p=756</guid>
		<description><![CDATA[I normally try to keep the tech stuff to a minimum on the blog, but this function is in high demand from anyone who&#8217;s ever had it and then worked on another codebase without it.  Simple, but mind-blowingly useful. Without further ado, I present, YO. NOTE: This is a re-write of some code I wrote [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I normally try to keep the tech stuff to a minimum on the blog, but this function is in high demand from anyone who&#8217;s ever had it and then worked on another codebase without it.  Simple, but mind-blowingly useful. Without further ado, I present, <strong>YO</strong>.  </p>
<p>NOTE: This is a re-write of some code I wrote at Yahoo!, so I wanted to give credit to the two folks who had a hand in the debugging system we built there, from which this is derived: Chris and Sara.</p>
<p>You&#8217;re welcome, America.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #009933; font-style: italic;">/**
 * The greatest debugging class in history. Here's why:
 * 
 *  - outputs to both the error log and optionally the screen.
 *  - formats output nicely so you can see your debugging output
 *  - shows you where the yo() call is IN THE OUTPUT so if you
 *    leave a yo() in someplace, you can track it down easy-peasy.
 *  - accepts multiple args just like var_dump
 *  - feel free to use the sub functions too (like var_dump_str)
 *   
 * @author Jacob Rosenberg &lt;themasterof@rightuptop.com&gt;
 * @author Sara Golemon
 * @author Chris Draycott
 *
 */</span>
<span style="color: #000000; font-weight: bold;">class</span> Yo <span style="color: #009900;">&#123;</span>
&nbsp;
&nbsp;
    <span style="color: #666666; font-style: italic;">/* {{{ */</span>
    <span style="color: #009933; font-style: italic;">/**
     * getCallerLine
     *
     * gets the calling line of the function it was called from,
     * i.e., this function's grandparent.
     *
     * @returns string Name of calling function
     */</span>
    static <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> getCallerLine<span style="color: #009900;">&#40;</span><span style="color: #000088;">$levels</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$bt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">debug_backtrace</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$bt</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$levels</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'file'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> ? <span style="color: #000088;">$bt</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$levels</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'file'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$line</span> <span style="color: #339933;">=</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$bt</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$levels</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'line'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> ? <span style="color: #000088;">$bt</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$levels</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'line'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #b1b100;">return</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #339933;">,</span> <span style="color: #000088;">$line</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #666666; font-style: italic;">/* }}} */</span>
&nbsp;
&nbsp;
    <span style="color: #666666; font-style: italic;">/* {{{ */</span>
    <span style="color: #009933; font-style: italic;">/**
     * getCaller
     *
     * gets the calling function of the function it was called from,
     * i.e., this function's grandparent.
     *
     * @returns string Name of calling function
     */</span>
    static <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> getCaller<span style="color: #009900;">&#40;</span><span style="color: #000088;">$levels</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$bt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">debug_backtrace</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$bt</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$levels</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$caller</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$bt</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$levels</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'function'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
            <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$bt</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$levels</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'class'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000088;">$caller</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$bt</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$levels</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'class'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;::&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$caller</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span>
        <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$caller</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'main'</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$caller</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
    <span style="color: #666666; font-style: italic;">/* {{{ */</span>
    <span style="color: #009933; font-style: italic;">/**
     * var_dump_str
     *
     * var_dump, but with returned output.
     * OB capture is gross, but print_r($x,1) sucks compared to var_dump.
     *
     * @param mixed PHP Variable to be var_dump'd
     * @returns string var_dump representation of that variable
     */</span>
    <span style="color: #000000; font-weight: bold;">function</span> var_dump_str<span style="color: #009900;">&#40;</span><span style="color: #000088;">$var</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #990000;">ob_start</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">var_dump</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$var</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$out</span> <span style="color: #339933;">=</span> <span style="color: #990000;">ob_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">ob_end_clean</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$out</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #666666; font-style: italic;">/* }}} */</span>
&nbsp;
    <span style="color: #009933; font-style: italic;">/**
     * isInternal
     *
     * determines if a user is an internal user.
     *
     * @return bool true if the user is internal and should see debug output
     */</span>
    <span style="color: #000000; font-weight: bold;">public</span> static <span style="color: #000000; font-weight: bold;">function</span> isInternal<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #666666; font-style: italic;">// feel free to add some code here that</span>
        <span style="color: #666666; font-style: italic;">// turns on debug output for only a subset of users.</span>
        <span style="color: #666666; font-style: italic;">//</span>
        <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">/* }}} */</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">/* {{{ */</span>
    <span style="color: #009933; font-style: italic;">/**
     * yo - figure it out yourself, dummy
     *
     * @param mixed Variable(s) to be dumped (var args)
     * ...
     */</span>
    <span style="color: #000000; font-weight: bold;">public</span> static <span style="color: #000000; font-weight: bold;">function</span> do_yo<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$internal</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">self</span><span style="color: #339933;">::</span><span style="color: #004000;">isInternal</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$caller</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">self</span><span style="color: #339933;">::</span><span style="color: #004000;">getCaller</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$internal</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;pre&gt;&lt;h1&gt;YO!!: <span style="color: #006699; font-weight: bold;">$caller</span>&lt;/h1&gt;&quot;</span><span style="color: #339933;">;</span>  
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #990000;">error_log</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;YO!!:: <span style="color: #006699; font-weight: bold;">$caller</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">func_get_args</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$var</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$output</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$var</span> <span style="color: #339933;">===</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> ? <span style="color: #0000ff;">'bool(false)'</span> <span style="color: #339933;">:</span> Yo<span style="color: #339933;">::</span><span style="color: #004000;">var_dump_str</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$var</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$internal</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #b1b100;">echo</span> <span style="color: #990000;">htmlentities</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$output</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">ENT_QUOTES</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'UTF-8'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span>
            <span style="color: #990000;">error_log</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$output</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$internal</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;/pre&gt;&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #666666; font-style: italic;">/* }}} */</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">/* {{{ */</span>
    <span style="color: #009933; font-style: italic;">/**
     * yo_bt - figure it out yourself, dummy
     *
     */</span>
    <span style="color: #000000; font-weight: bold;">public</span> static <span style="color: #000000; font-weight: bold;">function</span> do_yo_bt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$internal</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">self</span><span style="color: #339933;">::</span><span style="color: #004000;">isInternal</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$caller</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">self</span><span style="color: #339933;">::</span><span style="color: #004000;">getCaller</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$internal</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;pre&gt;&lt;h1&gt;YO bt!!: <span style="color: #006699; font-weight: bold;">$caller</span>&lt;/h1&gt;&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #990000;">error_log</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;YO bt!!:: <span style="color: #006699; font-weight: bold;">$caller</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$bt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">debug_backtrace</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$bt</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$line</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$internal</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$line</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'function'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
            <span style="color: #990000;">error_log</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$line</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'function'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$internal</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;/pre&gt;&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #666666; font-style: italic;">/* }}} */</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">/* }}} */</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// shortcuts! ------</span>
<span style="color: #000000; font-weight: bold;">function</span> yo<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #b1b100;">return</span> Yo<span style="color: #339933;">::</span><span style="color: #004000;">do_yo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> yo_bt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #b1b100;">return</span> Yo<span style="color: #339933;">::</span><span style="color: #004000;">do_yo_bt</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span></pre></div></div>



<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.rightuptop.com/techie/the-greatest-php-debugging-function-of-all-time/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Harrison Ford: By The Numbers</title>
		<link>http://www.rightuptop.com/entertainment/harrison-ford-by-the-numbers/</link>
		<comments>http://www.rightuptop.com/entertainment/harrison-ford-by-the-numbers/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 09:10:47 +0000</pubDate>
		<dc:creator>jake</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[harrison ford]]></category>
		<category><![CDATA[lists]]></category>

		<guid isPermaLink="false">http://www.rightuptop.com/?p=564</guid>
		<description><![CDATA[Anyone who knows Jesse is aware that he has a penchant for delightfully long rants about various icons of pop culture, which he then usually emails or (sends via Facebook) to a list of people who care about such things.  It&#8217;s a short list, and I consider myself privileged to be on it. Recently, I [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Anyone who knows Jesse is aware that he has a penchant for <a href="http://charmicarmicat.blogspot.com/2008/09/did-philip-k-dick-rip-off-flash-comic.html">delightfully long rants</a> about <a href="http://charmicarmicat.blogspot.com/2008/01/steve-martin-vs-robin-williams-showdown.html">various icons</a> of <a href="http://www.facebook.com/note.php?note_id=79138481330">pop culture</a>, which he then usually <a href="http://www.facebook.com/note.php?note_id=79138481330">emails or (sends via Facebook)</a> to a list of people who care about such things.  It&#8217;s a short list, and I consider myself privileged to be on it.</p>
<p style="text-align: left;">Recently, I stumbled upon this clip thanks to <a href="http://videogum.com/archives/supercuts/get-off-my-family-harrison-ford_083801.html">Videogum</a> (which, by the way, is currently tied for first place on the List of My Favorite Things Ever [with <a href="http://www.friendsoftom.com/">The Best Show on WFMU</a>]).  Being that he and I are both connoisseurs of Harrison Ford&#8217;s work (we&#8217;ve had a Harrison Ford-related music project in the works for a few years now), I figured he&#8217;d enjoy it, and I sent it his way.  Take a look-see for yourself:</p>
<p style="text-align: center;"><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/4-vjbuodBEU" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/4-vjbuodBEU"></embed></object></span></p>
<p style="text-align: left;">In response to this video, I received the following email:</p>
<blockquote>
<p style="text-align: left;">From what I can tell, these are the what clips are from:</p>
<ul>
<li><strong>Air Force One</strong></li>
<li><strong>Firewall</strong></li>
<li><strong>Frantic</strong> &#8211; they have quite a bit from the underrated Frantic (one of the only Roman Polanski films I really like, probably because Ford is in it).  This is the one where he is going around asking about his wife being kidnapped (Someone should do this with Polanski and films featuring bad things happening to women &#8211; Frantic, Rosemary&#8217;s Baby, Tess, and incest in Chinatown).</li>
<li><strong>The Fugitive</strong></li>
<li><strong>Random Hearts</strong></li>
<li><strong>Patriot Games</strong></li>
</ul>
<p>In the 29 feature films Ford has starred in, 6 of them he is married and something happens to his family.  These are all the above films.  I am not counting <em>[Indiana Jones and the Kingdom of the] Crystal Skull</em>, although he gets married in the finale and he is ostensibly fighting for his family throughout the film.  I am also not including <em>What Lies Beneath</em>, in which he murders his wife.  That&#8217;s about 20%.  Note: the first film he did this in was the aforementioned Frantic.</p>
<p>In those same 29 feature films, Ford is married in 12 of them (again, not counting <em>Crystal Skull</em>), which means he is predominantly single in his film career (60% of the time).  However, ever since <em>Presumed Innocent</em>, he has been married in 10 of those 15 films, meaning that since 1990, he has been way more married than the first half of his career.</p>
<p>I don&#8217;t know about <em>Crossing Over</em>, the film he did earlier this year.  It was only a limited release.</p></blockquote>
<p>Writing these kinds of emails is what Jesse does, and I don&#8217;t think it&#8217;s just luck that he happens to associate with folks like me who appreciate them to no end.  But I thought that this analysis might have a little more impact with some visual flair, so I whipped up some art to help bring this data home.  I therefore proudly present the Harrison Ford &#8220;<strong>Get Off My Family&#8221;</strong> breakdown:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-739" title="Harrison Ford Chart #1" src="http://www.rightuptop.com/wp-content/uploads/2009/08/harrison2.png" alt="Harrison Ford Chart #1" width="497" height="302" /></p>
<p style="text-align: center;"><img class="aligncenter" title="Harrison Ford Chart #2" src="http://www.rightuptop.com/wp-content/uploads/2009/08/harrison3.png" alt="Harrison Ford Chart #2" width="497" height="299" /></p>
<p style="text-align: left;">A few things to note here, aside from what Jesse already pointed out about <em>What Lies Beneath</em> and <em>Crystal Skull</em>:</p>
<ul>
<li>I chose <em>Mosquito Coast</em> instead of <em>Presumed Innocent</em> to start the second count, because it&#8217;s Ford&#8217;s first starring role in which he is married. That film was shot in early 1986, while Ford was 43. I guess Hollywood decided he finally looked old enough to play a family man.</li>
<li>We&#8217;ve assumed Ford is single in all films in which that topic is not specifically addressed; if I&#8217;m not mistaken, that is true in both <em>Force 10 from Navarone</em> and <em>K-19: The Widowmaker.</em> I can&#8217;t remember if the topic comes up in <em>The Frisco Kid</em>.</li>
<li>One could argue that Ford&#8217;s family isn&#8217;t exactly living in the safest of conditions in <em>Mosquito Coast</em>, but I think that goes against the spirit of what we&#8217;re doing at here.  We&#8217;re looking at cases in which Harrison Ford is specifically struggling to find or protect his family, which is why <em>What Lies Beneath</em> doesn&#8217;t fall into the &#8220;Family in Trouble&#8221; category either.</li>
<li>It is also interesting to note that in three of the twelve films in which Ford is married, he has committed adultery (<em>What Lies Beneath, Presumed Innocent, Regarding Henry</em>).  That&#8217;s a 25% adultery rate, just below the average rate for American males, which <a href="http://www.msnbc.msn.com/id/17951664/ns/health-sexual_health/">MSNBC puts at 28%</a> (though obviously that&#8217;s a tough statistic to measure accurately).  It is also interesting to note that all three of these indiscretions took place before the start of their respective films; as far as I know, Ford has never committed adultery on screen (unless you count Hanover Street, in which he is the other man).</li>
</ul>
<p>Lord knows it&#8217;s been a rough fifteen years for us Ford lovers (he is, in my opinion, two for ten since <em>Clear and Present Danger</em>), but let&#8217;s all just hang in there, and here&#8217;s hoping he gets back on track.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.rightuptop.com/entertainment/harrison-ford-by-the-numbers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>When Gretchen Carlson thinks you&#8217;re an idiot&#8230;</title>
		<link>http://www.rightuptop.com/politics/when-gretchen-carlson-thinks-youre-an-idiot/</link>
		<comments>http://www.rightuptop.com/politics/when-gretchen-carlson-thinks-youre-an-idiot/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 06:20:22 +0000</pubDate>
		<dc:creator>jake</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.rightuptop.com/?p=507</guid>
		<description><![CDATA[&#8230;perhaps you need to reevaluate the inane schlock that is dribbling out of your trap? This clip slipped under my radar until yesterday, but on July 8, Brian Kilmeade of Fox &#38; Friends apparently lost his damn mind: Unalbe to show flash video Thanks to Gawker for the clip. I&#8217;ve addressed this &#8220;purity&#8221; argument before [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">&#8230;perhaps you need to reevaluate the inane schlock that is dribbling out of your trap?</p>
<p style="text-align: left;">This clip slipped under my radar until yesterday, but on July 8, Brian Kilmeade of Fox &amp; Friends apparently lost his damn mind:</p>
<p style="text-align: center;">
<object id='monFlash' type='application/x-shockwave-flash' data='http://www.rightuptop.com/wp-content/plugins/hana-flv-player/template_maxi_1.6.0/template_maxi/player_flv_maxi.swf' width='400' height='330'><param name='movie' value='http://www.rightuptop.com/wp-content/plugins/hana-flv-player/template_maxi_1.6.0/template_maxi/player_flv_maxi.swf' /><param name='allowFullScreen' value='true' /><param name='FlashVars' value='flv=http://www.rightuptop.com/wp-content/uploads/2009/07/Fins_Swedes_Fox.flv&amp;width=400&amp;height=330&amp;autoplay=&amp;autoload=1&amp;loop=&amp;showstop=1&amp;showvolume=1&amp;showtime=1&amp;showfullscreen=1&amp;srt=1' />
Unalbe to show flash video

</object></p>
<p>Thanks to <a href="http://gawker.com/5310208/brian-kilmeade-would-like-species-and-ethnics-to-remain-pure">Gawker</a> for the clip.</p>
<p>I&#8217;ve <a href="http://www.rightuptop.com/archives/87">addressed this &#8220;purity&#8221; argument before</a> on this blog; it is experimentally disprovable as well as being just plain stupid.  Simple common sense and a basic understanding of genetics will tell you that &#8220;purity&#8221; is what happens when cousins marry, and that two parents with more genetic variation have the potential to make a daywalker.</p>
<p style="text-align: center;">
<object id='monFlash' type='application/x-shockwave-flash' data='http://www.rightuptop.com/wp-content/plugins/hana-flv-player/template_maxi_1.6.0/template_maxi/player_flv_maxi.swf' width='427' height='180'><param name='movie' value='http://www.rightuptop.com/wp-content/plugins/hana-flv-player/template_maxi_1.6.0/template_maxi/player_flv_maxi.swf' /><param name='allowFullScreen' value='true' /><param name='FlashVars' value='flv=http://www.rightuptop.com/wp-content/uploads/2009/07/video.flv&amp;width=427&amp;height=180&amp;autoplay=&amp;autoload=1&amp;loop=&amp;showstop=1&amp;showvolume=1&amp;showtime=1&amp;showfullscreen=1&amp;srt=1' />
Unalbe to show flash video

</object></p>
<p>But what&#8217;s mind-blowing is to hear this drivel coming not from some fringe white supremacist or universally reviled hate-monger, but from an anchor of a core show on a major news network.  I simply could not believe this; I dug through the internets to find the <strong>full</strong> clip, to make sure this wasn&#8217;t taken out of context. It wasn&#8217;t. Even his co-host, Gretchen Carlson, was making incredulous faces and tried to rein him in verbally, but to no avail. Let me repeat that: <strong>Gretchen Carlson</strong> thinks this is fringe crazy talk.</p>
<p style="text-align: center;"><a href="http://www.rightuptop.com/wp-content/uploads/2009/07/gretchy1.gif"><img class="aligncenter size-full wp-image-528" title="gretchy2" src="http://www.rightuptop.com/wp-content/uploads/2009/07/gretchy1.gif" alt="gretchy2" width="320" height="230" /></a></p>
<p>Congratulations, Brian Kilmeade.  You are officially that girl in <a href="http://en.wikipedia.org/wiki/Who%27s_Your_Daddy%3F_%28House%29">that episode of House</a> who has poo coming out of her mouth. This is you. This is what you look like:<br />
<script type="text/javascript">// <![CDATA[
              function HideContent(d) { document.getElementById(d).style.display = "none"; } function ShowContent(d) { document.getElementById(d).style.display = "block"; } function ReverseContentDisplay(d) { if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; } else { document.getElementById(d).style.display = "none"; } }
// ]]&gt;</script></p>
<p style="text-align: center;"><a href="javascript:HideContent('image1');ShowContent('image2');"><br />
<img id="image1" style="display:block;" src="http://www.rightuptop.com/wp-content/uploads/2009/07/pottymouth_cover.jpg" border="0" alt="Poo Mouth Cover Image" width="450" height="250" /><br />
</a><img id="image2" style="display:none;" src="http://www.rightuptop.com/wp-content/uploads/2009/07/pottymouth.jpg" border="0" alt="Poo Mouth" width="450" height="250" /></p>
<p>Seriously though, how is this guy not being made to apologize for being an idiot?</p>
<p>Related stuff:</p>
<ul>
<li><a id="title_permalink" href="http://www.huffingtonpost.com/2009/07/13/journalists-of-color-dema_n_230867.html">HuffPo: Journalists Of Color Demand Fox News Apologize For Brian Kilmeade Comments</a></li>
<li><a href="http://www.salon.com/politics/war_room/2009/07/08/qotd/">Salon: Fox News&#8217; Kilmeade: We &#8220;marry other species,&#8221; Finns &#8220;pure&#8221;</a></li>
<li><a href="http://gawker.com/5310208/brian-kilmeade-would-like-species-and-ethnics-to-remain-pure">Gawker: Brian Kilmeade Would Like Species and &#8216;Ethnics&#8217; to Remain Pure</a></li>
</ul>
<hr /><strong>Update: </strong>Kilmeade <a href="http://www.huffingtonpost.com/2009/07/20/brian-kilmeade-apologizes_n_241135.html">apologized for these comments</a> this past Monday, saying &#8220;I made comments that were offensive to many people. That was not my intention, and looking back at those comments I realize they were inappropriate. For that I sincerely apologize. America [is a] huge melting pot, and that is what makes us such a great country&#8230;&#8221;.</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/ClpieAacp3k&amp;hl=en&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/ClpieAacp3k&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: left; ">He looked very sincere. That was sarcasm.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.rightuptop.com/politics/when-gretchen-carlson-thinks-youre-an-idiot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Congrats to Sasha and Jen!</title>
		<link>http://www.rightuptop.com/personal/congrats-to-sasha-and-jen/</link>
		<comments>http://www.rightuptop.com/personal/congrats-to-sasha-and-jen/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 01:12:51 +0000</pubDate>
		<dc:creator>jake</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.rightuptop.com/?p=496</guid>
		<description><![CDATA[As of this weekend, my brother is engaged to his awesome girlfriend fiancée. I could not be more excited for both of them, or more stoked about having a new sister. When he told me, all I could think about was a conversation he and I had in Istanbul in the summer of 2006.  We [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>As of this weekend, my brother is engaged to his awesome <span style="text-decoration: line-through;">girlfriend</span> fiancée. I could not be more excited for both of them, or more stoked about having a new sister.</p>

<p>When he told me, all I could think about was a conversation he and I had in Istanbul in the summer of 2006.  We were sitting near the Blue Mosque at a cafe, and he was talking about his new girlfriend in a way I&#8217;d never seen him talk about a girl before.  I thought to myself, &#8220;He&#8217;s toast. He is definitely going to marry this girl.&#8221;</p>
<p>Way to go, dude!</p>
				<div id="gallery-de153c20" class="flickr-gallery photoset">
										<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-de153c20 .flickr-thumb img").flightbox();
						});
										
										//-->
				</script>
			


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.rightuptop.com/personal/congrats-to-sasha-and-jen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>South by Southwest Awards &#8217;09</title>
		<link>http://www.rightuptop.com/personal/south-by-southwest-awards-09/</link>
		<comments>http://www.rightuptop.com/personal/south-by-southwest-awards-09/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 08:49:15 +0000</pubDate>
		<dc:creator>jake</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[austin]]></category>
		<category><![CDATA[awards]]></category>
		<category><![CDATA[pics]]></category>
		<category><![CDATA[punk]]></category>
		<category><![CDATA[sxsw]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://www.rightuptop.com/?p=455</guid>
		<description><![CDATA[This is the last SXSW post for a while, I swear, but it&#8217;s the only one that really matters. Ladies and gentlemen, it is my great honor to present to you the second annual (last year&#8217;s awards are here and here) SXSW awards, which I am hereby affectionately dubbing &#8220;The Rutty Swesties.&#8221; Get it? Too [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>This is the last SXSW post for a while, I swear, but it&#8217;s the only one that really matters. Ladies and gentlemen, it is my great honor to present to you the second annual (last year&#8217;s awards are <a href="http://www.rightuptop.com/archives/134">here</a> and <a href="http://www.rightuptop.com/archives/136">here</a>) SXSW awards, which I am hereby affectionately dubbing &#8220;The Rutty Swesties.&#8221; Get it? Too bad. Let&#8217;s begin with&#8230;</p>
<h3>Best Suprise</h3>
<p><strong>Monotonix </strong>(Tel Aviv, Israel)</p>
<p>Holy moly. I&#8217;m not even sure if I&#8217;m that into these guys&#8217; tunes, but you cannot help but be completely hypnotized by their antics. They seriously spent more time crowd surfing or climbing up the walls than standing on the stage, and most of the time they were playing their instruments <strong>on top of the crowd</strong>.  Did I mention the fifteen minute drum solo while they changed an amp that they blew in the middle of the show? I&#8217;ve pretty much never seen anything like this, and what a way to close out the trip.  If only they did fire tricks&#8230; OH WAIT:</p>
<p style="text-align: left;"></p>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/dzYzbriAQxw&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/dzYzbriAQxw&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<h3>The &#8220;I Can&#8217;t See These Guys Enough&#8221; Award</h3>
<p><strong>Gil Mantera&#8217;s Party Dream</strong> (Youngstown, OH)</p>
<p>Two clinically insane geniuses who strip down to their banana hammocks while simultaneously dancing their asses off, playing the shit out of matching Lucite guitars, and blowing everyone&#8217;s minds with their incredibly catchy electro-pop (which is drenched in vocoder vocals, brain-crushing hooks, and Stevie Nicks covers). Just go with it.</p>

<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/qygN2En0U0I&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/qygN2En0U0I&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object><br />
<strong></strong></p>
<p style="text-align: left;"><strong>Runners up: </strong>Marnie Stern, Still&#8217; Flyin</p>
<h3>Most Overrated</h3>
<p><strong>Vivian Girls</strong></p>
<p>My take on the Vivian Girls record was that it was highly mediocre, so I was sure there was a reason these ladies were getting so much attention.  I figured the live show was the key, and I really wanted to see what they were all about.  Turns out they are all about: being somewhat cute, wearing short shorts, and not being able to play their instruments (or faking as such, which is even worse).  I&#8217;ll take Marnie Stern&#8217;s sick chops any day of the week over this derivative slop.</p>

<h3>Worst of the Worst</h3>
<p><strong>Kevin Devine and the Goddamn Band</strong></p>
<p>THEY ARE CALLED KEVIN DEVINE AND THE GODDAMN BAND.</p>
<h3>Best Show of the Festival</h3>
<p><strong>Titus Andronicus</strong></p>
<p style="text-align: left;">The Titus Andronicus debut <em>The Airing of Grievances</em> is an odd and invigorating combination of erudite wordplay and punk rock sensibility; these guys have no problem quoting a few lines from an existentialist philosopher and then closing a song by screaming &#8220;Fuck you!&#8221; at the top of their lungs.  It&#8217;s weird, and kinda great. But walking into a show after hearing an album like that, it&#8217;s tough to know if you are going to get the punks or the professors.  About five seconds into their set, it was clear that the punks had come out to play.  The setting was perfect: no stage, just a cleared out corner of a parking lot at a backyard barbecue. The crowd was stocked with uber-hipsters and gutterpunks alike, and everyone in attendance was treated to a simple, unpretentious, and completely furious ass-rocking.  Kudos to you, Titus Andronicus.  You win SXSW.</p>
<p style="text-align: left;">
<p style="text-align: center;"><object width="500" height="281" data="http://www.flickr.com/apps/video/stewart.swf?v=68975" type="application/x-shockwave-flash"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=dc5e4f5722&amp;photo_id=3384749472&amp;hd_default=false" /><param name="bgcolor" value="#000000" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.flickr.com/apps/video/stewart.swf?v=68975" /><param name="allowfullscreen" value="true" /></object></p>
<p style="text-align: center;">
<p><strong>Runners up:</strong> Mojo Nixon, Monotonix</p>
<h3>Technical awards:</h3>
<ul>
<li>Most Likely to Die in a Horrific Stagediving Accident: <strong>Ami Shalev </strong>of <strong>Monotonix </strong>(Tel Aviv, Israel)</li>
<li>The &#8220;Nastiest Chops&#8221; Award: <strong>Marnie Stern</strong> (New York, NY)</li>
<li>The &#8220;Prima Donna&#8221; Award for longest and fussiest soundcheck: <strong>The Rosebuds</strong> (Raleigh, NC)</li>
<li>The &#8220;Please Don&#8217;t Ever Hang It Up, I Don&#8217;t Care HOW Fat You Get&#8221; Award: <strong>Mojo Nixon</strong> (Chapel Hill, NC)</li>
<li>Shortest Shorts: <strong>Hutch Harris</strong> of <strong>The Thermals</strong> (Portland, OR)</li>
<li>The &#8220;Nice Job Pissing Off The Meatheads In Front of Me&#8221; Award: <strong>HEALTH</strong> (Los Angeles, CA)</li>
<li>Most Judy Garland T-Shirts Per Capita: <strong>Abe Vigoda</strong> (Los Angeles, CA)</li>
<li>Most Brew Grooves Jammed: <strong>Still Flyin&#8217;</strong> (San Francisco, CA)</li>
</ul>
<p style="text-align: left;">And if you think I am going on about Marnie Stern&#8217;s chops too much, suck on this:</p>
<p style="text-align: left;">
<p style="text-align: center;"><object width="500" height="281" data="http://www.flickr.com/apps/video/stewart.swf?v=68975" type="application/x-shockwave-flash"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=48c2ce7bf6&amp;photo_id=3383914511&amp;hd_default=false" /><param name="bgcolor" value="#000000" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.flickr.com/apps/video/stewart.swf?v=68975" /><param name="allowfullscreen" value="true" /></object></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.rightuptop.com/personal/south-by-southwest-awards-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SXSW &#8217;09 Band Photos are up!</title>
		<link>http://www.rightuptop.com/music/sxsw-09-band-photos-are-up/</link>
		<comments>http://www.rightuptop.com/music/sxsw-09-band-photos-are-up/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 00:12:53 +0000</pubDate>
		<dc:creator>jake</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[bands]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[sxsw]]></category>

		<guid isPermaLink="false">http://www.rightuptop.com/?p=437</guid>
		<description><![CDATA[I&#8217;ve posted all my favorite SXSW artist shots from this year on Flickr. I selected about 130 out of about 6000.  I think I did OK; not as good as I&#8217;d hoped.  I think I need to be more pushy in the front row, but without a camera tag, I feel guilty squeezing in there.  [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I&#8217;ve posted <a href="http://www.flickr.com/photos/jakeyr/sets/72157615852017832/">all my favorite SXSW artist shots from this year</a> on Flickr. I selected about 130 out of about 6000.  I think I did OK; not as good as I&#8217;d hoped.  I think I need to be more pushy in the front row, but without a camera tag, I feel guilty squeezing in there.  I also had to leave my camera at home for most showcases (aka nighttime shows) on the worry that the larger venues wouldn&#8217;t let me in with an untagged camera.</p>
<p style="text-align: left;">I also have some really great shots of friends, food, interesting people, etc, that I will sort through and post shortly.  I wanted to get the artist shots up ASAP.</p>
<p>Anyways, here are some of my favorites from the week, in case you don&#8217;t want to look through them all, followed by the full slideshow.</p>

<p style="text-align: left;"></p>
<p style="text-align: left;"></p>
<p style="text-align: left;"></p>
<p style="text-align: left;"></p>
<p style="text-align: left;"></p>
<p style="text-align: left;"></p>
<p style="text-align: center;">
<p style="text-align: center;"><object width="400" height="300" data="http://www.flickr.com/apps/slideshow/show.swf?v=67348" type="application/x-shockwave-flash"><param name="flashvars" value="&amp;offsite=true&amp;lang=en-us&amp;page_show_url=%2Fphotos%2Fjakeyr%2Fsets%2F72157615852017832%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fjakeyr%2Fsets%2F72157615852017832%2F&amp;set_id=72157615852017832&amp;jump_to=" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.flickr.com/apps/slideshow/show.swf?v=67348" /><param name="allowfullscreen" value="true" /></object></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.rightuptop.com/music/sxsw-09-band-photos-are-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SXSW &#8217;09 Band Tally</title>
		<link>http://www.rightuptop.com/music/sxsw-09-band-tally/</link>
		<comments>http://www.rightuptop.com/music/sxsw-09-band-tally/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 23:42:14 +0000</pubDate>
		<dc:creator>jake</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[bands]]></category>
		<category><![CDATA[festival]]></category>
		<category><![CDATA[sxsw]]></category>

		<guid isPermaLink="false">http://www.rightuptop.com/?p=428</guid>
		<description><![CDATA[Got back late last night, exhausted (although suprisingly chipper) and glad to be back.  Had a blast; met some fine folks, drank some cold beverages, ate some delish Tex-Mex, and (of course) saw some great shows. Total count this year is 56 bands and one comedian, not inlcuding five repeat viewings. That&#8217;s a tie with [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Got back late last night, exhausted (although suprisingly chipper) and glad to be back.  Had a blast; met some fine folks, drank some cold beverages, ate some delish Tex-Mex, and (of course) saw some great shows. Total count this year is 56 bands and one comedian, not inlcuding five repeat viewings. That&#8217;s a tie with last year; I tried to hit 60 but wasn&#8217;t able to pull it off.</p>
<p>I&#8217;ve got over 6000 photos to sort through, and I&#8217;ll get those up soon.  I&#8217;m also planning on doing a second annual SXSW awards (&#8217;08 awards are <a href="http://www.rightuptop.com/archives/134">here</a> and <a href="http://www.rightuptop.com/archives/136">here</a>) within the next few days, but in the meantime here&#8217;s my list for SXSW &#8217;09:</p>
<blockquote><p>Abe Vigoda (x2)<br />
Alberta Cross<br />
All the Saints<br />
Andrew Bird<br />
Au Revoir Simone<br />
Bishop Allen<br />
Crystal Antlers<br />
Deer Tick<br />
Eugene Mirman<br />
fiasco<br />
Gil Mantera&#8217;s Party Dream<br />
Graham Coxon<br />
Gringo Starr<br />
HEALTH<br />
Holy Liars<br />
Horse Feathers<br />
Kevin Devine and the Goddamn Band<br />
Little Boots<br />
Loch Lamond<br />
Lookbook<br />
Marnie Stern<br />
Max Tundra<br />
MC Sweet and the Alisons<br />
Mojo Nixon<br />
Monotonix<br />
Mount St. Helens Vietnam Band<br />
NewVillager<br />
Paper Chase<br />
Pelican<br />
Ponytail<br />
Pre<br />
Psychadelic Horseshit<br />
Quiet Hooves<br />
Red Cortez<br />
Rosebuds<br />
Solid Gold<br />
Still Flyin&#8217;<br />
Superdrag<br />
Thao Nguyen and The Get Down Stay Down<br />
The Dirty Projectors<br />
The Donkeys (x2)<br />
The Grates<br />
The Intelligence<br />
The Mae Shi (x2, second time w/ Kid Static)<br />
The Pains of Being Pure at Heart<br />
The Thermals<br />
The Uglysuit<br />
The Week That Was<br />
The Wheel<br />
Titus Andronicus<br />
Venice is Sinking<br />
Vetiver<br />
Viva Voce (x2)<br />
Vivian Girls (x2)<br />
Wavves<br />
What Laura Says<br />
Winter Sounds</p></blockquote>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.rightuptop.com/music/sxsw-09-band-tally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Family History Lesson</title>
		<link>http://www.rightuptop.com/personal/a-family-history-lesson/</link>
		<comments>http://www.rightuptop.com/personal/a-family-history-lesson/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 22:50:40 +0000</pubDate>
		<dc:creator>jake</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[civil rights]]></category>
		<category><![CDATA[communism]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[huac]]></category>
		<category><![CDATA[rosie]]></category>
		<category><![CDATA[socialism]]></category>

		<guid isPermaLink="false">http://www.rightuptop.com/?p=399</guid>
		<description><![CDATA[Last week, I signed my family up for Geni, which is a great site that allows you to create a family tree for free (here&#8217;s mine), and then use that family tree as a small social networking site; like a mini Facebook, just for your family. Building out my family tree inspired me to finally [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Last week, I signed my family up for <a href="http://geni.com">Geni</a>, which is a great site that allows you to create a family tree for free (<a href="http://www.geni.com/share?t=6000000002990323481">here&#8217;s mine</a>), and then use that family tree as a small social networking site; like a mini Facebook, just for your family.  Building out my family tree inspired me to finally get around to digitizing the tape recording I have of my (paternal) grandmother Rosie&#8217;s testimony before the House Unamerican Activities Committee (HUAC) in 1952.  For those of you that care about such details, the cassette tape recording I have was copied from another cassette tape, which itself was recorded from a vinyl pressing which had been handed down since 1952. Needless to say, it wasn&#8217;t in great shape. I converted the tape to digital using my M-Audio box, and then ran it through a few noise reduction filters, and the resulting WAV and MP3 sound much better than my copy of the tape ever did, which is great.</p>
<p>A little bit of background here for the few of you who may not have heard me ramble on about this at length: in 1952, my grandmother was a forty-seven-year-old immigration and civil rights attorney practicing in Los Angeles.  She was indeed an active member of the Communist party, and did extensive work with the LA chapter of the <a href="http://en.wikipedia.org/wiki/National_Lawyers_Guild">National Lawyers Guild</a> and worked cases for the <a href="http://content.cdlib.org/view?docId=kt067nb6v8&amp;chunk.id=bioghist-1.7.3&amp;brand=oac">Los Angeles Committee for the Protection of the Foreign Born</a>. She was a communist until the day she died, which was soon after I was born.  The tape is a bit of a family heirloom and a pretty amazing piece of living history, so it&#8217;s great to finally have it saved as an MP3 and be able to share it here.</p>
<p><a href="http://www.rightuptop.com/wp-content/uploads/2009/03/huac-report.jpg"><img class="size-full wp-image-424 alignright" title="HUAC: Communist Legal Subversion" src="http://www.rightuptop.com/wp-content/uploads/2009/03/huac-report.jpg" alt="A page from the HUAC report entitled &quot;Communist Legal Subversion: The Role of the Communist Lawyer&quot;" width="167" height="280" /></a></p>
<p>However, even after the cleanup work I did, there were still a few parts of the tape that were unintelligible, so I went looking for a transcript of the audio. It took me a few hours of digging, but I eventually found the full archive of HUAC papers on <a href="http://www.archive.org">archive.org</a>. As it turns out, the printed copies of all the HUAC hearings, reports, and findings are all available at the Boston Public Library, but they&#8217;ve been scanned and posted online thanks to the Internet Archive.  Further investigation turned up <a href="http://www.google.com/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=hTn&amp;q=site%3Aarchive.org+%22rosenberg%2C+rose+S%22&amp;btnG=Search">a number of reports referencing Rosie&#8217;s name</a> (see the image right for a page from one report entitled &#8220;<a href="http://www.archive.org/details/communistlegalsu1959unit">Communist Legal Subversion: The Role of the Communist Lawyer</a>&#8220;), transcripts of her serving as counsel for other people brought before the committee, the <a href="http://www.archive.org/details/violationsofstat02unit">transcript of her second testimony in 1963</a> (of which my father and I were unaware) regarding her trips to Cuba, and most rewardingly, <a href="http://www.archive.org/details/communistactivit03unit">the full content of HUAC&#8217;s 1952 investigations into &#8220;Communist activities among professional groups in the Los Angeles area&#8221;</a>, which contains the transcript of our recording. This was particularly exciting, mainly because I have heard the tape many times since I was a child, and now I can finally understand certain parts of the audio (especially the parts at the end during which everyone is talking over each other and arguing about book burnings).  Regardless, here&#8217;s one of my Grandmother&#8217;s better diatribes, and then the link to the audio.</p>
<blockquote><p><strong>Mrs. Rosenberg</strong>. There will come a time in this country when there<br />
is no climate of fear and coercion and hysteria, and people will of their<br />
own free will declare with pride and with honor as the Puritans said<br />
they would be glad to &#8212; to declare their faith, but not under compulsion,<br />
and not because there will be a subpoena over my head or a blacklist,<br />
and not if the result will be loyalty oaths. This is precisely what has hap-<br />
pened in civilizations that you&#8217;ve asked that question &#8212; the Puritans<br />
were proud of their faith, the Jews were proud, too, and yet when<br />
they were faced with Torquemada and with Hitler, what would you have<br />
expected, sir, that they should rise up and say they are Jews? If that<br />
cost of that would be their heads? Today the cost of declaring one&#8217;s<br />
faith &#8212; which I say you have no right to ask me about &#8212; is a blacklist and<br />
a subpoena and a loyalty oath and book burnings. This has been the<br />
result of the force and violence of this committee.</p></blockquote>
<p><a href="http://www.rightuptop.com/wp-content/uploads/2009/03/01-testimony-of-rose-s-rosenberg-1.mp3">Testimony of Rose Rosenberg before HUAC, October 1, 1952</a></p>
<p></p>
<p>One particularly fascinating part of the tape which I was never able to make out before is an aside from Rep. Donald Jackson of California, who is obviously frustrated and throws in a jab that seems to be apropos of nothing, but is quite telling:</p>
<blockquote><p><strong>Mrs. Rosenberg</strong>. In Oklahoma books were burned, and do you know<br />
what the American Library Association said?</p>
<p><strong>Mr. Jackson</strong>. Is this in answer to the question asked by counsel?<br />
If there weren&#8217;t so many witches who left their brooms and tall hats<br />
around, we would not have so much work to do.</p></blockquote>
<p>Pretty amazing (and shameless) stuff.</p>
<p>Additionally, while I was searching for information on the HUAC hearings, I came across the website for a book written by Eric Etheridge called <a href="http://breachofpeace.com/blog/">Breach of Peace</a>, which contains photos and information about the 328 <a href="http://en.wikipedia.org/wiki/Freedom_Riders">freedom riders</a> who converged on Jackson, Mississippi in 1961, and there was a &#8220;Rose Schorr Rosenberg&#8221; listed there. A quick call to my father confirmed that Grandma did, in fact, go on a freedom ride in 1961, and when I contacted Mr. Etheridge, he sent me a link to the <a href="http://mdah.state.ms.us/">Mississipi Department of Archives &amp; History</a>, which has digitized all the records of the<strong> </strong><a href="http://en.wikipedia.org/wiki/Mississippi_State_Sovereignty_Commission">Mississippi State Sovereignty Commission</a>.</p>
<p><a href="http://mdah.state.ms.us/arrec/digital_archives/sovcom/images/large/2-55-6-13-1-1-1.tif.jpg"><img class=" alignright" title="Rosies Mug Shot" src="http://mdah.state.ms.us/arrec/digital_archives/sovcom/images/300/2-55-6-13-1-1-1.tif.jpg" alt="Rose S. Rosenberg - arrested July 15, 1961 in Jackson, MS for Breach of Peace" width="300" height="230" /></a></p>
<p>There, I found numerous photos and files referencing Rosie, including <a href="http://mdah.state.ms.us/bugle/sovcom/sovcomphoto/photo.php?display=item&amp;oid=313">her mug shot</a> taken on July 15, 1961 (shown right; also appears in the aforementioned Breach of Peace), <a href="http://mdah.state.ms.us/bugle/sovcom/result.php?image=/data/sov_commission/images/png/cd03/018751.png&amp;otherstuff=2|55|6|6|2|1|1|18366|">the police report of her arrest</a>, and <a href="http://mdah.state.ms.us/bugle/sovcom/imagelisting.php?namecheckbox[]=26958&amp;namecheckbox[]=71258&amp;namecheckbox[]=58447&amp;namecheckbox[]=58610">a number of documents and fascinating articles</a>, including ones showing that the DA in Jackson was working with the the folks over at HUAC in attempting to use her communist ties to discredit the riders. There was even one article written by Bob Novak which paints the entire civil rights movement as having sold its soul to the far left (sound familiar?), and another AP article which mentions my grandmother and her traveling companion Jean Pestana by name, the title of which was &#8220;<a href="http://mdah.state.ms.us/bugle/sovcom/result.php?image=/data/sov_commission/images/png/cd06/044209.png&amp;otherstuff=2|140|3|72|1|1|1|43556|">Jackson Cops Link 2 Riders to Red Groups</a>&#8220;.</p>
<p>I&#8217;m pretty excited by how much I found, and always suprised by how much information is available on the internet. I&#8217;ve asked my brother to dig out Rosie&#8217;s memoirs so that I can scan and digitize them for preservation, and maybe learn a bit more about what happened to her in Mississipi (she was issued a $200 fine and 4 months in jail, but I&#8217;m unaware at this point how much time she actually served).  I&#8217;m also working on an audio project that will contain discussion of the tape by my family members with portions of the tape cut in. I think it will make for a compelling story.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.rightuptop.com/personal/a-family-history-lesson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.rightuptop.com/wp-content/uploads/2009/03/01-testimony-of-rose-s-rosenberg-1.mp3" length="1647395" type="audio/mpeg" />
		</item>
		<item>
		<title>FFFFound.com Digest RSS Feed</title>
		<link>http://www.rightuptop.com/techie/ffffoundcom-digest-rss-feed/</link>
		<comments>http://www.rightuptop.com/techie/ffffoundcom-digest-rss-feed/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 11:12:21 +0000</pubDate>
		<dc:creator>jake</dc:creator>
				<category><![CDATA[Techie]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[fffound.com]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.rightuptop.com/?p=369</guid>
		<description><![CDATA[So I recently started browsing FFFFound.com for cool images, and I love it. When I started finding really cool stuff in there, I figured, hey, I&#8217;ll add this site to my RSS reader (as I normally do with sites and blogs that I enjoy). Well, the joke was on me, because ffffound updates every few [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>So I recently started browsing <a href="http://ffffound.com">FFFFound.com</a> for cool images, and I love it.  When I started finding really cool stuff in there, I figured, hey, I&#8217;ll add this site to my RSS reader (as I normally do with sites and blogs that I enjoy).  Well, the joke was on me, because ffffound updates every few seconds, which means that it completely takes over my RSS reader with posts.  This was very annoying.</p>
<p>That&#8217;s when it occurred to me that what I wanted was a digest feed; a feed that combined a few hours worth of ffffound posts into one. And then I realized that this was not particularly hard to do. So I did it.</p>
<p><a href="http://feeds2.feedburner.com/FfffoundcomDailyDigest">Here it is.</a></p>
<p>This feed updates every six hours, with a post that contains a table of thumbnails of all the ffffound posts within that six hour block.  It&#8217;s perfect for any RSS readers that support basic HTML.  Now I get one update every six hours with a bunch of cool images to browse. Perfect.</p>
<p>Enjoy!</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.rightuptop.com/techie/ffffoundcom-digest-rss-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Pitchfork 500 Analysis: Chapter II</title>
		<link>http://www.rightuptop.com/personal/the-pitchfork-500-analysis-chapter-ii/</link>
		<comments>http://www.rightuptop.com/personal/the-pitchfork-500-analysis-chapter-ii/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 03:33:39 +0000</pubDate>
		<dc:creator>jake</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[music pitchfork500 review]]></category>

		<guid isPermaLink="false">http://www.rightuptop.com/?p=358</guid>
		<description><![CDATA[For everyone who missed it, see Chapter I here. Jake and Jesse&#8217;s Review(s) of the Pitchfork 500 Chapter 2: 1980-1982 I&#8217;ll paste Jesse&#8217;s list in here first. Also keep in mind that Jesse and I did not share our lists with each other until they were completed. Here goes: My Least Favorite Tracks: 1. Adam [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">For everyone who missed it, <a href="http://www.rightuptop.com/archives/310">see Chapter I here</a>.</p>
<h2 style="text-align: left;">Jake and Jesse&#8217;s<br />
<strong>Review(s) of the Pitchfork 500</strong><br />
Chapter 2: 1980-1982</h2>
<hr style="text-align: left;" />
<p style="text-align: left;">I&#8217;ll paste Jesse&#8217;s list in here first.  Also keep in mind that Jesse and I did not share our lists with each other until they were completed.  Here goes:</p>
<p style="text-align: left;"><span id="more-358"></span></p>
<blockquote style="text-align: left;"><p>My Least Favorite Tracks:</p>
<p>1. Adam and the Ants &#8220;Kings of the Wild Frontier&#8221;.  It&#8217;s funny because I have this record.  I really like the song &#8220;Press Darlings&#8221;, mostly because I liked the Rocket From the Crypt cover of that song.  I have the first Adam and the Ants record, which pitchfork rightly refers to as &#8220;S &amp; M chic and Weimar.&#8221;  I like it OK, but have held on to it more because it&#8217;s somewhat collectible. Adam and the Ants  just tend to leave me cold.  With all the fancy lights, the genre-hopping, the cool recordings, it all comes down to a skeleton song that seems so dispassionate in its origin.</p>
<p>2. Scritti Politti &#8220;The &#8220;Sweetest Girl&#8217;&#8221;.  I haven&#8217;t listened to much Scritti Politti, but their name pops up a lot on the DIY Brit stuff that I have.  I guess they were instrumental in engineering that scene, and I like, if not love a lot of the stuff that came out of the post punk pop DIY early 80s that is featured on such comps as Messthetics.  Marry that with one of my favorite performers, Robert Wyatt, tinkling on the piano (something I didn&#8217;t know about this song before) and you&#8217;d think it be a match made in heaven.  But no, this track still bores me as it always has.  You will notice that boredom is the main reason these tracks are listed.  All the wavering vocals and slight pop idiosynchrocies that pepper these bands (like my beloved Television Personalities) are absent in this track. It&#8217;s a slick repeating arty loop.</p>
<p>3. Flipper &#8220;Sex Bomb&#8221;. Speaking of boring. This band apparently was an inspiration to two bands that were fundamental in my upbringing of music: Nirvana and the Melvins.  I used to have a live Flipper cassette back in the early 90s based on the name drops.  At the time it seemed unlistenable, but I kinda liked that about it.  Now, hearing this track, it sounds far less noisy and much more, well, &#8220;fratty&#8221; to use pitchfork&#8217;s reference to the horns.  I know, I know, the horns are ironic I&#8217;m guessing, but this song seems a celebration, albeit noisy and avantgarde of the kind of decadent party music that is rooted in Wolly Bully and that kind of stuff.  And I&#8217;ve never been that attracted to that kind of thing. Chock it up next to blues rock.</p>
<p>4. The Specials &#8220;Ghost Town&#8221;. I&#8217;m guessing you&#8217;re gonna hate me for this one.  While I like parts of the song, especially part of it&#8217;s mood, it just goes on way too long for me.  Especially the sax solo.  Perhaps you can link my disliking the Parliament song, this, and the Flipper song, that I just don&#8217;t like the jams.  Including the MC5.</p>
<p>5. Altered Images &#8220;Happy Birthday&#8221;.  When I first heard this song on another comp a while ago, I liked it.  But the shelf life on it&#8217;s very short.  I still like the charming beginning, but it goes on way too long.  Do I just have Wire in my veins?  I have such ADD for certain songs sometimes.</p>
<p>My Favorite Songs of those I Hadn&#8217;t Heard Before (of 26):</p>
<p>1. Glenn Branca. &#8220;Lesson No. 1 For Electric Guitar&#8221;. Now listen, this is right up my alley: I love repeating krautrock, Neu!, and the repetitive guitar melodies of Michael Rother.  Far from being the &#8220;future noise rock&#8221; that pitchfork applies to this, all I hear is melody, melody, melody. It sounds beautiful to me.  It reminds me of flying over, and over again, to some destination that you never get to.  You are flying over repeating and repeating Dr. Seuss hills: you know those hills in the backgrounds of Dr. Seuss stories?  They are huge egg-like hills, colored purple, with some green strange trees on them.  And they go as far back as you can see, with no landmarks on them.  This is the trip, over these hills, like a looped cartoon.  And at some point, you realize that the beauty is not in trying to get to the destination, but the trip itself.  There&#8217;s something very comforting in that.</p>
<p>2. Bad Brains &#8220;Pay To Cum&#8221;.  I know, you&#8217;re like &#8220;How haven&#8217;t heard this before?&#8221;  I may have, but don&#8217;t remember. Bad Brains peppered a lot of the mix tapes I received in High School from my punk friends.  I remember hearing &#8220;Rock For Light&#8221; but not this.  And while I got into Minor Threat, I never really got into Black Flag and Bad Brains.  Hearing the Black Flag song, I don&#8217;t regret missing out on them that much, but this song is amazing.  It manages to sum up everything I like about hardcore punk in such a succinct statement. Where do you go from here?  Perfect.</p>
<p>3. Yoko Ono &#8220;Walking on Thin Ice&#8221;.  What a groove.  There&#8217;s a song on Plastic Ono band, the Yoko version, that has a ridiculously long name like &#8220;I Was Walking Through the Supermarket Pushing a Baby Cart&#8221; which sounds years ahead of its time.  Of course the rest of the album can be a trying experience, although there are some hilarious moments.  Now, given the context of what was going on, Walking On Thin Ice doesn&#8217;t sound years ahead, but fits right into a certain scene at the time.  But it sounds so good, still.  And the guitar work: Goddamn if people are always talking about how great &#8220;Beautiful Boy&#8221; is!  The guitar work on this trumps that entire song as far as some of the last work Lennon did.  Yoko manages to step into the scene and keep one foot out of it, due to the fact they were old fogey celebrities just fucking around.  And that&#8217;s what makes it seem like a timeless groove to me.  Who says I don&#8217;t like party music?</p>
<p>4. The Fall &#8220;The Classical&#8221;.  I have tried for years to get into the Fall, and, with the exception of a few songs, they have always been OVERRATED to me. I use the capitals because for a lot of people I know and have rubbed elbows musically with, they are such a big deal.  Maybe I just haven&#8217;t heard the right album.  This song is exactly what I was always looking for in the Fall: a combination of being hilariously absurd and dangerous. Hilariously dangerous. The guitar after &#8220;Hey there Fuck Face&#8221; is so sweet to hear. It&#8217;s like a musical satiation of the previous line.  The fact that he says &#8220;Hey There Fuck Face&#8221; is hilarious.  The fact a guitar starts the melody of the line &#8220;I&#8217;ve never felt better in my life&#8221; before he starts singing it makes the cut they are making so planned: planned, absurd, dangerous chaos.  Great.</p>
<p>5. Dexy&#8217;s Midnight Runners &#8220;There There My Dear&#8221;.  Oh, those rolling R&#8217;s. And how pumped is this track with those horns? It reminds me of the Futureheads and that whole scene in terms of accent but also in terms of restless energy, where the singer is so enthralled by his indictment, he threatens to outpace the band.</p>
<p>My Favorite Songs of Those That I Have Heard Before:</p>
<p>1. The Pretenders &#8220;Back On The Chain Gang&#8221;.  I have never listened so closely to the vocal performance on this song before, and for that I acknowledge the writer of the blurb for this song in the pitchfork book.  This is when the book scores highest for me so far, because, yes, I now feel too that it&#8217;s &#8220;one of the most heartbreaking records ever made&#8221;.  This is pop music at it&#8217;s highest: a song that I have sung along with many times at the bar and now, listening to it in my room, hearing that tightly controlled vocal performance that just threatens to break, I am full of tears.  To bring that kind of transformation is also great rock writing.  Thank you, pitchfork, you stuck up bunch of indie rock snobs.  You win this time.</p>
<p>2. Robert Wyatt &#8220;Shipbuilding&#8221;.  This song was my introduction to Robert Wyatt years ago.  It was on a Rough Trade comp and, perhaps because it was surrounded by post punk stuff like Altered Images, it stood out more, but it slayed them all with Wyatt&#8217;s voice.  I have always loved vulnerable voices, but Wyatt&#8217;s combines a hearftfelt wisdom with a shaky humanity.  He&#8217;s the fucking Gandalf of music my friends, and lord knows I love that shit. But more to the point, this song still makes me cry.</p>
<p>3. The Wipers &#8220;Youth of America&#8221;. It&#8217;s funny, when I saw they chose this song, I was a little disappointed as they could have chosen &#8220;Taken Too Long&#8221; or &#8220;Over the Edge&#8221; or some other Wipers songs that perhaps I like more.  This one is a long one.  But at soon as I heard it I knew why they chose this one.  The guitars on this, how they ascend and duplicate and come back &#8211; when you&#8217;re walking around listening to it, it doesn&#8217;t seem long at all, at least to me.  Then again, I apparently love repeating long guitar songs.  But not blues.</p>
<p>4. Michael Jackson &#8220;Billie Jean&#8221;. Bar none, my favorite Michael Jackson song.  It was hard not to dance while listening to this walking around.  From the very first moments of the song, I get excited.  It&#8217;s such a fun ride.</p>
<p>5. Mission of Burma &#8220;That&#8217;s When I Reach For My Revolver&#8221;.  Again, like the Wipers song, not my favorite Mission of Burma song.  But I still getting taken for the emotional rollercoaster everytime I hear this, like when I heard it at 17.  Sixteen years later, and I still wish I was playing the guitars and singing this song.  It&#8217;s too bad, because at the end of the song I hear the beginning of Outlaw and want to listen to the whole EP.  Signals, Calls, and Marches is one of my favorite recordings of all time.</p></blockquote>
<hr style="text-align: left;" />
<p style="text-align: left;">Works for me. I&#8217;m not a huge fan of &#8220;Ghost Town&#8221; either. I feel the exact same way about both the Fall and &#8220;The Classical&#8221;.  Also, I forgot about that Flipper song when I was making my lists, but it would have made my least favorite tracks, no doubt. The Scritti Politti song didn&#8217;t bore me as much as it did Jesse, I think, but other than that I take no issue with this list. Jesse, I approve (except for the part where you started talking about the important part being the journey and not the destination and all that; you sounded like Benjamin Button). And now, my list:</p>
<h3 style="text-align: left;"><strong>Least Favorite Tracks in This Chapter</strong></h3>
<p style="text-align: left;">Let me preface this by saying that I didn&#8217;t really dislike any of the songs in this chapter that much.  These are simply my least favorite.</p>
<h3 style="text-align: left;">The Clash &#8211; Magnificent Seven</h3>
<p style="text-align: left;">Too long, too repetitive. I appreciate the Clash&#8217;s willingness to experiment, and when it works (see last post re: &#8220;Guns of Brixton&#8221;) it&#8217;s great.  To me, this is a failed experiment. I&#8217;d rather listen to actual rap, or even actual funk.</p>
<h3 style="text-align: left;">Altered Images &#8211; Happy Birthday</h3>
<p style="text-align: left;">I think this one is just too chirpy, and wears thin way to fast. I was also really irritated by the P-fork blurb on this one, in which it discussed Altered Images conscious decision to abandon post-punk for pop in the pursuit of fame. How is that ok for them and not for Smashmouth? Ok, obviously they make better music than Smashmouth, but I&#8217;m just saying&#8230; abandoning what you&#8217;re into because it isn&#8217;t selling; isn&#8217;t there a phrase to describe that?</p>
<h3 style="text-align: left;">Adam Ant &#8211; Kings of the Wild Frontier</h3>
<p style="text-align: left;">Meh, those Burundi drums are really a one-trick pony.  You don&#8217;t even notice how weird they are in &#8220;Goody Two-Shoes&#8221; until you hear them used again in another song.  And another thing, &#8220;Goody Two-Shoes&#8221; is a better song than this. Suck it up and put that one in here, P-fork.</p>
<h3 style="text-align: left;"><strong>Best Tracks I Had Never Heard</strong></h3>
<h3 style="text-align: left;">B-52&#8242;s &#8211; Private Idaho</h3>
<p style="text-align: left;">Still not sure I&#8217;m a B-52&#8242;s fan, but this is a great song. Strikes me as having more bite than most B-52&#8242;s stuff I&#8217;ve heard before.  I do like &#8220;Roam&#8221; as well.</p>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/n7t7cGwN7_0&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/n7t7cGwN7_0&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<h3 style="text-align: left;">Dexy&#8217;s Midnight Runners &#8211; There, There My Dear</h3>
<p style="text-align: left;">Wow. This was the standout track for me. I&#8217;ve heard about Kevin Rowland and his craziness, but man, this song is great. The hook is ridiculously infectious, the lyrics are scathing and yet strangely self-unaware (once you decipher them). Fascinating and just plain great.  Rrrrrrrobin!</p>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/x6JaaTUwByU&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/x6JaaTUwByU&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<h3 style="text-align: left;">Young Marble Giants &#8211; Final Day</h3>
<p style="text-align: left;">Talk about creepy; blink and you miss the apocalypse.  I always love when dark material is wrapped in pretty paper and tied with a bow.  Makes it fun to open.</p>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/dgrlcrij4gc&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/dgrlcrij4gc&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<h3 style="text-align: left;">Bruce Springsteen &#8211; Atlantic City</h3>
<p style="text-align: left;">It&#8217;s been all Springsteen this week. I picked up &#8220;Nebraska&#8221; after I heard this song (I&#8217;m somehow in love with the idea that he recorded the whole album as demos for the E-Street band and then just decided it was better as is), and then last night at the Superbowl he decided to power-slide his crotch right into my living room.  Did that freak anyone else out? I think we just crossed a line.</p>
<div style="text-align: center;"><object width="512" height="322" data="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.34" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" value="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=v31967433&amp;vid=2040786&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http%3A//d.yimg.com/img.music.yahoo.com/image/v1/video/31967433%3Bsize%3D385x231&amp;embed=1" /><param name="src" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.34" /><param name="flashvars" value="id=v31967433&amp;vid=2040786&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http%3A//d.yimg.com/img.music.yahoo.com/image/v1/video/31967433%3Bsize%3D385x231&amp;embed=1" /><param name="allowfullscreen" value="true" /></object><br />
<a href="http://video.yahoo.com/watch/2040786/v31967433">Atlantic City</a> @ <a href="http://video.yahoo.com">Yahoo! Video</a></div>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/xTQAKCgWiW8&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/xTQAKCgWiW8&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<h3 style="text-align: left;">Wipers &#8211; Youth of america</h3>
<p style="text-align: left;">Always heard about Wipers and never got around to listening; this is great stuff and right up my alley.  And anyone who has ever heard The Pulses should not be suprised that Jesse is into this; his singing style totally channels Greg Sage&#8217;s voice during the lines &#8220;it is time we rectify this now / we&#8217;ve got to feel now&#8221;.  Awesome.</p>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/ur6n-M-xP9w&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ur6n-M-xP9w&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<p style="text-align: left;"><strong>Runners Up</strong><br />
Duran Duran &#8211; The Chauffer<br />
Bauhaus &#8211; Third Uncle</p>
<h3 style="text-align: left;"><strong>Best Tracks I Had Already Heard</strong></h3>
<h3 style="text-align: left;">The Message – Grand Master Flash &amp; The Furious Five</h3>
<p style="text-align: left;">Don&#8217;t think I really need to explain this one; a classic.</p>
<div style="text-align: center;"><object width="512" height="322" data="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.34" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" value="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=769450&amp;vid=18619&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http%3A//us.i1.yimg.com/us.yimg.com/i/us/sch/cn/v/v0/w54/18619_320_240.jpeg&amp;embed=1" /><param name="src" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.34" /><param name="flashvars" value="id=769450&amp;vid=18619&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http%3A//us.i1.yimg.com/us.yimg.com/i/us/sch/cn/v/v0/w54/18619_320_240.jpeg&amp;embed=1" /><param name="allowfullscreen" value="true" /></object><br />
<a href="http://video.yahoo.com/watch/18619/769450">The Message</a> @ <a href="http://video.yahoo.com">Yahoo! Video</a></div>
<h3 style="text-align: left;">The Pretenders &#8211; Back on the Chain Gang</h3>
<p style="text-align: left;">Take heed, all you aspiring pop songwriters: this is how you debate. How often do you hear something this unabashedly accessible with so much bite? This song is like a baby panda that just might tear your face off if you try to pet it.</p>
<div style="text-align: center;"><object width="512" height="322" data="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.34" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" value="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=1639404&amp;vid=213700&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http%3A//us.i1.yimg.com/us.yimg.com/i/us/sch/cn/v/v0/w626/213700_400_300.jpeg&amp;embed=1" /><param name="src" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.34" /><param name="flashvars" value="id=1639404&amp;vid=213700&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http%3A//us.i1.yimg.com/us.yimg.com/i/us/sch/cn/v/v0/w626/213700_400_300.jpeg&amp;embed=1" /><param name="allowfullscreen" value="true" /></object><br />
<a href="http://video.yahoo.com/watch/213700/1639404">The Pretenders &#8211; &#8220;Back On The Chain Gang&#8221; &#8211; 1980s</a> @ <a href="http://video.yahoo.com">Yahoo! Video</a></div>
<h3 style="text-align: left;">The (English) Beat &#8211; Save It For Later</h3>
<p style="text-align: left;">I never realized how dirty this song was. And oh, that chorus.</p>
<div style="text-align: center;"><object width="512" height="322" data="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.34" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" value="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=887551&amp;vid=18712&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http%3A//us.i1.yimg.com/us.yimg.com/i/us/sch/cn/v/v0/w54/18712_400_300.jpeg&amp;embed=1" /><param name="src" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.34" /><param name="flashvars" value="id=887551&amp;vid=18712&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http%3A//us.i1.yimg.com/us.yimg.com/i/us/sch/cn/v/v0/w54/18712_400_300.jpeg&amp;embed=1" /><param name="allowfullscreen" value="true" /></object><br />
<a href="http://video.yahoo.com/watch/18712/887551">Save It For Later</a> @ <a href="http://video.yahoo.com">Yahoo! Video</a></div>
<h3 style="text-align: left;">Tom Tom Club &#8211; Genius of Love</h3>
<p style="text-align: left;">This beat is so brilliant I can even forgive that weird growling vocal part in the middle.</p>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/cnC1Xzm5uKM&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/cnC1Xzm5uKM&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<h3 style="text-align: left;">Bad Brains &#8211; Pay to Cum</h3>
<p style="text-align: left;">P-fork really nailed it in the blurb for this one&#8230; catchier than pop-punk, tougher than hardcore, faster than grindcore.  These guys were a level above.</p>
<p style="text-align: left;">Note: this video is not the 7&#8243; version, which is the version that made the 500. The 7&#8243; version is definitely a better recording, but I couldn&#8217;t find it.</p>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/YaBWHaoNJ7s&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/YaBWHaoNJ7s&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<hr style="text-align: left;" />
<p style="text-align: left;">Well, that&#8217;s chapter II. Jesse and I both marveled at the amount of crossover we had in our lists. Must be why we&#8217;re friends.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.rightuptop.com/personal/the-pitchfork-500-analysis-chapter-ii/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->