<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
>

<channel>
	<title>Nerd Culture</title>
	<atom:link href="http://nerdculture.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://nerdculture.org</link>
	<description>Cutting through the hype.</description>
	<lastBuildDate>Fri, 03 Aug 2012 17:26:25 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.9.40</generator>
<!-- podcast_generator="Blubrry PowerPress/5.0.2" mode="advanced" -->
	<itunes:summary>Cutting through the hype.</itunes:summary>
	<itunes:author>Nerd Culture</itunes:author>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://nerdculture.org/wp-content/plugins/powerpress/itunes_default.jpg" />
	<itunes:subtitle>Cutting through the hype.</itunes:subtitle>
	<image>
		<title>Nerd Culture</title>
		<url>http://nerdculture.org/wp-content/plugins/powerpress/rss_default.jpg</url>
		<link>http://nerdculture.org</link>
	</image>
	<item>
		<title>How To: Install Current FFmpeg and FFmpeg-PHP in CentOS/RHEL with x264, Xvid, MP3, AAC and more!</title>
		<link>http://nerdculture.org/2009/09/28/how-to-install-ffmpeg-and-ffmpeg-php-in-centosrhel-with-x264-xvid-and-mp3-support/</link>
		<comments>http://nerdculture.org/2009/09/28/how-to-install-ffmpeg-and-ffmpeg-php-in-centosrhel-with-x264-xvid-and-mp3-support/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 04:11:44 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[aac]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[ffmpeg-php]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[red hat]]></category>
		<category><![CDATA[rhel]]></category>
		<category><![CDATA[x264]]></category>
		<category><![CDATA[XviD]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/?p=1392</guid>
		<description><![CDATA[First of all, I'm going to assume you already have httpd and php installed. If you don't have them already you should install them now. I recommend <a href="http://www.jasonlitka.com/yum-repository/">Jason Litka's Yum Repository</a>.

This guide is written with bash comments, so the whole text block below can be copied and pasted into an install.sh file if you'd rather not go through step by step. I wouldn't recommend it though, as something could always go wrong, and it would be rather challenging hunting down the problem in that massive wall of output lines!]]></description>
				<content:encoded><![CDATA[<p>First of all, I&#8217;m going to assume you already have httpd and php installed. If you don&#8217;t have them already you should install them now. I recommend <a href="http://www.jasonlitka.com/yum-repository/">Jason Litka&#8217;s Yum Repository</a>.</p>
<p>This guide is written with bash comments, so the whole text block below can be copied and pasted into an install.sh file if you&#8217;d rather not go through step by step. I wouldn&#8217;t recommend it though, as something could always go wrong, and it could be challenging hunting down the problem in that massive wall of output lines!</p>
<pre class="prettyprint">#!/bin/bash
# Mplayer Codecs
# Switch to working directory
cd /usr/local/src

# Download the codec files needed 
wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-amd64-20071007.tar.bz2

# Extract the codec files 
bunzip2 essential-amd64-20071007.tar.bz2; tar xvf essential-amd64-20071007.tar

# Create a directory for the codecs &#038; import them 
mkdir /usr/local/lib/codecs/ 
mv essential-amd64-20071007/* /usr/local/lib/codecs/ 
chmod -R 755 /usr/local/lib/codecs

# FLVTool2
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://rubyforge.org/frs/download.php/17497/flvtool2-1.0.6.tgz

# Extract the Source files 
tar zxvf flvtool2-1.0.6.tgz 

# Compile
cd /usr/local/src/flvtool2-1.0.6
ruby setup.rb config 
ruby setup.rb setup 
ruby setup.rb install

# LAME MP3 Encoder
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.sourceforge.net/lame/lame-398-2.tar.gz

# Extract the Source files 
tar zxvf lame-398-2.tar.gz 

# Compile
cd /usr/local/src/lame-398-2
./configure 
make &#038;&#038; make install

# libOGG
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.xiph.org/releases/ogg/libogg-1.1.4rc1.tar.gz

# Extract the Source files 
tar zxvf libogg-1.1.4rc1.tar.gz 

# Compile
cd /usr/local/src/libogg-1.1.4rc1
./configure 
make &#038;&#038; make install

# libVorbis
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.3.tar.gz

# Extract the Source files 
tar zxvf libvorbis-1.2.3.tar.gz

# Compile
cd /usr/local/src/libvorbis-1.2.3
./configure 
make &#038;&#038; make install

# liba52
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz

# Extract the Source files 
tar zxvf a52dec-0.7.4.tar.gz

# Compile
cd /usr/local/src/a52dec-0.7.4
./configure --enable-shared=PKGS
make &#038;&#038; make install

# libFAAD2
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.sourceforge.net/faac/faad2-2.7.tar.gz

# Extract the Source files 
tar zxvf faad2-2.7.tar.gz

# Compile
cd /usr/local/src/faad2-2.7
autoreconf -vif
./configure --disable-drm --disable-mpeg4ip
make &#038;&#038; make install

# libFAAC
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.sourceforge.net/faac/faac-1.28.tar.gz

# Extract the Source files 
tar zxvf faac-1.28.tar.gz

# Compile
cd /usr/local/src/faac-1.28
./bootstrap
./configure --disable-mp4v2
make &#038;&#038; make install

# YASM (required by x264)
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://www.tortall.net/projects/yasm/releases/yasm-0.7.0.tar.gz

# Extract the Source files 
tar zxvf yasm-0.7.0.tar.gz

# Compile
cd /usr/local/src/yasm-0.7.0
./configure
make &#038;&#038; make install

# x264 daily snapshot
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20090901-2245.tar.bz2

# Extract the Source files 
bzip2 -d x264-snapshot-20090901-2245.tar.bz2; tar xvf x264-snapshot-20090901-2245.tar

# Compile
cd /usr/local/src/x264-snapshot-20090901-2245
./configure --enable-mp4-output --enable-shared --enable-pthread
make &#038;&#038; make install

# XVID
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.xvid.org/downloads/xvidcore-1.2.2.tar.gz

# Extract the Source files 
tar zxvf xvidcore-1.2.2.tar.gz

# Compile
cd /usr/local/src/xvidcore/build/generic
./configure
make &#038;&#038; make install

# Install SVN/Ruby 
yum install -y subversion ruby ncurses-devel

# Fix few Lib issues for next steps 
echo "/usr/local/lib" >> /etc/ld.so.conf 
ldconfig -v

# MPlayer Core
# Switch to working directory
cd /usr/local/src

# Get the latest version from the subversion 
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer

# Compile
cd /usr/local/src/mplayer 
./configure 
make &#038;&#038; make install

# FFMPEG 
# Switch to working directory
cd /usr/local/src

# Get the latest version from the subversion 
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg 

# Compile
cd /usr/local/src/ffmpeg 
./configure --enable-gpl  --enable-postproc --enable-nonfree --enable-postproc --enable-libfaad --enable-avfilter --enable-pthreads --enable-libxvid --enable-libx264 --enable-libmp3lame --enable-libfaac --disable-ffserver --disable-ffplay --enable-shared
echo '#define HAVE_LRINTF 1' >> config.h 
make &#038;&#038; make install

# Finalize the codec setups 
ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50 
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51 
ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49 
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0 
ln -s /usr/local/lib/libavformat.so.51 /usr/lib/libavformat.so.51

# Few tasks before compiling FFMPEG-PHP 
yum install -y automake autoconf libtool

# FFmpeg-php
# Switch to working directory
cd /usr/local/src

# Download the source files needed 
wget http://downloads.sourceforge.net/ffmpeg-php/ffmpeg-php-0.6.0.tbz2

# Extract the Source files 
bunzip2 ffmpeg-php-0.6.0.tbz2; tar xvf ffmpeg-php-0.6.0.tar 

# Compile
cd /usr/local/src/ffmpeg-php-0.6.0 
phpize 
./configure 
make 
make install

# Add FFMPEG-PHP as an extension of PHP 
# Add this line to your php.ini file (Check the correct path of php.ini) 
echo "extension=ffmpeg.so" >> /etc/php.ini

# Restart Apache to load FFMPEG-PHP 
service httpd restart

# Cleanup
cd ..
rm -f -r ./ffmpeg-php</pre>
<p>Wow! That was long&#8230;glad that&#8217;s over. Anyway, you should check and make sure it worked by running phpinfo() in php and searching for a block called &#8216;ffmpeg&#8217;. If anyone has any suggestions for improvements to the script or other encoders I should add let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2009/09/28/how-to-install-ffmpeg-and-ffmpeg-php-in-centosrhel-with-x264-xvid-and-mp3-support/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Tiled Maps for XNA &#8211; Full support for the Tiled Map XML specification!</title>
		<link>http://nerdculture.org/2009/07/14/tiled-maps-for-xna-full-support-for-the-tiled-map-xml-specification/</link>
		<comments>http://nerdculture.org/2009/07/14/tiled-maps-for-xna-full-support-for-the-tiled-map-xml-specification/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 00:41:38 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Video Games]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/?p=1383</guid>
		<description><![CDATA[So yesterday I came across a very basic loader for Tiled Maps (*.tmx) made with the Tiled Map Editor. It only supported the basics--Tileset loading and Layer rendering--so I took it upon myself to complete the loader by adding support for the rest of the features that were left out.]]></description>
				<content:encoded><![CDATA[<p>UPDATE: There is a newer, better version from <a href="http://gamedev.sleptlate.org/blog/277-rotation-and-mirroring-flipping-with-tiled-map-editor-and-xna/">here</a>. Thanks, Zach Musgrave!</p>
<p>So yesterday I came across a <a href="http://www.luminance.org/code/2009/06/17/tiled-map-loader-for-xna">very basic loader for Tiled Maps (*.tmx)</a> made with the <a href="http://mapeditor.org/index.html">Tiled Map Editor</a>. It only supported the basics&#8211;Tileset loading and Layer rendering&#8211;so I took it upon myself to complete the loader by adding support for the rest of the features that were left out;</p>
<p>-added ProhibitDtd = false, so you don&#8217;t need to remove the doctype line after each time you edit the map.<br />
-changed everything to use SortedLists for named referencing&#8211;so much easier<br />
-added objectgroups<br />
-added movable and resizable objects<br />
-added object images<br />
-added meta property support to maps, layers, object groups and objects<br />
-added support for non-binary encoded layer data<br />
-added layer and object group transparency</p>
<p>I created a simple demo to show off some of the features. You should see a partially transparent object with a resized image of Ness (Earthbound) on top of a partially transparent layer of grass with the words &#8220;Tile Maps Rule&#8221; written in rock with a pulsating opacity. Use the arrow keys to move Ness around. All objects and object groups can have their X and Y coordinates set dynamically, so you can do cool stuff like parallax clouds drifting overhead.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/07/Tiled1.rar">Download the Tiled Maps Loader</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2009/07/14/tiled-maps-for-xna-full-support-for-the-tiled-map-xml-specification/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Sui Generis &#8211; First two album released as Creative Commons, third on the way!</title>
		<link>http://nerdculture.org/2009/05/14/sui-generis-first-two-album-released-as-creative-commons-third-on-the-way/</link>
		<comments>http://nerdculture.org/2009/05/14/sui-generis-first-two-album-released-as-creative-commons-third-on-the-way/#comments</comments>
		<pubDate>Thu, 14 May 2009 22:21:56 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/?p=921</guid>
		<description><![CDATA[Those that have read the "Whos' Stephen?" page would know that apart from blogging about anime and video games, I also like to write electronic music. Well, today my first two albums, withStyle and CheCheChe, are being released under the Creative Commons license! Feel free to send the mp3s to anyone you like (or even don't like?) or use them in YouTube videos or whatever else you might want to use them for. It's all good, so long as it's not commercial. If you want to use any of this music commercially let me know, and we can probably work soemthing out. My third album is also nearing completion and will be released here under a Creative Commons license when it's ready.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/03/albums.jpg" rel="lightbox[921]"><img class="alignnone size-medium wp-image-922" title="albums" src="http://www.nerdculture.org/wp-content/uploads/2009/03/albums-600x300.jpg" alt="albums" width="600" height="300" /></a></p>
<p>Those that have read the <a href="http://www.nerdculture.org/about/">&#8220;Whos&#8217; Stephen?&#8221;</a> page would know that apart from blogging about anime and video games, I also like to write electronic music. Well, today my first two albums, withStyle and CheCheChe, are being released under the Creative Commons license! Feel free to send the mp3s to anyone you like (or even don&#8217;t like?) or use them in YouTube videos or whatever else you might want to use them for. It&#8217;s all good, so long as it&#8217;s not commercial. If you want to use any of this music commercially let me know, and we can probably work something out. My third album is also nearing completion and will be released here under a Creative Commons license when it&#8217;s ready.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/04/withstyle.rar">withStyle</a></p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/04/checheche.rar">CheCheChe</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2009/05/14/sui-generis-first-two-album-released-as-creative-commons-third-on-the-way/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sakanakushon &#8211; Like a mellow Asian Kung-Fu Generation with synthesizers!</title>
		<link>http://nerdculture.org/2009/04/25/sakanakushon-like-a-mellow-asian-kung-fu-generation-with-synthesizers/</link>
		<comments>http://nerdculture.org/2009/04/25/sakanakushon-like-a-mellow-asian-kung-fu-generation-with-synthesizers/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 05:59:44 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Asian Kung-Fu Generation]]></category>
		<category><![CDATA[JPop]]></category>
		<category><![CDATA[Sakanakushon]]></category>
		<category><![CDATA[Synthesizer]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/?p=927</guid>
		<description><![CDATA[I found this band called Sakanakushon on the internet not too long ago and thought their music was pretty catchy, so I wanted to share it with all of you. I have several video to share with you, so I hope you enjoy them all--I certainly did!]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/04/folder1.jpg" rel="lightbox[927]"><img class="alignnone size-medium wp-image-926" title="folder1" src="http://www.nerdculture.org/wp-content/uploads/2009/04/folder1-600x605.jpg" alt="folder1" width="600" height="605" /></a></p>
<p>I found this band called Sakanakushon on the internet not too long ago and thought their music was pretty catchy, so I wanted to share it with all of you. I have several videos to share with you, so I hope you enjoy them all&#8211;I certainly did!</p>
<p>I&#8217;ve actually been trying to post this for about a month, but I&#8217;ve had some serious problems with my web server and uploading files, so I&#8217;ve been unable to actually put in any content other than text, and that&#8217;s just no fun, right? As you can see though those issues are all sorted out, so back to posting awesome stuff! I have a bunch of other posts half written and needing images and such, so I&#8217;ll try and post like crazy for the next while. I&#8217;d really like to be more active on here, and I have a decent bit of free time right now, so I will try and be as active as I can. Hopefully this free time lasts. <img src="http://nerdculture.org/wp-includes/images/smilies/icon_biggrin.gif" alt=":D" class="wp-smiley" /> </p>
<h1><a href="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-native-dancer.mp4">Native Dancer</a></h1>
<p><object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="600" height="100" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"><param name="scale" value="tofit" /><param name="src" value="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-native-dancer.mp4" /><embed type="video/quicktime" width="600" height="466" src="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-native-dancer.mp4" scale="tofit" autoplay="false"></embed></object></p>
<h1><a href="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-sample.mp4">Sample</a></h1>
<p><object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="600" height="466" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"><param name="scale" value="tofit" /><param name="src" value="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-sample.mp4" /><embed type="video/quicktime" width="600" height="466" src="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-sample.mp4" scale="tofit" autoplay="false"></embed></object></p>
<h1><a href="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-center-tray.mp4">Center Tray</a></h1>
<p><object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="600" height="466" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"><param name="scale" value="tofit" /><param name="src" value="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-center-tray.mp4" /><embed type="video/quicktime" width="600" height="466" src="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-center-tray.mp4" scale="tofit" autoplay="false"></embed></object></p>
<h1><a href="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-word.mp4">Word</a></h1>
<p><object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="600" height="466" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"><param name="scale" value="tofit" /><param name="src" value="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-word.mp4" /><embed type="video/quicktime" width="600" height="466" src="http://www.nerdculture.org/wp-content/uploads/2009/04/sakanakushon-word.mp4" scale="tofit" autoplay="false"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2009/04/25/sakanakushon-like-a-mellow-asian-kung-fu-generation-with-synthesizers/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Sauce Plz! &#8211; Wikipedia for files.</title>
		<link>http://nerdculture.org/2009/02/14/sauce-plz-wikipedia-for-files/</link>
		<comments>http://nerdculture.org/2009/02/14/sauce-plz-wikipedia-for-files/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 08:38:40 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[meta data]]></category>
		<category><![CDATA[meta tags]]></category>
		<category><![CDATA[sauce plz]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/2009/02/14/sauce-plz-wikipedia-for-files/</guid>
		<description><![CDATA[Have you been wondering what the small bit of inactivity lately was about? Well, here's my answer--or part of it anyway--my new website project; sauceplz.org.

It is basically wikipedia for files. You load a file and will be presented with a page unique to that file where information about the file can be listed. You could, for example, load a page from a manga and add tags for the artist, manga name and page number.

That's part of the inactivity, I'll try and have some more posts up soon, but there's a few other, as yet, unannounced projects I'm working. Hopefully I'll have more to say about that soon.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/02/1.jpg" rel="lightbox[918]"><img class="alignnone size-medium wp-image-917" title="1" src="http://www.nerdculture.org/wp-content/uploads/2009/02/1-600x329.jpg" alt="1" width="600" height="329" /></a></p>
<p>Have you been wondering what the small bit of inactivity lately was about? Well, here&#8217;s my answer&#8211;or part of it anyway&#8211;my new website project; <a href="http://sauceplz.org">sauceplz.org</a>.</p>
<p>It is basically wikipedia for files. You load a file and will be presented with a page unique to that file where information about the file can be listed. You could, for example, load a page from a manga and add tags for the artist, manga name and page number.</p>
<p>That&#8217;s part of the inactivity, I&#8217;ll try and have some more posts up soon, but there&#8217;s a few other, as yet, unannounced projects I&#8217;m working. Hopefully I&#8217;ll have more to say about that soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2009/02/14/sauce-plz-wikipedia-for-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>House Rulez &#8211; Catchy Korean Funk/House Pop</title>
		<link>http://nerdculture.org/2009/01/22/house-rulez-catchy-korean-funkhouse-pop/</link>
		<comments>http://nerdculture.org/2009/01/22/house-rulez-catchy-korean-funkhouse-pop/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 04:00:23 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Funk]]></category>
		<category><![CDATA[House]]></category>
		<category><![CDATA[House Rulez]]></category>
		<category><![CDATA[Korean]]></category>
		<category><![CDATA[Mojito]]></category>
		<category><![CDATA[Star House City]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/?p=913</guid>
		<description><![CDATA[I found a folder entitled "Star House City" sitting on an FTP server the other day and decided to download it just because the name sounded interesting. Turns out that was a good idea. Star House City is the newest album from Korean House Superstars; House Rulez.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/01/houserulez.jpg" rel="lightbox[913]"><img class="alignnone size-medium wp-image-915" title="houserulez" src="http://www.nerdculture.org/wp-content/uploads/2009/01/houserulez-600x450.jpg" alt="houserulez" width="600" height="450" /></a></p>
<p>I found a folder entitled &#8220;Star House City&#8221; sitting on an FTP server the other day and decided to download it just because the name sounded interesting. Turns out that was a good idea. Star House City is the newest album from Korean House Superstars; House Rulez.</p>
<p>The whole album is just fantastic and I had to have every MP3 I could find of theirs. It&#8217;s been really hard trying to find stuff from their previous album&#8230;I found 10 of the 15 tracks and all of them are labelled wrong, so I can&#8217;t even tell what track numbers they are supposed to be. &gt;.&gt;</p>
<p>Check out video for their song &#8220;Do It!&#8221; below. It&#8217;s really catchy, just like all the rest of their songs.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2009/01/22/house-rulez-catchy-korean-funkhouse-pop/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
<enclosure url="http://www.nerdculture.org/wp-content/uploads/2009/01/video.mp4" length="18303225" type="video/mpeg" />
			<itunes:keywords>Funk,House,House Rulez,Korean,Mojito,Star House City</itunes:keywords>
	<itunes:subtitle>I found a folder entitled &quot;Star House City&quot; sitting on an FTP server the other day and decided to download it just because the name sounded interesting. Turns out that was a good idea. Star House City is the newest album from Korean House Superstars; H...</itunes:subtitle>
		<itunes:summary>(http://www.nerdculture.org/wp-content/uploads/2009/01/houserulez-600x450.jpg)

I found a folder entitled &quot;Star House City&quot; sitting on an FTP server the other day and decided to download it just because the name sounded interesting. Turns out that was a good idea. Star House City is the newest album from Korean House Superstars; House Rulez.

The whole album is just fantastic and I had to have every MP3 I could find of theirs. It&#039;s been really hard trying to find stuff from their previous album...I found 10 of the 15 tracks and all of them are labelled wrong, so I can&#039;t even tell what track numbers they are supposed to be. &gt;.&gt;

Check out video for their song &quot;Do It!&quot; below. It&#039;s really catchy, just like all the rest of their songs.</itunes:summary>
		<itunes:author>Nerd Culture</itunes:author>
		<itunes:explicit>no</itunes:explicit>
	</item>
		<item>
		<title>Akikan &#8211; A Soda Can Harem.</title>
		<link>http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/</link>
		<comments>http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 09:00:43 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/?p=887</guid>
		<description><![CDATA[Ever wondered what it would be like if you were about to drink a can of melon soda when suddenly it transformed into a cute, young girl? Yeah, me neither--but this bizarre concept turned out to be a win, in my opinion. It sprinkles a fresh twist on the harem genre with a main character that is...well...not some wussy, girl-fearing loner. Instead he is a mountain of sarcasm, topped with a thick layer of innuendo and narcissism.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203313.jpg" rel="lightbox[887]"><img class="alignnone size-medium wp-image-902" title="snapshot20090103203313" src="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203313-600x337.jpg" alt="snapshot20090103203313" width="600" height="337" /></a></p>
<p>Ever wondered what it would be like if you were about to drink a can of melon soda when suddenly it transformed into a cute, young girl? Yeah, me neither&#8211;but this bizarre concept turned out to be a win, in my opinion. It sprinkles a fresh twist on the harem genre with a main character that is&#8230;well&#8230;not some wussy, girl-fearing loner. Instead he is a mountain of sarcasm, topped with a thick layer of innuendo and narcissism.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103202947.jpg" rel="lightbox[887]"><img class="alignnone size-medium wp-image-889" title="snapshot20090103202947" src="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103202947-600x337.jpg" alt="snapshot20090103202947" width="600" height="337" /></a></p>
<p>Kakeru Daichi is a 16-year-old high school student and collector of aluminum soda cans&#8211;he has also been, for all 16 years, single. While on his way home he stops at a vending machine to purchase a melon soda, but he does not anticipate the coming disaster that would unfold. He gets home, has a quick shower and then takes a refreshing sip of his newly purchased lemon soda&#8230;only he finishes that sip with a cute blond girl locking lips with him. The girl, known as an Akikan, is glad to have finally transformed into her human form, however; she&#8217;s not so glad to find Kakeru lacking any form of clothing short of a towel over his shoulders. Needless to say she freaks and sends him flying with her strange carbonated beverage powers.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203341.jpg" rel="lightbox[887]"><img class="alignnone size-medium wp-image-903" title="snapshot20090103203341" src="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203341-600x337.jpg" alt="snapshot20090103203341" width="600" height="337" /></a></p>
<p>As it turns out, this is not an entirely unusual happening. Soda cans turning into girls have been relatively prevalent lately and are under investigation by the Department of Economy. Leading the investigation is Hidehiko Otoya, a government official who also happens to be flaming gay. He appears at Kakeru&#8217;s doorstep with his assistant and starts feeling him up before he even introduces himself. Kakeru is somewhere between panic and shock at this point, so the assistant steps in and tames the overly foward Hidehiko and drags him out the door. Kakeru leaps from disaster to disaster, each more disasterous than the last and all the while still pantsless.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203157.jpg" rel="lightbox[887]"><img class="alignnone size-medium wp-image-895" title="snapshot20090103203157" src="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203157-600x337.jpg" alt="snapshot20090103203157" width="600" height="337" /></a></p>
<p>The premise is certainly an odd one, but the writers did an excellent job of shaping it into something hilarious. The comedy in the show is very blunt and always tries to push the boundary just a bit further. I&#8217;m really looking forward to more episodes of this show and is definitely at the top of my watch list so far from this season.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203230.jpg" rel="lightbox[887]"><img class="alignnone size-medium wp-image-899" title="snapshot20090103203230" src="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203230-600x337.jpg" alt="snapshot20090103203230" width="600" height="337" /></a></p>
<p>The music provided a perfect accent to the quirky hilarity that had me laughing all throughout the show and at the same time was quite catchy. Many people underestimate the importance of audio in video medias&#8211;try playing a Tales game on mute and you&#8217;ll understand what I mean. Audio is a very important aspect in the creation of a good show and this one handled it brilliantly. Not only was the music great, the voices matched perfectly&#8211;it&#8217;s hard to capture so much sarcasm as Kakeru&#8217;s character, but they pulled it off flawlessly.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203026.jpg" rel="lightbox[887]"><img class="alignnone size-medium wp-image-890" title="snapshot20090103203026" src="http://www.nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203026-600x337.jpg" alt="snapshot20090103203026" width="600" height="337" /></a></p>
<p>I highly recommend anyone that likes a good laugh have a look at this show because it is absolutely brillient. Just don&#8217;t watch it too late at night or you might get some angry phone calls from your neighbors. <img src="http://nerdculture.org/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
<h2>Gallery</h2>

<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103202917/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103202917-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103202917" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103202947/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103202947-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103202947" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203058/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203058-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203058" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203341/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203341-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203341" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203026/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203026-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203026" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203040/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203040-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203040" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203144/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203144-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203144" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203157/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203157-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203157" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203215/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203215-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203215" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203230/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203230-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203230" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203256/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203256-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203256" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203313/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203313-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203313" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203406/'><img width="267" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203406-280x157.jpg" class="attachment-thumbnail" alt="snapshot20090103203406" /></a>
<a href='http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/snapshot20090103203447/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2009/01/snapshot20090103203447-280x150.jpg" class="attachment-thumbnail" alt="snapshot20090103203447" /></a>

]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2009/01/04/akikan-a-soda-can-harem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FofR But Better &#8211; A modded skin for Foobar2000</title>
		<link>http://nerdculture.org/2009/01/03/fofr-but-better-a-modded-skin-for-foobar2000/</link>
		<comments>http://nerdculture.org/2009/01/03/fofr-but-better-a-modded-skin-for-foobar2000/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 08:08:14 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[FofR]]></category>
		<category><![CDATA[Foobar2000]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/?p=884</guid>
		<description><![CDATA[I made my own personal mod of FofR, a really great skin for Foobar2000, the best audio player software out there.  I liked the design of the original, but fond the fonts were a bit to small at 1920x1080 resolution so I changed them...then while I was already digging through the code I added a little button to download album art for the current playing song and fixed some minor graphical glitches that FofR has when viewed at such high resolutions. I might make some more changes, but I'm not sure what else I'd want to do with it yet, so here it is; version 0.1 of FofR But Better.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2009/01/fofr-but-better.jpg" rel="lightbox[884]"><img class="alignnone size-medium wp-image-885" title="fofr-but-better" src="http://www.nerdculture.org/wp-content/uploads/2009/01/fofr-but-better-600x317.jpg" alt="fofr-but-better" width="600" height="317" /></a></p>
<p>I made my own personal mod of FofR, a really great skin for Foobar2000, the best audio player software out there.Â  I liked the design of the original, but found the fonts were a bit to small at 1920&#215;1080 resolution so I changed them&#8230;then while I was already digging through the code I added a little button to download album art for the current playing song and fixed some minor graphical glitches that FofR has when viewed at such high resolutions. I might make some more changes, but I&#8217;m not sure what else I&#8217;d want to do with it yet, so here it is; version 0.1 of <a href="http://www.nerdculture.org/wp-content/uploads/2009/01/fofr-but-better-v01.zip">FofR But Better</a>.</p>
<p>I&#8217;d recommend using version 0.9.5.2 of Foobar2000, as the newer versions broke much of the PanelsUI engine used to make this skin. You can find it <a href="http://www.filehippo.com/download_foobar2000/4051/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2009/01/03/fofr-but-better-a-modded-skin-for-foobar2000/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Merry Christmas from Nerd Culture!</title>
		<link>http://nerdculture.org/2008/12/25/merry-christmas-from-nerd-culture/</link>
		<comments>http://nerdculture.org/2008/12/25/merry-christmas-from-nerd-culture/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 08:27:20 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Time Machine]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[happy holidays]]></category>
		<category><![CDATA[merry christmas]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/2008/12/25/merry-christmass-from-nerd-culture/</guid>
		<description><![CDATA[Merry Christmas, Happy Holidays and enjoy whatever other holidays you enjoy around now! More on the characters in the picture in coming days--it's a great show called Toradora, for those pre-emptive enough to have a look before I write my review.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/12/merrychristmas.jpg" rel="lightbox[775]"><img class="alignnone size-full wp-image-772" title="merrychristmas" src="http://www.nerdculture.org/wp-content/uploads/2008/12/merrychristmas.jpg" alt="merrychristmas" /></a></p>
<p>Merry Christmas, Happy Holidays and enjoy whatever other holidays you enjoy around now! More on the characters in the picture in coming days&#8211;it&#8217;s a great show called Toradora, for those pre-emptive enough to have a look before I write my review.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2008/12/25/merry-christmas-from-nerd-culture/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tekkonkinkreet &#8211; A fresh new experience in anime.</title>
		<link>http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/</link>
		<comments>http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 06:23:16 +0000</pubDate>
		<dc:creator><![CDATA[Stephen Belanger]]></dc:creator>
				<category><![CDATA[Anime]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Michael Arias]]></category>
		<category><![CDATA[Plaid]]></category>
		<category><![CDATA[Studio 4Â°C]]></category>
		<category><![CDATA[Tekkon Kinkreet]]></category>
		<category><![CDATA[Tekkonkinkreet]]></category>
		<category><![CDATA[The Animatrix]]></category>

		<guid isPermaLink="false">http://www.nerdculture.org/?p=386</guid>
		<description><![CDATA[Back to posting at last! I'm going to cover a bunch of great stuff that I've seen in my absence, so I have a bit of catching up to do, but I think you'll appreciate the great shows I watched and fun games I played amidst my disappearance. >.>

First up is Tekkonkinkreet. From the same people that brought us The Animatrix (oddly enough), Studio 4Â°C brings us this new animated wonder. It's unique style and tremendously detailed animation net this movie countless awards, and it certainly deserves them. Following the lives of the two orphans Kuro and Shiro, or Black and White in Eglish, the story dips in and out of the underlying corruption of Treasure Town; a bustling city puppeteered by Yakuza.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214752.jpg" rel="lightbox[386]"></a><a href="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214902.jpg" rel="lightbox[386]"><img class="alignnone size-medium wp-image-1130" title="th_snapshot20071211214902" src="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214902-600x255.jpg" alt="th_snapshot20071211214902" width="600" height="255" /></a></p>
<p>From the same people that brought us The Animatrix (oddly enough), Studio 4Â°C brings us this new animated wonder. It&#8217;s unique style and tremendously detailed animation net this movie countless awards, and it certainly deserves them. Following the lives of the two orphans Kuro and Shiro, or Black and White in English, the story dips in and out of the underlying corruption of Treasure Town; a bustling city puppeteered by Yakuza.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215212.jpg" rel="lightbox[386]"><img class="alignnone size-medium wp-image-1153" title="th_snapshot20071211215212" src="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215212-600x255.jpg" alt="th_snapshot20071211215212" width="600" height="255" /></a></p>
<p>Kuro and Shiro live on the streets&#8211;comrades in the daily adventures of staying alive. With Yakuza threatening the peace of life in the ever-decaying Treasure Town, the two get wound up in a conflict when a foreign investor seeks Yakuza assistance to build an amusement park at the core of the city. Kuro, being the wildcat of the Treasure Town streets, rushes of to save the city from plunging further into chaos, but Shiro is the only one who can save Kuro from plunging into that same chaos himself.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220020.jpg" rel="lightbox[386]"><img class="alignnone size-medium wp-image-1177" title="th_snapshot20071211220020" src="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220020-600x255.jpg" alt="th_snapshot20071211220020" width="600" height="255" /></a></p>
<p>The art is really quite amazing and is like nothing I have seen before in an animated feature. The art design&#8217;s uniqueness fits well with Studio 4Â°C&#8217;s unconventional story writing, creating a modern masterpiece of animated story-telling. A great degree of detail was put into the backgrounds used in the movie&#8211;the clock tower near the start is a great example of High Definition video put to good use. It&#8217;s quite obvious Studio 4Â°C put a great deal of effort into making sure this movie perfectly matched the vision that director Michael Arias had for the movie.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221501.jpg" rel="lightbox[386]"><img class="alignnone size-medium wp-image-1220" title="th_snapshot20071211221501" src="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221501-600x255.jpg" alt="th_snapshot20071211221501" width="600" height="255" /></a></p>
<p>The soundtrack matched brilliantly and was something very fresh and new for anime. Written by Plaid, a well-known British electronic duo, the soundtrack is beautifully subtle, with emphasis in all the right places. My favorite track being the closing song; White&#8217;s Dream, is minimal and earthy yet a powerful close to this brilliantly unique movie.</p>
<p><a href="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223335.jpg" rel="lightbox[386]"><img class="alignnone size-medium wp-image-1285" title="th_snapshot20071211223335" src="http://www.nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223335-600x255.jpg" alt="th_snapshot20071211223335" width="600" height="255" /></a></p>
<p>If you are into artsy anime, Tekkonkinkreet comes highly recommended from me! It&#8217;s truly a feast for the eyes, the ears and even the mind&#8211;a worthy addition to my budding collection of anime Blu-Rays.
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211214851/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214851-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211214851" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211214902/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214902-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211214902" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211214903/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214903-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211214903" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211214908/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214908-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211214908" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211214913/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214913-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211214913" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211214919/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214919-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211214919" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211214925/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214925-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211214925" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211214931/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214931-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211214931" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211214935/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211214935-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211214935" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215005/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215005-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215005" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215020/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215020-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215020" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215025/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215025-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215025" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215114/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215114-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215114" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215116/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215116-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215116" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215139/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215139-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215139" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215206/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215206-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215206" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215212/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215212-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215212" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215218/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215218-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215218" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215235/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215235-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215235" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215257/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215257-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215257" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215319/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215319-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215319" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215324/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215324-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215324" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215402/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215402-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215402" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215409/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215409-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215409" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215454/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215454-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215454" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215521/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215521-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215521" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215629/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215629-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215629" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215655/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215655-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215655" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215711/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215711-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215711" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215713/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215713-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215713" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215718/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215718-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215718" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215730/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215730-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215730" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215741/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215741-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215741" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211215848/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211215848-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211215848" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220020/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220020-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220020" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220029/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220029-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220029" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220053/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220053-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220053" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220057/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220057-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220057" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220106/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220106-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220106" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220145/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220145-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220145" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220251/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220251-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220251" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220301/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220301-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220301" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220341/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220341-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220341" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220400/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220400-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220400" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220420/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220420-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220420" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220512/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220512-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220512" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220537/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220537-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220537" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220540/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220540-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220540" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220615/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220615-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220615" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220846/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220846-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220846" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220848/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220848-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220848" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220912/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220912-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220912" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211220931/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211220931-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211220931" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221002/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221002-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221002" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221117/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221117-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221117" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221204/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221204-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221204" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221209/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221209-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221209" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221227/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221227-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221227" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221302/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221302-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221302" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221501/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221501-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221501" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221516/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221516-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221516" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221543/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221543-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221543" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221555/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221555-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221555" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221559/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221559-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221559" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221610/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221610-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221610" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221627/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221627-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221627" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221716/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221716-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221716" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221717/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221717-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221717" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221719/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221719-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221719" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221721/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221721-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221721" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221723/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221723-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221723" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221725/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221725-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221725" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221744/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221744-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221744" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221807/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221807-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221807" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221910/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221910-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221910" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211221938/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211221938-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211221938" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222012/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222012-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222012" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222034/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222034-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222034" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222316/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222316-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222316" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222349/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222349-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222349" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222455/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222455-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222455" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222458/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222458-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222458" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222603/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222603-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222603" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222647/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222647-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222647" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222649/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222649-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222649" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222659/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222659-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222659" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222713/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222713-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222713" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222746/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222746-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222746" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222957/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222957-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222957" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211222959/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211222959-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211222959" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223023/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223023-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223023" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223036/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223036-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223036" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223039/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223039-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223039" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223040/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223040-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223040" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223115/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223115-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223115" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223140/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223140-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223140" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223250/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223250-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223250" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223252/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223252-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223252" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223334/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223334-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223334" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223335/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223335-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223335" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223407/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223407-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223407" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223450/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223450-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223450" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223533/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223533-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223533" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223552/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223552-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223552" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223704/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223704-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223704" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223830/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223830-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223830" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223842/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223842-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223842" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223851/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223851-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223851" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223852/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223852-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223852" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223908/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223908-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223908" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211223931/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211223931-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211223931" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211224008/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211224008-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211224008" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211224017/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211224017-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211224017" /></a>
<a href='http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/th_snapshot20071211224203/'><img width="280" height="150" src="http://nerdculture.org/wp-content/uploads/2008/12/th_snapshot20071211224203-280x150.jpg" class="attachment-thumbnail" alt="th_snapshot20071211224203" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdculture.org/2008/12/15/tekkonkinkreet-a-fresh-new-experience-in-anime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
