<?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's &#187; Tech</title>
	<atom:link href="http://blog.jasonkoepke.com/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jasonkoepke.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Aug 2010 21:32:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Futzing and Displaying Unruly RSS Feeds</title>
		<link>http://blog.jasonkoepke.com/2010/03/25/futzing-and-displaying-unruly-rss-feeds/</link>
		<comments>http://blog.jasonkoepke.com/2010/03/25/futzing-and-displaying-unruly-rss-feeds/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 02:16:39 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[demolition derby]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Jason Koepke]]></category>
		<category><![CDATA[lessons]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[StatusNet]]></category>

		<guid isPermaLink="false">http://blog.jasonkoepke.com/?p=637</guid>
		<description><![CDATA[I am currently working on a Web site for my latest and absolutely greatest adventure of competing in the 2010 Montgomery Country Agricultural Fair&#8216;s demolition derby. I want this Web site to provide multimedia content, descriptions and plans, as well as nicely displayed RSS feeds of my blog and SMS systems relevant to my demolition [...]]]></description>
			<content:encoded><![CDATA[<p>I am currently working on a Web site for my latest and absolutely greatest adventure of competing in the <a href="http://www.mcagfair.com/">2010 Montgomery Country Agricultural Fair</a>&#8216;s demolition derby. I want this Web site to provide multimedia content, descriptions and plans, as well as nicely displayed RSS feeds of <a href="http://blog.jasonkoepke.com">my blog</a> and <a href="http://sms.jasonkoepke.com">SMS</a> systems relevant to <a href="http://wiki.jasonkoepke.com/index.php?title=2010_Demolition_Derby">my demolition derby effort</a>. Probably because of my own ignorance and lack of knowledge (remember, I&#8217;m a political/economic analyst, not a developer) but possibly because of a(<a href="http://blog.jasonkoepke.com/2010/03/07/parse-error-when-installing-statusnet/">nother</a>) bug with <a href="http://status.net/">StatusNet</a>, I had difficulty using PHP to repost posts that contain a certain hashtag. After trying to do it the &#8220;correct&#8221; way for an hour or two, I decided to do it the easy hacky way and did so in five minutes. Here&#8217;s the deal in case you come across a similar problem:</p>
<p>For <a href="http://jasonkoepke.com">my homepage</a>, I swiped <a href="http://matthom.com/archive/2007/09/18/use-php-to-display-any-rss-feed-on-your-site">Matt Thommes&#8217; PHP to display RSS/ATOM feeds in another page</a>. It took some tweaking (and learning), but I used his structure/framework to get my blog and sms sites to load. This works well, is clear, and allows for a good degree of flexibility.</p>
<p>For the demolition derby Web site, I want to post notices from my sms site that contain the <a href="http://sms.jasonkoepke.com/tag/demoderby">#demoderby</a> hashtag. That way, I can continue to use whatever information delivery methods I prefer (e.g., blog or sms) with it all being delivered to one place for people who want to follow the destruction. At first, I played with the various badges (for StatusNet systems) that exist out there, but I could not get the first two I tried to work and none of them seemed well configured for limiting posts to certain hashtags. The next step was to use Thommes&#8217; PHP structure to use the RSS feed a StatusNet install provides for a given hashtag. This, however, wouldn&#8217;t work because&#8211;I think&#8211;of the URL StatusNet uses for hashtags&#8217; RSS feeds.</p>
<p>After about two hours of total hunting and searching (starting from the badge search), I gave up and decided to add a tweak to Thommes&#8217; code. I essentially include a line that checks to see if a given notice contains the hashtag. If it doesn&#8217;t, do nothing and move on to the next notice. If it does, then display the tag. It took me five minutes to do, and should have been how I started. Oh well.</p>
<p>Here&#8217;s the tweaked code:</p>
<p><code># INSTANTIATE CURL.</code><br />
<code>$curl = curl_init();</code></p>
<p><code># CURL SETTINGS.</code><br />
<code>curl_setopt($curl, CURLOPT_URL, "http://sms.jasonkoepke.com/api/statuses/user_timeline/1.atom");</code><br />
<code>Curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);</code><br />
<code>curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 0);</code></p>
<p><code># GRAB THE XML FILE. </code><br />
<code>$xmlSMSFeed = curl_exec($curl);</code></p>
<p><code>curl_close($curl);</code></p>
<p><code>#  SET UP XML OBJECT. </code><br />
<code>$xmlObjSMSFeed = simplexml_load_string($xmlSMSFeed);</code></p>
<p><code>$tempCounter = 0;</code></p>
<p><code>#Specify the hash you care about</code><br />
<code>$hashofconcern = "#demoderby";</code></p>
<p><code>foreach ($xmlObjSMSFeed->entry as $smsitem)</code><br />
<code>{    </code><br />
<code>   # DISPLAY ONLY 3 ITEMS. </code><br />
<code>    if ( $tempCounter < 3 )</code><br />
</code><code>    {</code><br />
<code>		$pos = strpos($smsitem->title, $hashofconcern);</code><br />
<code>		if ($pos === false)</code><br />
<code>		{</code><br />
<code>			#We don't want to display non-hashtagged posts, so this if statment has nothing.</code><br />
<code>		}</code><br />
<code>		else</code><br />
<code>		{</code><br />
<code>		echo "<a href=\"".$smsitem -> id."\">".$smsitem -> published."</a>: ".$smsitem -> title."</p>
<p>";</code><br />
<code>		}</code><br />
<code>    }</code></p>
<p><code>    $tempCounter += 1;</code><br />
<code> }</code></p>
<p>Hope that helps someone, or someone comments the obvious and easier way of doing all this.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jasonkoepke.com/2010/03/25/futzing-and-displaying-unruly-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Parse Error when Installing StatusNet</title>
		<link>http://blog.jasonkoepke.com/2010/03/07/parse-error-when-installing-statusnet/</link>
		<comments>http://blog.jasonkoepke.com/2010/03/07/parse-error-when-installing-statusnet/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 18:09:44 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Jason Koepke]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[StatusNet]]></category>

		<guid isPermaLink="false">http://blog.jasonkoepke.com/?p=634</guid>
		<description><![CDATA[I successfully installed StatusNet (nee: Laconica) this morning to my Web server, but in doing so I came across an issue that appears undocumented. The StatusNet install is simple and straightforward. You UL the relevant files to your server and then visit the install path in your browser. StatusNet asks you to fill in several [...]]]></description>
			<content:encoded><![CDATA[<p>I successfully installed <a href="http://status.net">StatusNet</a> (nee: Laconica) this morning to <a href="http://sms.jasonkoepke.com">my Web server</a>, but in doing so I came across an issue that appears undocumented.</p>
<p>The StatusNet install is simple and straightforward. You UL the relevant files to your server and then visit the install path in your browser. StatusNet asks you to fill in several basic fields, including MySQL db info, admin info, and basic about-type info. Once you click Save, StatusNet installs the software, structures your previously created, blank MySQL db, and creates the config.php file using the information you entered on the install page.</p>
<p>After I had filled in the information, I clicked Save and, instead of being greeted by a success page, I saw an error along these lines:<br />
<code>install config.php parse error unexpected T_STRING</code>.</p>
<p>I searched the config.php file for something that might be problematic, but couldn&#8217;t find anything. In addition, I did several searches, but again nothing. After about an hour, I tried removing an apostrophe I had put in my StatusNet install name (&#8220;Jsn&#8217;s&#8221;). That did the trick (although I had to delete and recreate the MySQL db and config.php files).</p>
<p>Hope that helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jasonkoepke.com/2010/03/07/parse-error-when-installing-statusnet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Update (Tech, not Life)</title>
		<link>http://blog.jasonkoepke.com/2010/03/07/update-tech-not-life/</link>
		<comments>http://blog.jasonkoepke.com/2010/03/07/update-tech-not-life/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 17:58:53 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Jason Koepke]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[StatusNet]]></category>
		<category><![CDATA[Web site]]></category>

		<guid isPermaLink="false">http://blog.jasonkoepke.com/?p=632</guid>
		<description><![CDATA[I have made slow progress on evolving my site, but the results are now becoming visible so a post is appropriate. The jasonkoepke.com part of the site has been PHP-ified, allowing me more flexibility and fun. This was a setup to display RSS feeds on the home page, which will give that page some content [...]]]></description>
			<content:encoded><![CDATA[<p>I have made slow progress on evolving my site, but the results are now becoming visible so a post is appropriate. The <a href="http://jasonkoepke.com">jasonkoepke.com</a> part of the site has been PHP-ified, allowing me more flexibility and fun. This was a setup to display RSS feeds on the home page, which will give that page some content and protect my search rankings from encroaching Jason Koepkes. I also added a micro-blogging service at <a href="http://sms.jasonkoepke.com">sms.jasonkoepke.com</a> for learning purposes; at some point in the near term, I will add (1) add a link to the site on the main site&#8217;s navigation bar and (2) add the RSS feed on the main site&#8217;s home page. These changes provide a more robust foundation on which to develop and play, as well as improve my PHP skills for some other projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jasonkoepke.com/2010/03/07/update-tech-not-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Case Against Old School Games (kind of)</title>
		<link>http://blog.jasonkoepke.com/2009/01/31/the-case-against-old-school-games-kind-of/</link>
		<comments>http://blog.jasonkoepke.com/2009/01/31/the-case-against-old-school-games-kind-of/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 22:36:35 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[BoingBoing]]></category>
		<category><![CDATA[parenting]]></category>
		<category><![CDATA[video games]]></category>

		<guid isPermaLink="false">http://blog.jasonkoepke.com/?p=541</guid>
		<description><![CDATA[I know several parents who swear that video games are bad news and they won&#8217;t let their kids play them. The absurdity of this argument is off the scale for a couple reasons that I won&#8217;t go into here. But BoingBoing recently posted a critique of Candy Land that changes the line of argument I [...]]]></description>
			<content:encoded><![CDATA[<p>I know several parents who swear that video games are bad news and they won&#8217;t let their kids play them. The absurdity of this argument is off the scale for a couple reasons that I won&#8217;t go into here. But <a href="http://www.boingboing.net">BoingBoing</a> recently posted <a href="http://www.boingboing.net/2009/01/26/the-case-against-can.html">a critique of Candy Land</a> that changes the line of argument I take to an active criticism of games those types of parents find &#8220;good&#8221;. It&#8217;s a nice quick read.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jasonkoepke.com/2009/01/31/the-case-against-old-school-games-kind-of/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home is Where the PGP is</title>
		<link>http://blog.jasonkoepke.com/2009/01/26/home-is-where-the-pgp-is/</link>
		<comments>http://blog.jasonkoepke.com/2009/01/26/home-is-where-the-pgp-is/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 02:15:33 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[bumper stickers]]></category>
		<category><![CDATA[cars]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[pgp]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blog.jasonkoepke.com/?p=525</guid>
		<description><![CDATA[I saw this location-reference sticker the other day and loved it:]]></description>
			<content:encoded><![CDATA[<p>I saw this location-reference sticker the other day and loved it:<br />
<img src="http://blog.jasonkoepke.com/wp-content/uploads/2009/01/img_0313.jpg" alt="img_0313" title="img_0313" width="432" height="324" class="alignnone size-full wp-image-526" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jasonkoepke.com/2009/01/26/home-is-where-the-pgp-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tor Roadmap</title>
		<link>http://blog.jasonkoepke.com/2009/01/02/tor-roadmap/</link>
		<comments>http://blog.jasonkoepke.com/2009/01/02/tor-roadmap/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 15:18:08 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[network security]]></category>
		<category><![CDATA[online anonymity]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Tor]]></category>

		<guid isPermaLink="false">http://blog.jasonkoepke.com/?p=513</guid>
		<description><![CDATA[The Tor Project recently released it&#8217;s roadmap for the next three years, and the roadmap is a worthwhile scan for anyone involved in networking and/or online anonymity. I follow Tor development and have been lucky enough to meet and chat extensively with two of the lead developers in the project.]]></description>
			<content:encoded><![CDATA[<p>The <a href="https://www.torproject.org/">Tor Project</a> recently released it&#8217;s <a href="https://blog.torproject.org/blog/our-three-year-development-roadmap-published">roadmap for the next three years</a>, and the roadmap is a worthwhile scan for anyone involved in networking and/or online anonymity.</p>
<p>I follow Tor development and have been lucky enough to meet and chat extensively with two of the lead developers in the project.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jasonkoepke.com/2009/01/02/tor-roadmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Going Really Mainstream</title>
		<link>http://blog.jasonkoepke.com/2008/12/03/web-20-going-really-mainstream/</link>
		<comments>http://blog.jasonkoepke.com/2008/12/03/web-20-going-really-mainstream/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 15:40:42 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[American Express]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://blog.jasonkoepke.com/2008/12/03/web-20-going-really-mainstream/</guid>
		<description><![CDATA[I noticed that American Express now lets customers tag charges. For example, I can tag an expense as &#8220;business&#8221;, &#8220;tech&#8221;, and &#8220;none of your business&#8221;. Kinda cool, although I won&#8217;t use it.]]></description>
			<content:encoded><![CDATA[<p>I noticed that <a href="http://www.americanexpress.com">American Express</a> now lets customers tag charges. For example, I can tag an expense as &#8220;business&#8221;, &#8220;tech&#8221;, and &#8220;none of your business&#8221;. Kinda cool, although I won&#8217;t use it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jasonkoepke.com/2008/12/03/web-20-going-really-mainstream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Index as the Web (Alternative Conceptualizations of the Internet)</title>
		<link>http://blog.jasonkoepke.com/2008/07/31/search-index-as-the-web-alternative-conceptualizations-of-the-internet/</link>
		<comments>http://blog.jasonkoepke.com/2008/07/31/search-index-as-the-web-alternative-conceptualizations-of-the-internet/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 14:22:54 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Cuil]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[The Register]]></category>

		<guid isPermaLink="false">http://blog.jasonkoepke.com/?p=321</guid>
		<description><![CDATA[The Register has a great piece on Cuil&#8216;s launch, its impact on Google, and what the Web really is these days. While I don&#8217;t completely agree with the article&#8217;s point, thinking of the Web not as the culmination of linked documents but as The Index (i.e., search engine handling of the Web) is interesting and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.theregister.co.uk">The Register</a> has a great piece on <a href="http://cuil.com">Cuil</a>&#8216;s launch, its impact on <a href="http://google.com">Google</a>, and what the Web really is these days. While I don&#8217;t completely agree with the article&#8217;s point, thinking of the Web not as the culmination of linked documents but as The Index (i.e., search engine handling of the Web) is interesting and useful. Here are some of the key points from the article (<a href="http://www.theregister.co.uk/2008/07/31/google_cuil_spammers_analysis/">&#8220;Spammers, Cuil, and the rescue from planet Google&#8221;</a>):</p>
<blockquote><p>
With a little thought, Cuil not being as good as Google at finding what we want online is the least surprising piece of news since people familiar with the situation said JPII was partial to fish on a Friday. In 2008, Mountain View&#8217;s all-seeing algorithms in many ways are the web.</p>
<p>It&#8217;s easy to identify what happened. When it first surfaced in 1998, Google made sense of the web a bit better than anyone else. It was a useful improvement on existing services. Ten years later, the web does its best to make sense of Google.</p>
<p>The sorry upshot is that barring some unimaginable technological leap no search engine&#8217;s results will ever be better than Google&#8217;s, at least in the West. And the switch leaves the likes of Microsoft and Cuil (and a dozen other doomed start-ups) effectively attempting to reverse-engineer Google, not understand the information on the web.</p>
<p>&#8230;</p>
<p>The people at the vanguard of reverse-engineering Google are not its jealous search rivals. They&#8217;re the spammers and SEO consultants. They have driven an ever-closer relationship between the quirks and whims of Google&#8217;s algorithms and policies, and the structure and content of the web. It&#8217;s a feedback loop that was unavoidable once Google&#8217;s early rivals proved unable to respond to its better search results and presentation.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.jasonkoepke.com/2008/07/31/search-index-as-the-web-alternative-conceptualizations-of-the-internet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MySpace.com Backlash</title>
		<link>http://blog.jasonkoepke.com/2008/07/13/myspacecom-backlash/</link>
		<comments>http://blog.jasonkoepke.com/2008/07/13/myspacecom-backlash/#comments</comments>
		<pubDate>Wed, 01 Mar 2006 12:47:01 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Finance/Economics]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[CNBC]]></category>
		<category><![CDATA[KP]]></category>
		<category><![CDATA[MySpace]]></category>
		<category><![CDATA[News Corp]]></category>
		<category><![CDATA[Wired]]></category>

		<guid isPermaLink="false">http://jkoepke.noughitalmedia.com/blog/?p=74</guid>
		<description><![CDATA[I meant to post a note about the backlash against MySpace.com, which I have written about before, in early February but I forgot. Wired, however, has not, and they include an article about the backlash and a guide for parents. While in Orlando, I heard on CNBC that MySpace.com subscriber growth was 165,000+ per month, [...]]]></description>
			<content:encoded><![CDATA[<p>I meant to post a note about the backlash against MySpace.com, which I have written about <a href="http://jkoepke.noughitalmedia.com/blog/index.php?s=myspace">before</a>, in early February but I forgot. <em>Wired</em>, however, has not, and they include an article about <a href="http://www.wired.com/news/politics/1,70254-0.html">the backlash</a> and a <a href="http://www.wired.com/news/technology/1,70287-0.html">guide for parents</a>.</p>
<p>While in Orlando, I heard on <em>CNBC</em> that MySpace.com subscriber growth was 165,000+ per month, and growing significantly. I am defintely bullish on MySpace.com, but I have not seen &#8220;active account&#8221; numbers reported. For every new band that is created, who knows how many break up, die, or some other way go inactive. And with non-music people joining MySpace.com, how often is everyone active? Inactivity will probably increase, as the buzz dies around the community; how does this impact growth numbers, account numbers, and News Corp&#8217;s bottom line?</p>
<p>The same <i>CNBC</i> report, as well as reports elsewhere, began noting parental concerns of the social networking community. While I suspect it is probably one parent in the Midwest who is concerned, the backlash is interesting in that it represent a shift from MySpace.com being on the edge of US culture to being having a more central position; after all, if parents and the mainstream media know about it and report on Web site regularly, it must be well known.</p>
<p>Another sign of MySpace.com&#8217;s significance appeared as part of a conversation I had with a friend (KP). He mentioned that, through MySpace.com, he had re-established contact with a friend from a long time ago. That friend now lives in the same city/town/area I do. I mentioned that he should pass on my e-mail address, as there aren&#8217;t many young people in the area, and it would be nice to have someone with whom to grab coffee. He told me my best bet would be to create a MySpace.com account, because using its IM features comes off as less weird/stalky then passing a phone number <i>or e-mail address.</i> Reminds me of the <a href="http://jkoepke.noughitalmedia.com/blog/?p=26">comment about Korea&#8217;s equivalent to MySpace.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jasonkoepke.com/2008/07/13/myspacecom-backlash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unintentionally 1337 License Plate</title>
		<link>http://blog.jasonkoepke.com/2008/05/21/unintentionally-1337-license-plate/</link>
		<comments>http://blog.jasonkoepke.com/2008/05/21/unintentionally-1337-license-plate/#comments</comments>
		<pubDate>Wed, 21 May 2008 15:26:12 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[license plate]]></category>
		<category><![CDATA[ZS]]></category>

		<guid isPermaLink="false">http://blog.jasonkoepke.com/?p=304</guid>
		<description><![CDATA[A friend of ZS&#8217;s who I recently met just bought a car and was issued the license plate &#8220;404 WTF&#8221;. I love it!]]></description>
			<content:encoded><![CDATA[<p>A friend of ZS&#8217;s who I recently met just bought a car and was issued the license plate &#8220;404 WTF&#8221;. I love it!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jasonkoepke.com/2008/05/21/unintentionally-1337-license-plate/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.502 seconds -->
