<?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>Jason Rowe &#187; Uncategorized</title>
	<atom:link href="http://jasonrowe.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasonrowe.com</link>
	<description>digging into the details</description>
	<lastBuildDate>Sun, 14 Mar 2010 02:00:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Interview Programming Question &#8211; find perfect numbers</title>
		<link>http://jasonrowe.com/2009/09/15/interview-programming-question-i-was-asked-once/</link>
		<comments>http://jasonrowe.com/2009/09/15/interview-programming-question-i-was-asked-once/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 05:37:17 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Interview Question]]></category>

		<guid isPermaLink="false">http://jasonrowe.com/?p=691</guid>
		<description><![CDATA[Here is a problem I got once for a entry level programming job. I received lots of help from the person asking and it turned out to be a good experience. If you ever use this in an interview be nice because this really has little to do with real world programming and more about [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a problem I got once for a entry level programming job. I received lots of help from the person asking and it turned out to be a good experience. If you ever use this in an interview be nice because this really has little to do with real world programming and more about finding out about the person.</p>
<p><strong>Question</strong>: Create a method to find perfect numbers. In mathematics, a perfect number is defined as a positive integer which is the sum of its proper positive divisors</p>
<p><strong>Possible Answer:</strong></p>
<pre class="brush: c#; ">

class Program
{
static void Main()
{

for (int j = 1; j &lt; 10000; j++)
{
if (j % 2 == 0)
{
if (PerfectNumber.IsPerfectNumber(j))
Console.WriteLine(j + &quot;is perfect&quot;);
}
}
Console.ReadLine();
}
}

public static class PerfectNumber
{
public static bool IsPerfectNumber(int n)
{
var totalFactor = 0;
for (var i = 1; i &lt; n; i++)
{
if(n % i == 0)
{
totalFactor = totalFactor + i;
}
}

return totalFactor == n;
}
}
</pre>
<hr />
<p><small>&copy; admin for <a href="http://jasonrowe.com">Jason Rowe</a>, 2009. |
<a href="http://jasonrowe.com/2009/09/15/interview-programming-question-i-was-asked-once/">Permalink</a> |
<a href="http://jasonrowe.com/2009/09/15/interview-programming-question-i-was-asked-once/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://jasonrowe.com/2009/09/15/interview-programming-question-i-was-asked-once/&amp;title=Interview Programming Question &#8211; find perfect numbers">del.icio.us</a>
<br/>
Post tags: <a href="http://jasonrowe.com/tag/interview-question/" rel="tag">Interview Question</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://jasonrowe.com/2009/09/15/interview-programming-question-i-was-asked-once/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turing&#8217;s Lambda Notation</title>
		<link>http://jasonrowe.com/2009/09/05/turings-lambda-notation/</link>
		<comments>http://jasonrowe.com/2009/09/05/turings-lambda-notation/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 06:50:26 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Lambda]]></category>

		<guid isPermaLink="false">http://jasonrowe.com/?p=642</guid>
		<description><![CDATA[I&#8217;m still working through Turing&#8217;s paper on Computability and the Turing Machine.  I am at the end and reading the appendix on Alonzo Church&#8217;s equivalent approach using Lambda Calculus.   His work is so familiar to most programmers since we use the concepts in C, C++, Java, and C#.   I decided to use C# [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still working through Turing&#8217;s paper on Computability and the Turing Machine.  I am at the end and reading the appendix on Alonzo Church&#8217;s equivalent approach using Lambda Calculus.   His work is so familiar to most programmers since we use the concepts in C, C++, Java, and C#.   I decided to use C# Lambda syntax to get familiar before reading through the rest of the paper.</p>
<p><a rel="attachment wp-att-658" href="http://jasonrowe.com/2009/09/05/turings-lambda-notation/lambda_math_syntax-2/"><img class="alignnone size-full wp-image-658" title="lambda_math_syntax" src="http://jasonrowe.com/wp-content/uploads/2009/09/lambda_math_syntax.PNG" alt="lambda_math_syntax" width="537" height="136" /></a></p>
<p>I started simply and considered how I could make the following expression be represented by M.</p>
<p><strong>Math.Pow(x, 2.0) + 5 * x + 7</strong></p>
<p>Most commonly we see it in this form when programming.</p>
<pre class="brush: c#; ">

static double F(double x)
{

return Math.Pow(x, 2.0) + 5 * x + 7;

}
</pre>
<p>So convert it to a lambda expression.</p>
<pre class="brush: c#; ">

OneV firstExp = x =&gt; Math.Pow(x, 2.0) + 5 * x + 7;
</pre>
<p>where OneV is defined as (not suprisingly)</p>
<pre class="brush: c#; ">

delegate double OneV(double x);
</pre>
<p>In C# the two variable syntax could be something like this:</p>
<pre class="brush: c#; ">

TwoV Exp = (x, y) =&gt; Math.Pow(y, 2.0) + 5 * y + 18 * x + 2 * x * y + 7;
</pre>
<p>So thats how I got my head around the very basic syntax.</p>
<hr />
<p><small>&copy; admin for <a href="http://jasonrowe.com">Jason Rowe</a>, 2009. |
<a href="http://jasonrowe.com/2009/09/05/turings-lambda-notation/">Permalink</a> |
<a href="http://jasonrowe.com/2009/09/05/turings-lambda-notation/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://jasonrowe.com/2009/09/05/turings-lambda-notation/&amp;title=Turing&#8217;s Lambda Notation">del.icio.us</a>
<br/>
Post tags: <a href="http://jasonrowe.com/tag/lambda/" rel="tag">Lambda</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://jasonrowe.com/2009/09/05/turings-lambda-notation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intro to Propositional Logic Using C#</title>
		<link>http://jasonrowe.com/2009/08/28/intro-to-propositional-logic-using-c/</link>
		<comments>http://jasonrowe.com/2009/08/28/intro-to-propositional-logic-using-c/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 03:18:20 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Propositional Logic]]></category>

		<guid isPermaLink="false">http://jasonrowe.com/?p=628</guid>
		<description><![CDATA[I&#8217;ve been reading about propositional (or sentential) logic in the book &#8220;The Annotated Turing&#8221;.  I put together a quick console app to write out truth tables. It helped me get the hang of the mathematical notation &#8220;v&#8221;, &#8220;&#038;&#8221;, and &#8220;->&#8221;. In C# those would be &#124;&#124;, &#038;&#038;, and !x &#124;&#124; y respectively. I hope [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been reading about propositional (or sentential) logic in the book &#8220;The Annotated Turing&#8221;.  I put together a quick console app to write out truth tables. It helped me get the hang of the mathematical notation &#8220;v&#8221;, &#8220;&#038;&#8221;, and &#8220;->&#8221;. In C# those would be ||, &#038;&#038;, and !x || y respectively. I hope someone else finds it useful.</p>
<pre class="brush: c#; ">

using System;
using System.Collections.Generic;

namespace PropositionalLogic
{
    public class Program
    {
        public class truthvalue
        {
            public bool X { get; set; }
            public bool Y { get; set; }
        }

        public static bool XorY(bool x, bool y)
        {
            return (x || y);
        }

        public static bool XandY(bool x, bool y)
        {
            return (x &amp;&amp; y);
        }

        public static bool Exclusive(bool x, bool y)
        {
            return (x &amp;&amp; y) &amp;&amp; !(x &amp;&amp; y);// always false
        }

        public static bool Tautoloty(bool x, bool y)
        {
            return x || y || (!x &amp;&amp; !y);// always true
        }

        public static bool Contradition(bool x, bool y)
        {
            return x || (y &amp;&amp; !y);
        }

        public static bool MaterialImplication(bool x, bool y)
        {
            return !x || y; //this can also be expressed as the following conjunction !(x &amp;&amp; !y);
        }

        public static bool BiConditional(bool x, bool y)
        {
            return MaterialImplication(x, y) &amp;&amp; MaterialImplication(y, x); //&quot;if and only if&quot;
        }

        static void Main(string[] args)
        {
            var truthTable = new List&lt;truthvalue&gt;
                                 {
                                     new truthvalue() {X = false, Y = false},
                                     new truthvalue() {X = false, Y = true},
                                     new truthvalue() {X = true, Y = false},
                                     new truthvalue() {X = true, Y = true}
                                 };

            var sentences = new Dictionary&lt;string , Func&lt;bool, bool, bool&gt;&gt;
                                {
                                    {&quot;X v Y&quot;, XorY},
                                    {&quot;X &amp; Y&quot;, XandY},
                                    {&quot;(x v y)&amp; -(x &amp; y)&quot;, Exclusive},
                                    {&quot;x v y v (-x &amp; -y)&quot;, Tautoloty},
                                    {&quot;x -&gt; y&quot;, MaterialImplication},
                                    {&quot;x ~ y&quot;, BiConditional}
                                };

            CalculateTruthTable(truthTable, sentences);

            Console.ReadLine();
        }

        private static void CalculateTruthTable(IEnumerable&lt;truthvalue&gt; truthTable, Dictionary&lt;string , Func&lt;bool, bool, bool&gt;&gt; sentences)
        {
            foreach (var sentence in sentences)
            {
                Console.WriteLine(&quot;&quot;);
                Console.WriteLine(&quot;|X      |Y      |{0}  |&quot;, sentence.Key);

                foreach (var value in truthTable)
                {
                    var x = value.X;
                    var y = value.Y;

                    var result = sentence.Value(x, y);

                    Console.WriteLine(&quot;|{0}  |{1}  |{2}  |&quot;, PrettyPrint(x), PrettyPrint(y), PrettyPrint(result));
                }
            }
        }

        private static string PrettyPrint(bool input)
        {
            return input ? input + &quot; &quot; : input.ToString();
        }
    }
}
</pre>
<p></string></truthvalue></string></truthvalue>
<hr />
<p><small>&copy; admin for <a href="http://jasonrowe.com">Jason Rowe</a>, 2009. |
<a href="http://jasonrowe.com/2009/08/28/intro-to-propositional-logic-using-c/">Permalink</a> |
<a href="http://jasonrowe.com/2009/08/28/intro-to-propositional-logic-using-c/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://jasonrowe.com/2009/08/28/intro-to-propositional-logic-using-c/&amp;title=Intro to Propositional Logic Using C#">del.icio.us</a>
<br/>
Post tags: <a href="http://jasonrowe.com/tag/c/" rel="tag">C#</a>, <a href="http://jasonrowe.com/tag/math/" rel="tag">Math</a>, <a href="http://jasonrowe.com/tag/propositional-logic/" rel="tag">Propositional Logic</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://jasonrowe.com/2009/08/28/intro-to-propositional-logic-using-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>St. Paul Pipeworks &#8211; Plumber Contractor Review</title>
		<link>http://jasonrowe.com/2008/03/24/rant-st-paul-pipeworks-review/</link>
		<comments>http://jasonrowe.com/2008/03/24/rant-st-paul-pipeworks-review/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 01:43:37 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Contractor Review Pluming]]></category>

		<guid isPermaLink="false">http://rowejason.com/2008/03/24/rant-st-paul-pipeworks-review/</guid>
		<description><![CDATA[ I hired St. Paul Pipeworks to replace 5 cold water shut off valves. I would have done it myself but this was in a condo so I wanted to hire someone with insurance incase something went wrong. So everything went fine until about 5 days later when I opened the kitchen sink cabnit. Apparently they [...]]]></description>
			<content:encoded><![CDATA[<p> I hired St. Paul Pipeworks to replace 5 cold water shut off valves. I would have done it myself but this was in a condo so I wanted to hire someone with insurance incase something went wrong. So everything went fine until about 5 days later when I opened the kitchen sink cabnit. Apparently they did not tighten the new valve and it had a slow leak that was not noticed.</p>
<p><em>UPDATE: Dave from St. Paul Pipeworks sent me a email and said they would pay me back for this valve replacement on Friday. So I feel a little better about having to do the tightening and cleanup on this. It&#8217;s almost getting dry&#8230;</em></p>
<p> </p>
<p> </p>
<hr />
<p><small>&copy; admin for <a href="http://jasonrowe.com">Jason Rowe</a>, 2008. |
<a href="http://jasonrowe.com/2008/03/24/rant-st-paul-pipeworks-review/">Permalink</a> |
<a href="http://jasonrowe.com/2008/03/24/rant-st-paul-pipeworks-review/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://jasonrowe.com/2008/03/24/rant-st-paul-pipeworks-review/&amp;title=St. Paul Pipeworks &#8211; Plumber Contractor Review">del.icio.us</a>
<br/>
Post tags: <a href="http://jasonrowe.com/tag/contractor-review-pluming/" rel="tag">Contractor Review Pluming</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://jasonrowe.com/2008/03/24/rant-st-paul-pipeworks-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simpsonizme &#8211; Me as a simpson! :)</title>
		<link>http://jasonrowe.com/2007/07/20/simpsonizme-me-as-a-simpson/</link>
		<comments>http://jasonrowe.com/2007/07/20/simpsonizme-me-as-a-simpson/#comments</comments>
		<pubDate>Fri, 20 Jul 2007 20:07:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Simpsonizme]]></category>

		<guid isPermaLink="false">http://rowejason.com/?p=97</guid>
		<description><![CDATA[




See what you look like &#8211; http://www.simpsonizeme.com/
 show me how it turns out.  

&#169; admin for Jason Rowe, 2007. &#124;
Permalink &#124;
4 comments &#124;
Add to
del.icio.us

Post tags: Simpsonizme

Feed enhanced by Better Feed from  Ozh
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rowejason.com/uploaded_images/your_image-769738.png"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://www.rowejason.com/uploaded_images/your_image-769734.png" border="0" alt="" /></a></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0393243031650344";
/* 468x60, created 6/21/09 */
google_ad_slot = "5732188297";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>See what you look like &#8211; <a href="http://www.simpsonizeme.com/">http://www.simpsonizeme.com/</a></p>
<p> show me how it turns out. <img src='http://jasonrowe.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<hr />
<p><small>&copy; admin for <a href="http://jasonrowe.com">Jason Rowe</a>, 2007. |
<a href="http://jasonrowe.com/2007/07/20/simpsonizme-me-as-a-simpson/">Permalink</a> |
<a href="http://jasonrowe.com/2007/07/20/simpsonizme-me-as-a-simpson/#comments">4 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://jasonrowe.com/2007/07/20/simpsonizme-me-as-a-simpson/&amp;title=Simpsonizme &#8211; Me as a simpson! :)">del.icio.us</a>
<br/>
Post tags: <a href="http://jasonrowe.com/tag/simpsonizme/" rel="tag">Simpsonizme</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://jasonrowe.com/2007/07/20/simpsonizme-me-as-a-simpson/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mouse Events onmouseout issue event bubbling</title>
		<link>http://jasonrowe.com/2007/01/12/mouse-events-onmouseout-issue-event-bubbling/</link>
		<comments>http://jasonrowe.com/2007/01/12/mouse-events-onmouseout-issue-event-bubbling/#comments</comments>
		<pubDate>Fri, 12 Jan 2007 23:23:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rowejason.com/?p=68</guid>
		<description><![CDATA[Quick JavaScript example to handle the onmouseout event to prevent event bubbling in IE.

if(window.addEventListener)
{
// Mozilla, Netscape, Firefox
object.addEventListener(&#8216;mouseover&#8217;,function() {this.className = &#8220;objectVisible&#8221;;false)
object.addEventListener(&#8216;mouseout&#8217;,function() {this.className = &#8220;objectNotVisible&#8221;;return true;}, false)} 
else { // IE
object.onmouseenter = function() {this.className = &#8220;objectVisible&#8221;;return false;};
object.onmouseleave = function() {this.className = &#8220;objectNotVisible&#8221;;return false;}; 
}


&#169; admin for Jason Rowe, 2007. &#124;
Permalink &#124;
No comment &#124;
Add to
del.icio.us

Post tags: JavaScript

Feed enhanced [...]]]></description>
			<content:encoded><![CDATA[<p>Quick JavaScript example to handle the onmouseout event to prevent event bubbling in IE.<br />
<blockquote>
<p>if(window.addEventListener)</p>
<p>{</p>
<p>// Mozilla, Netscape, Firefox</p>
<p>object.addEventListener(&#8216;mouseover&#8217;,function() {this.className = &#8220;objectVisible&#8221;;false)</p>
<p>object.addEventListener(&#8216;mouseout&#8217;,function() {this.className = &#8220;objectNotVisible&#8221;;return true;}, false)} </p>
<p>else { // IE</p>
<p>object.onmouseenter = function() {this.className = &#8220;objectVisible&#8221;;return false;};</p>
<p>object.onmouseleave = function() {this.className = &#8220;objectNotVisible&#8221;;return false;}; </p>
<p>}</p>
</blockquote>
<hr />
<p><small>&copy; admin for <a href="http://jasonrowe.com">Jason Rowe</a>, 2007. |
<a href="http://jasonrowe.com/2007/01/12/mouse-events-onmouseout-issue-event-bubbling/">Permalink</a> |
<a href="http://jasonrowe.com/2007/01/12/mouse-events-onmouseout-issue-event-bubbling/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://jasonrowe.com/2007/01/12/mouse-events-onmouseout-issue-event-bubbling/&amp;title=Mouse Events onmouseout issue event bubbling">del.icio.us</a>
<br/>
Post tags: <a href="http://jasonrowe.com/tag/javascript/" rel="tag">JavaScript</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://jasonrowe.com/2007/01/12/mouse-events-onmouseout-issue-event-bubbling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>head spin</title>
		<link>http://jasonrowe.com/2006/10/27/head-spin/</link>
		<comments>http://jasonrowe.com/2006/10/27/head-spin/#comments</comments>
		<pubDate>Fri, 27 Oct 2006 02:19:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hip-hop]]></category>

		<guid isPermaLink="false">http://rowejason.com/?p=53</guid>
		<description><![CDATA[     P1000650    Originally uploaded by photoshootya. 
I took this photo last night at a break dance contest. It was fun to watch and a great challenge to get good photos. 

&#169; admin for Jason Rowe, 2006. &#124;
Permalink &#124;
No comment &#124;
Add to
del.icio.us

Post tags: hip-hop

Feed enhanced by Better Feed from [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;"> <a href="http://www.flickr.com/photos/mpls/280259426/" title="photo sharing"><img src="http://static.flickr.com/110/280259426_67b0ffdcbf_m.jpg" alt="" style="border: solid 2px #000000;" /></a> <br /> <span style="font-size: 0.9em; margin-top: 0px;">  <a href="http://www.flickr.com/photos/mpls/280259426/">P1000650</a>  <br />  Originally uploaded by <a href="http://www.flickr.com/people/mpls/">photoshootya</a>. </span></div>
<p>I took this photo last night at a break dance contest. It was fun to watch and a great challenge to get good photos. <br clear="all" /></p>
<hr />
<p><small>&copy; admin for <a href="http://jasonrowe.com">Jason Rowe</a>, 2006. |
<a href="http://jasonrowe.com/2006/10/27/head-spin/">Permalink</a> |
<a href="http://jasonrowe.com/2006/10/27/head-spin/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://jasonrowe.com/2006/10/27/head-spin/&amp;title=head spin">del.icio.us</a>
<br/>
Post tags: <a href="http://jasonrowe.com/tag/hip-hop/" rel="tag">hip-hop</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://jasonrowe.com/2006/10/27/head-spin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
