<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>j + edot</title>
	<atom:link href="http://jedot.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jedot.wordpress.com</link>
	<description>hahaha lollollol xDxDxD</description>
	<lastBuildDate>Tue, 08 Nov 2011 07:38:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jedot.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/111ae16030121b7e09f323b4df89783b?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>j + edot</title>
		<link>http://jedot.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jedot.wordpress.com/osd.xml" title="j + edot" />
	<atom:link rel='hub' href='http://jedot.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing WordPress using XAMPP on ubuntu 10.04</title>
		<link>http://jedot.wordpress.com/2010/10/11/installing-wordpress-using-xampp-on-ubuntu-10-04/</link>
		<comments>http://jedot.wordpress.com/2010/10/11/installing-wordpress-using-xampp-on-ubuntu-10-04/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 15:38:54 +0000</pubDate>
		<dc:creator>jedot</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[lampp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://jedot.wordpress.com/?p=71</guid>
		<description><![CDATA[So lately I was running ubuntu 10.04 (Lucid Lynx) on Windows 7 32-bit using VirtualBox. Oh, if you&#8217;re new to ubuntu or want to start using ubuntu linux, there is a new version of ubuntu 10.10 that was about released &#8230; <a href="http://jedot.wordpress.com/2010/10/11/installing-wordpress-using-xampp-on-ubuntu-10-04/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=71&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So lately I was running ubuntu 10.04 (Lucid Lynx) on Windows 7 32-bit using <a href="http://www.virtualbox.org/wiki/Downloads">VirtualBox</a>. Oh, if you&#8217;re new to ubuntu or want to start using ubuntu linux, there is a new version of <a href="http://www.ubuntu.com/desktop/get-ubuntu/download">ubuntu 10.10</a> that was about released yesterday, and I want it now. Here is the story, I want to try to create a wordpress site on my local computer, so I need to install apache web server and mysql first. There are several apache and mysql software bundles, I choose lampp for linux (or xampp for windows I was using in the past). What I need is to get lampp on <a href="http://www.apachefriends.org/en/xampp-linux.html">http://www.apachefriends.org/en/xampp-linux.html</a> and the latest stable release of WordPress on <a href="http://wordpress.org/download/">http://wordpress.org/download/</a>.</p>
<p>After all needed files have been downloaded, next is to install. First install lampp as instructed from the site on /opt/ directory, So I just run a command in a terminal using:</p>
<pre>sudo tar xvfz xampp-linux-1.7.3a.tar.gz -C /opt</pre>
<p>I was asked to type in a password.<br />
<em>Note: there is no &#8216;root&#8217; user on ubuntu, so make sure if you are using user that have enough privilege to do this.</em></p>
<p>Next is to extract wordpress to current directory using command:</p>
<pre>sudo tar xvfz latest.tar.gz</pre>
<p>Then move the folder to htdocs with:</p>
<pre>sudo mv wordpress /opt/lampp/htdocs</pre>
<p>Now let&#8217;s get lampp started!</p>
<pre>sudo /opt/lampp/lampp start</pre>
<p>wait until &#8220;XAMPP for Linux started.&#8221; message is appeared. If you doing it right try open http://localhost/ , an xampp language selection page will be showed.</p>
<p>Okay now to install wordpress, but before that I suggest you to create a database for wordpress in mysql. In a browser go to url:</p>
<pre>http://localhost/phpmyadmin</pre>
<p>I named it &#8216;wordpress&#8217;, then go to:</p>
<pre>http://localhost/wordpress</pre>
<p>just follow the instructions&#8230;<br />
in mysql user and password, type &#8216;root&#8217; as user and leave password blank.</p>
<p>but oops, there was a problem:</p>
<blockquote><p>Sorry, but I can&#8217;t write the wp-config.php file.</p>
<p>You can create the wp-config.php manually and paste the following text into it.</p></blockquote>
<p>Don&#8217;t worry, we will fix it in time. Just navigate back to previous page by clicking back button in browser or Alt+Left-Arrow.</p>
<p>So we need to change wordpress folder permission with:</p>
<pre>sudo chmod 777 -R /opt/lampp/htdocs/wordpress</pre>
<p>then..</p>
<blockquote><p>All right sparky! You&#8217;ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to… RUN THE INSTALL</p></blockquote>
<p>Set your blog title and admin. Say hello to our new wordpress!<br />
<a href="http://jedot.files.wordpress.com/2010/10/ubuntu-lampp-wordpress.jpg"><img class="aligncenter size-full wp-image-72" title="ubuntu-lampp-wordpress" src="http://jedot.files.wordpress.com/2010/10/ubuntu-lampp-wordpress.jpg?w=500&#038;h=282" alt="" width="500" height="282" /></a><br />
Happy blogging! =D</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jedot.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jedot.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jedot.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jedot.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jedot.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jedot.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jedot.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jedot.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jedot.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jedot.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jedot.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jedot.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jedot.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jedot.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=71&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jedot.wordpress.com/2010/10/11/installing-wordpress-using-xampp-on-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3da6f7cdb2257a8bc73306a1d5562b7f?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">jedot</media:title>
		</media:content>

		<media:content url="http://jedot.files.wordpress.com/2010/10/ubuntu-lampp-wordpress.jpg" medium="image">
			<media:title type="html">ubuntu-lampp-wordpress</media:title>
		</media:content>
	</item>
		<item>
		<title>How do you play Resident Evil 5 PC?</title>
		<link>http://jedot.wordpress.com/2009/09/22/how-do-you-play-re5-pc/</link>
		<comments>http://jedot.wordpress.com/2009/09/22/how-do-you-play-re5-pc/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 14:45:52 +0000</pubDate>
		<dc:creator>jedot</dc:creator>
				<category><![CDATA[Game]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[Resident Evil 5]]></category>

		<guid isPermaLink="false">http://jedot.wordpress.com/?p=61</guid>
		<description><![CDATA[How do you play Resident Evil 5 PC to work without any error in Windows XP? I have a problem to play this Capcom&#8217;s product. One very problem, &#8220;RE5DX9.EXE has encountered a problem&#8230;&#8221; And how do you solve this? Then &#8230; <a href="http://jedot.wordpress.com/2009/09/22/how-do-you-play-re5-pc/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=61&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How do you play Resident Evil 5 PC to work without any error in Windows XP? I have a problem to play this Capcom&#8217;s product. One very problem, &#8220;RE5DX9.EXE has encountered a problem&#8230;&#8221; And how do you solve this?</p>
<p>Then then then&#8230; Browsing while listening to SCANDAL&#8217;s songs I met a user on <a title="Capcom Unity" href="http://www.capcom-unity.com/" target="_blank">CAPCOM Unity</a> nicknamed marcelo has the same problem as me and he FIXED this problem. COLY HOW!!!??? He changed his monitor into a new LCD. eerrhh&#8230; so we must buy a new monitor after buying the £29.99 game? rrright&#8230; Though someone was solved this problem with changing his monitor driver into a right one, but &#8220;Standard&#8221; and &#8220;Plug and Play&#8221; monitor still won&#8217;t work.</p>
<p>Hmm&#8230; Two days have passed after reading marcelo&#8217;s &amp; other posts then something came up in my mind, I think I have to substitute this 14&#8243; Crappy Ray Tube screen into a new Looking Cool Display. And say what?</p>
<div id="attachment_62" class="wp-caption alignnone" style="width: 410px"><img class="size-full wp-image-62 " title="re5onme" src="http://jedot.files.wordpress.com/2009/09/re5socrap.jpg?w=400&#038;h=300" alt="re5onme" width="400" height="300" /><p class="wp-caption-text">Photo of RE5 working on my PC (brightness &amp; contrast edited)</p></div>
<p>oh my crap&#8230;</p>
<p>I nominate you Resident Evil 5 PC as Eviliest Game of this Year 2009.<br />
Well, let&#8217;s play anyway.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jedot.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jedot.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jedot.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jedot.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jedot.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jedot.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jedot.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jedot.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jedot.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jedot.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jedot.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jedot.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jedot.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jedot.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=61&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jedot.wordpress.com/2009/09/22/how-do-you-play-re5-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3da6f7cdb2257a8bc73306a1d5562b7f?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">jedot</media:title>
		</media:content>

		<media:content url="http://jedot.files.wordpress.com/2009/09/re5socrap.jpg" medium="image">
			<media:title type="html">re5onme</media:title>
		</media:content>
	</item>
		<item>
		<title>Airborn as an early Fable 2 PC</title>
		<link>http://jedot.wordpress.com/2009/09/05/airborn-as-an-early-fable-2-pc/</link>
		<comments>http://jedot.wordpress.com/2009/09/05/airborn-as-an-early-fable-2-pc/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 20:35:37 +0000</pubDate>
		<dc:creator>jedot</dc:creator>
				<category><![CDATA[Game]]></category>
		<category><![CDATA[Engine]]></category>
		<category><![CDATA[Fable 2]]></category>
		<category><![CDATA[Mod]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Unreal Tournament 3]]></category>

		<guid isPermaLink="false">http://jedot.wordpress.com/?p=46</guid>
		<description><![CDATA[Wondering when is Fable 2 released for PC? Then the answer is: don&#8217;t wait for your Monday. Forget Fable for a while, I found an interesting mod for Unreal Tournament 3 by Airborn at Moddb and the Mod itself titled &#8230; <a href="http://jedot.wordpress.com/2009/09/05/airborn-as-an-early-fable-2-pc/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=46&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wondering when is Fable 2 released for PC? Then the answer is: don&#8217;t wait for your Monday. Forget Fable for a while, I found an interesting mod for Unreal Tournament 3 by <a title="Airborn" href="http://www.moddb.com/groups/airborn">Airborn</a> at <a title="Mod DB" href="http://www.moddb.com/">Moddb</a> and the Mod itself titled as <a title="Airborn" href="http://www.moddb.com/mods/airborn">Airborn</a>.</p>
<p><img class="alignnone size-full wp-image-48" title="airborn_shot_01" src="http://jedot.files.wordpress.com/2009/09/airborn_screen_01a1.jpg?w=500&#038;h=284" alt="airborn_shot_01" width="500" height="284" /></p>
<p>Airborn is a single player Action-Adventure game mod with fantasy themed story. Airborn is not Unreal Tournament, it won&#8217;t behave the same. They&#8217;ve written a whole new camera system, the movement is also not just UT3. The style of drawing is unique, and UT3 Engine made the game graphic looks really soft.</p>
<span style="text-align:center; display: block;"><a href="http://jedot.wordpress.com/2009/09/05/airborn-as-an-early-fable-2-pc/"><img src="http://img.youtube.com/vi/7DCoNV9RHh8/2.jpg" alt="" /></a></span>
<p>Oh yes, the first release will be on next Monday (September 7, 2009). Please check their site <a title="Airborn Game" href="http://www.airborn-game.com/">Airborn Game</a>.</p>
<p>Another awesome mod I found it really interesting is <a title="Archais II" href="http://www.archasis.com/">Archasis II</a> a RPG-FPS for UT3.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jedot.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jedot.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jedot.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jedot.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jedot.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jedot.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jedot.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jedot.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jedot.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jedot.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jedot.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jedot.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jedot.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jedot.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=46&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jedot.wordpress.com/2009/09/05/airborn-as-an-early-fable-2-pc/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3da6f7cdb2257a8bc73306a1d5562b7f?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">jedot</media:title>
		</media:content>

		<media:content url="http://jedot.files.wordpress.com/2009/09/airborn_screen_01a1.jpg" medium="image">
			<media:title type="html">airborn_shot_01</media:title>
		</media:content>
	</item>
		<item>
		<title>SCANDAL START Lyric</title>
		<link>http://jedot.wordpress.com/2009/09/03/scandal-start-lyric/</link>
		<comments>http://jedot.wordpress.com/2009/09/03/scandal-start-lyric/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 18:30:58 +0000</pubDate>
		<dc:creator>jedot</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[Lyric]]></category>
		<category><![CDATA[OST]]></category>
		<category><![CDATA[SCANDAL]]></category>
		<category><![CDATA[Second Evolution]]></category>
		<category><![CDATA[Star Ocean]]></category>
		<category><![CDATA[START]]></category>

		<guid isPermaLink="false">http://jedot.wordpress.com/?p=37</guid>
		<description><![CDATA[While searching google keyword: SCANDAL START Lyric didn&#8217;t came up with desired result, so I decide to post it here. Asin: B00172RMGU Album: Star Ocean Second Evolution Original Soundtrack Found on: Disc 01 &#8211; Track 01 Title: START / SCANDAL &#8230; <a href="http://jedot.wordpress.com/2009/09/03/scandal-start-lyric/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=37&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While searching google keyword: SCANDAL START Lyric didn&#8217;t came up with desired result, so I decide to post it here.<br />
<img class="size-thumbnail wp-image-39 alignleft" title="STAROCEAN-SECONDEVO-COVER" src="http://jedot.files.wordpress.com/2009/09/starocean-secondevo-cover.jpg?w=150&#038;h=150" alt="Star Ocean Second Evolution OST Cover" width="150" height="150" />Asin: B00172RMGU<br />
Album: Star Ocean Second Evolution Original Soundtrack<br />
Found on: Disc 01 &#8211; Track 01<br />
Title: START / SCANDAL<br />
Lyric: 湊川愛樹<br />
Composer, Arranged: 永井健<br />
Performer: SCANDAL</p>
<p>ふいにこぼれた涙　貴方だけが知っていた<br />
優しさが溢れてる　あの空のように</p>
<p>星達は瞬いて　次の道を描きだす<br />
胸に秘めた思いは　抑えられない</p>
<p>遥かな世界目指し　ここから飛びだそう<br />
冒険の旅へと行こう</p>
<p>強くなれるわ　きっと貴方は<br />
いくつもの星を越え　たどり着けるよ<br />
輝きだした　勇気とともに<br />
飛び立てる　翼広げて</p>
<p>頬をするり　ぬけてく　風は心かをすめて<br />
平凡な毎日が　はらりと散った</p>
<p>貴方と出会ってから　歩き出した未来へと<br />
どうして生まれたのか？　答えを知りたい</p>
<p>輝く未来目指し　ここから飛び立とう<br />
羽広げ空へと行こう</p>
<p>愛と勇気が　私を包む<br />
見渡せば　Milky Way　輝きだすよ<br />
思い描いた夢を掴もう<br />
解き放て　空の彼方へ</p>
<p>この<strong>字宙</strong>（そら）の片隅で　出会えた　奇跡を<br />
信じたい　守り抜きたい</p>
<p>遥かな空に浮かぶ星達<br />
一筋の道しるし　輝きだすよ<br />
この手　合わせて　飛び立てる時<br />
止まれない　想いのせ<br />
羽ばたきだす　果てない永久の空へ</p>
<p><img class="size-full wp-image-40 alignleft" title="scandalpage" src="http://jedot.files.wordpress.com/2009/09/scandalpage.jpg?w=230&#038;h=99" alt="scandalpage" width="230" height="99" /> <strong>Hiragana:</strong><br />
ふいにこばれたなみだ　あなただけがしっていた<br />
やさしさがあふれてる　あのそらのように</p>
<p>ほしたちはまたたいて　つぎのみちをえがきだす<br />
むねにひめたおもいは　おさえられない</p>
<p>はるかなせかいめさし　ここからとびだそう<br />
ぼうけんのたびへとゆこう</p>
<p>つよくなれるわ　きっとあなたは<br />
いくつものほしをこえ　たどりつけるよ<br />
かがやきだした　ゆうきとともに<br />
とびだてる　つばさひろげて</p>
<p>ほほをするり　ぬけてく　かぜはこころをかすめて<br />
へいぼんなまいにちが　はらりとちった</p>
<p>あなたとであってから　あるきだしたみらいへと<br />
どうしてうまれたのか？　こたえをしりたい</p>
<p>かがやくみらいめさし　ここからとびだとう<br />
はねひろげそらへとゆこう</p>
<p>あいとゆうきが　わたしをつつむ<br />
みわたせば　Milky Way　かがやきだすよ<br />
おもいえがいたゆめをつかもう<br />
ときはなて　そらのかなたへ</p>
<p>このそらのかたすみで　であえた　きせきを<br />
しんじたい　まもりぬきたい</p>
<p>はるかなそらにうかぶほしたち<br />
ひとすじのみちしるし　かがやきだすよ<br />
このて　あわせて　とびだてるとき<br />
とまれない　おもいのせ<br />
はねばたきだす　はてないとわのそらへ</p>
<p>Wrote this lyric while reading their inside case DVD and listening to their music. There is a kanji <strong>字宙</strong> looks isn&#8217;t right or has no actual meaning but reads as <strong>そら</strong> so i put the Hiragana lyric for easier reading.</p>
<p>For those who didn&#8217;t know SCANDAL (Japanese Band) then here are some links:<br />
<a href="http://www.scandal-4.com/">Official Site</a><br />
<a href="http://6109.jp/scandal4/">Blog</a><br />
<a href="http://wiki.jpopstop.com/wiki/SCANDAL">Wiki (Jpopstop)</a> | <a href="http://en.wikipedia.org/wiki/Scandal_(Japanese_band)">Wiki</a> | <a href="http://ja.wikipedia.org/wiki/SCANDAL_(%E6%97%A5%E6%9C%AC%E3%81%AE%E3%83%90%E3%83%B3%E3%83%89)">Wiki (JA)</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jedot.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jedot.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jedot.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jedot.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jedot.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jedot.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jedot.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jedot.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jedot.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jedot.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jedot.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jedot.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jedot.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jedot.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=37&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jedot.wordpress.com/2009/09/03/scandal-start-lyric/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3da6f7cdb2257a8bc73306a1d5562b7f?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">jedot</media:title>
		</media:content>

		<media:content url="http://jedot.files.wordpress.com/2009/09/starocean-secondevo-cover.jpg?w=150" medium="image">
			<media:title type="html">STAROCEAN-SECONDEVO-COVER</media:title>
		</media:content>

		<media:content url="http://jedot.files.wordpress.com/2009/09/scandalpage.jpg" medium="image">
			<media:title type="html">scandalpage</media:title>
		</media:content>
	</item>
		<item>
		<title>Thi ish it!</title>
		<link>http://jedot.wordpress.com/2009/09/02/thi-ish-it/</link>
		<comments>http://jedot.wordpress.com/2009/09/02/thi-ish-it/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 20:24:51 +0000</pubDate>
		<dc:creator>jedot</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[Anime]]></category>
		<category><![CDATA[Iron Man]]></category>
		<category><![CDATA[lucky star]]></category>
		<category><![CDATA[Marvel]]></category>
		<category><![CDATA[Wolverine]]></category>

		<guid isPermaLink="false">http://jedot.wordpress.com/?p=27</guid>
		<description><![CDATA[I found these video while surfing: Marvel Anime &#8211; Iron Man Teaser &#124; US -&#62; Japan Marvel Anime &#8211; Wolverine Teaser &#124; US -&#62; Japan Lucky Star Live Action (Not TMA, so it is safe) &#124; Japan &#8211; Japan<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=27&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I found these video while surfing:</p>
<p><a href="http://www.youtube.com/watch?v=h_ej7ZlS2oQ" target="_blank">Marvel Anime &#8211; Iron Man Teaser</a> | US -&gt; Japan<br />
<a href="http://www.youtube.com/watch?v=8DsQT2tYSdk" target="_blank">Marvel Anime &#8211; Wolverine Teaser</a> | US -&gt; Japan<br />
<a href="http://www.youtube.com/watch?v=-XYRANc99eE" target="_blank">Lucky Star Live Action</a> (Not TMA, so it is safe) | Japan &#8211; Japan</p>
<p> <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jedot.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jedot.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jedot.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jedot.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jedot.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jedot.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jedot.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jedot.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jedot.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jedot.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jedot.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jedot.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jedot.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jedot.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=27&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jedot.wordpress.com/2009/09/02/thi-ish-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3da6f7cdb2257a8bc73306a1d5562b7f?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">jedot</media:title>
		</media:content>
	</item>
		<item>
		<title>Dragon Ball &amp; Naruto for PC!</title>
		<link>http://jedot.wordpress.com/2008/09/25/dragon-ball-naruto-for-pc/</link>
		<comments>http://jedot.wordpress.com/2008/09/25/dragon-ball-naruto-for-pc/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 23:45:30 +0000</pubDate>
		<dc:creator>jedot</dc:creator>
				<category><![CDATA[Game]]></category>
		<category><![CDATA[Dragon Ball Mod]]></category>
		<category><![CDATA[Half Life Mod]]></category>
		<category><![CDATA[Naruto Mod]]></category>

		<guid isPermaLink="false">http://jedot.wordpress.com/?p=8</guid>
		<description><![CDATA[It&#8217;s been a while . The best thing in PC-gaming is modding . While browsing some game mod sites i find things interesting. The most notable one is Dragon Ball: Earth&#8217;s Special Forces (I call ESF later) and Naruto: Naiteki &#8230; <a href="http://jedot.wordpress.com/2008/09/25/dragon-ball-naruto-for-pc/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=8&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . The best thing in PC-gaming is modding <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> . While browsing some game mod sites i find things interesting. The most notable one is <a title="Earth's Special Forces's Homepage" href="http://esf.gamers-desire.de/" target="_blank">Dragon Ball: Earth&#8217;s Special Forces</a> (I call ESF later) and <a title="Naiteki Kensei's Homepage" href="http://www.naiteki-kensei.com/" target="_blank">Naruto: Naiteki Kensei</a> means &#8220;Naruto: Inner Power&#8221; in Japanese (I call NNK later). Even though both mods are developed for Half-Life Game it looks very nice, i can say that these are not normal mods <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> . But currently ESF is the only playable mod (and updating), while NNK team keeps updating news on their site and about releasing some demo map.</p>
<p>ESF is a fast paced, 3rd person fighter based on the hit anime, Dragonball Z. Select your favorite character and fly, power up, transform, melee, and beam your enemies into pulp. Each character is given signature moves and abilities to compliment different style of play. Some are stronger in hand to hand combat, others are better with energy attacks. You can play in three different game modes, deathmatch, team deathmatch, and capture the dragonballs. There is a learning curve so newbies beware. This is not your normal Half-life mod. When i write this, v 1.2.3 was released as a stable version there is also v 1.3 FINAL Open Beta available to download.</p>
<p>In-Game screenshot for ESF:</p>
<p style="text-align:center;"><a href="http://img383.imageshack.us/img383/7940/burtervsdeathballfs5.png"><img title="ESF Screenshot 01" src="http://img383.imageshack.us/img383/7940/burtervsdeathballfs5.th.png" alt="ESF Screenshot 01" width="150" height="128" /></a> <a href="http://img91.imageshack.us/img91/4076/potwangrybuuha2.jpg"><img title="ESF Screenshot 02" src="http://img91.imageshack.us/img91/4076/potwangrybuuha2.th.jpg" alt="ESF Screenshot 02" width="150" height="128" /></a> <a href="http://img131.imageshack.us/img131/5559/potw6108tf3.jpg"><img title="ESF Screenshot 03" src="http://img131.imageshack.us/img131/5559/potw6108tf3.th.jpg" alt="ESF Screenshot 03" width="150" height="128" /></a></p>
<p>For more pictures visit: <a title="Media" href="http://esf.gamers-desire.de/index.php?id=media" target="_blank">ESF: Media</a><br />
Source: <a title="Earth's Special Forces Home Page" href="http://esf.gamers-desire.de/" target="_blank">Earth&#8217;s Special Forces Home Page</a></p>
<p>Then.. NNK. Naruto: Naiteki Kensei (NNK) is a total conversion of the Half-Life engine based on the hit Japanese anime Naruto. This is a free mod. In order to play NNK, you will need a valid Steam account (www.steampowered.com) and a purchased and installed Half-Life. NNK will not work on other engines such as Half-Life Source, Half-Life 2, or Counter-Strike Source. Any other methods of playing NNK are not supported. More information on purchasing Half-Life can be obtained by visiting the Steam website (www.steampowered.com). There are no single-player mode.</p>
<p>In-Game screenshot for NNK:</p>
<p style="text-align:center;"><a href="http://img401.imageshack.us/img401/7083/chunin1640tw7.jpg"><img title="NNK Screenshot 01" src="http://img401.imageshack.us/img401/7083/chunin1640tw7.th.jpg" alt="NNK Screenshot 01" width="150" height="128" /></a> <a href="http://img513.imageshack.us/img513/8199/kyubi2640tv1.jpg"><img title="NNK Screenshot 02" src="http://img513.imageshack.us/img513/8199/kyubi2640tv1.th.jpg" alt="NNK Screenshot 02" width="150" height="128" /></a> <a href="http://img401.imageshack.us/img401/6292/breakbonds183640kt3.jpg"><img title="NNK Screenshot 03" src="http://img401.imageshack.us/img401/6292/breakbonds183640kt3.th.jpg" alt="NNK Screenshot 03" width="150" height="128" /></a></p>
<p>For more pictures visit: <a title="Media" href="http://naiteki-kensei.com/index.php?c=media_ingame" target="_blank">NNK: Media</a><br />
Source: <a title="Media" href="http://www.naiteki-kensei.com/" target="_blank">Naruto: Naiteki Kensei Home Page</a></p>
<p>I think those are great mod, pushes Half-Life Engine to it&#8217;s limit. I hope they are doing fine while developing this mod, especially NNK because I like cell-shaded and I love Anime very much. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Support them and Good Luck Team!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jedot.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jedot.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jedot.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jedot.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jedot.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jedot.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jedot.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jedot.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jedot.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jedot.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jedot.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jedot.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jedot.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jedot.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=8&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jedot.wordpress.com/2008/09/25/dragon-ball-naruto-for-pc/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3da6f7cdb2257a8bc73306a1d5562b7f?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">jedot</media:title>
		</media:content>

		<media:content url="http://img383.imageshack.us/img383/7940/burtervsdeathballfs5.th.png" medium="image">
			<media:title type="html">ESF Screenshot 01</media:title>
		</media:content>

		<media:content url="http://img91.imageshack.us/img91/4076/potwangrybuuha2.th.jpg" medium="image">
			<media:title type="html">ESF Screenshot 02</media:title>
		</media:content>

		<media:content url="http://img131.imageshack.us/img131/5559/potw6108tf3.th.jpg" medium="image">
			<media:title type="html">ESF Screenshot 03</media:title>
		</media:content>

		<media:content url="http://img401.imageshack.us/img401/7083/chunin1640tw7.th.jpg" medium="image">
			<media:title type="html">NNK Screenshot 01</media:title>
		</media:content>

		<media:content url="http://img513.imageshack.us/img513/8199/kyubi2640tv1.th.jpg" medium="image">
			<media:title type="html">NNK Screenshot 02</media:title>
		</media:content>

		<media:content url="http://img401.imageshack.us/img401/6292/breakbonds183640kt3.th.jpg" medium="image">
			<media:title type="html">NNK Screenshot 03</media:title>
		</media:content>
	</item>
		<item>
		<title>らき☆すたの森 (Lucky☆Star no Mori)</title>
		<link>http://jedot.wordpress.com/2007/07/26/%e3%82%89%e3%81%8d%e2%98%86%e3%81%99%e3%81%9f%e3%81%ae%e6%a3%ae-lucky%e2%98%86star-no-mori/</link>
		<comments>http://jedot.wordpress.com/2007/07/26/%e3%82%89%e3%81%8d%e2%98%86%e3%81%99%e3%81%9f%e3%81%ae%e6%a3%ae-lucky%e2%98%86star-no-mori/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 07:41:30 +0000</pubDate>
		<dc:creator>jedot</dc:creator>
				<category><![CDATA[Game]]></category>
		<category><![CDATA[lucky star]]></category>

		<guid isPermaLink="false">http://jedot.wordpress.com/2007/07/26/%e3%82%89%e3%81%8d%e2%98%86%e3%81%99%e3%81%9f%e3%81%ae%e6%a3%ae-lucky%e2%98%86star-no-mori/</guid>
		<description><![CDATA[wiks&#8230;. end of upload らき☆すたの森 (Lucky☆Star no Mori) its not a galge&#8230; its not an eroge&#8230; its not a game&#8230; its Lucky☆Star no Mori! Here is some screenshot: And here is the download Link: File Information: Name: LuckyStarNoMori01.rar Size: 24.13 Mb &#8230; <a href="http://jedot.wordpress.com/2007/07/26/%e3%82%89%e3%81%8d%e2%98%86%e3%81%99%e3%81%9f%e3%81%ae%e6%a3%ae-lucky%e2%98%86star-no-mori/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=7&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>wiks&#8230;. end of upload らき☆すたの森 (Lucky☆Star no Mori)<br />
<img src="http://img65.imageshack.us/img65/26/rakisutamo4.th.jpg" alt="Lucky☆Star no Mori" /><br />
its not a galge&#8230;<br />
its not an eroge&#8230;<br />
its not a game&#8230;<br />
its Lucky☆Star no Mori!</p>
<p>Here is some screenshot:<br />
<img src="http://img59.imageshack.us/img59/4269/luckystarnomori00yi2.th.jpg" alt="" /><img src="http://img228.imageshack.us/img228/3509/luckystarnomori01mc7.th.jpg" alt="" /><img src="http://img211.imageshack.us/img211/3522/luckystarnomori06fr7.th.jpg" alt="" /><img src="http://img65.imageshack.us/img65/4923/luckystarnomori11ct4.th.jpg" alt="" /><img src="http://img211.imageshack.us/img211/42/luckystarnomori08yl0.th.jpg" alt="" /></p>
<p>And here is the download Link:<br />
File Information:<br />
Name: LuckyStarNoMori01.rar<br />
Size: 24.13 Mb (25,304,129 bytes)<br />
Link: <a href="http://media8.filewind.com/g.php?filepath=13799">Lucky Star no Mori Download</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jedot.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jedot.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jedot.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jedot.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jedot.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jedot.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jedot.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jedot.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jedot.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jedot.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jedot.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jedot.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jedot.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jedot.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jedot.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jedot.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jedot.wordpress.com&amp;blog=1285169&amp;post=7&amp;subd=jedot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jedot.wordpress.com/2007/07/26/%e3%82%89%e3%81%8d%e2%98%86%e3%81%99%e3%81%9f%e3%81%ae%e6%a3%ae-lucky%e2%98%86star-no-mori/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3da6f7cdb2257a8bc73306a1d5562b7f?s=96&#38;d=monsterid" medium="image">
			<media:title type="html">jedot</media:title>
		</media:content>

		<media:content url="http://img65.imageshack.us/img65/26/rakisutamo4.th.jpg" medium="image">
			<media:title type="html">Lucky☆Star no Mori</media:title>
		</media:content>

		<media:content url="http://img59.imageshack.us/img59/4269/luckystarnomori00yi2.th.jpg" medium="image" />

		<media:content url="http://img228.imageshack.us/img228/3509/luckystarnomori01mc7.th.jpg" medium="image" />

		<media:content url="http://img211.imageshack.us/img211/3522/luckystarnomori06fr7.th.jpg" medium="image" />

		<media:content url="http://img65.imageshack.us/img65/4923/luckystarnomori11ct4.th.jpg" medium="image" />

		<media:content url="http://img211.imageshack.us/img211/42/luckystarnomori08yl0.th.jpg" medium="image" />
	</item>
	</channel>
</rss>
