<?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"
	>

<channel>
	<title>adjiexx[dot]net</title>
	<atom:link href="http://adjiexx.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://adjiexx.net</link>
	<description>huatchii !!!</description>
	<pubDate>Thu, 11 Mar 2010 02:04:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Just another one</title>
		<link>http://adjiexx.net/2010/01/21/ketkpdotin/</link>
		<comments>http://adjiexx.net/2010/01/21/ketkpdotin/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 01:51:02 +0000</pubDate>
		<dc:creator>adjiexx</dc:creator>
		
		<category><![CDATA[share]]></category>

		<category><![CDATA[site gallery]]></category>

		<guid isPermaLink="false">http://adjiexx.net/?p=108</guid>
		<description><![CDATA[

Just another URL shortener, but more simple and came up with more familiar name 
There are three simple ways to create TKP url :
goto http://ketkp.in and paste your url there
using TKP creator
TKP creator is some kind of bookmark that allows you to create your TKP url only with one single click. learn more here
using Firefox [...]]]></description>
			<content:encoded><![CDATA[<p><a title="ketkp.in url shortener" href="http://ketkp.in"><img src="http://ketkp.in/images/ketkpin4.png" alt="ketkp.in simple URL shortener" /><br />
</a></p>
<p>Just another URL shortener, but more simple and came up with more familiar name <img src='http://adjiexx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
There are three simple ways to create TKP url :</p>
<p><strong>goto</strong> <a href="http://ketkp.in">http://ketkp.in</a> and paste your url there</p>
<p><strong>using TKP creato</strong>r<br />
TKP creator is some kind of bookmark that allows you to create your TKP url only with one single click. <a href="http://ketkp.in/about.php">learn more here</a></p>
<p><strong>using Firefox add on</strong><br />
This is another way to create your TKP url, simply using context menu on your firefox to create TKP.</p>
]]></content:encoded>
			<wfw:commentRss>http://adjiexx.net/2010/01/21/ketkpdotin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Playlist Generator</title>
		<link>http://adjiexx.net/2010/01/19/playlist-generator/</link>
		<comments>http://adjiexx.net/2010/01/19/playlist-generator/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 16:30:42 +0000</pubDate>
		<dc:creator>adjiexx</dc:creator>
		
		<category><![CDATA[share]]></category>

		<guid isPermaLink="false">http://adjiexx.net/?p=107</guid>
		<description><![CDATA[My hard drive was  formatted&#8230;
Damn.. all my mp3s were gone
So how do I listen to music, hmm.. I&#8217;d usually using AOL radio, but I can only listen to what aol playing based on available categories, so when I found my neighbor server, It shares mp3 files via web server. But I only have two hands.. [...]]]></description>
			<content:encoded><![CDATA[<p>My hard drive was  formatted&#8230;<br />
Damn.. all my mp3s were gone<br />
So how do I listen to music, hmm.. I&#8217;d usually using <a href="http://player.play.it/player/aolPlayer.html?v=4.9.24x&amp;ur=1&amp;us=1&amp;id=921">AOL radio</a>, but I can only listen to what aol playing based on available categories, so when I found my neighbor server, It shares mp3 files via web server. But I only have two hands.. not enough to copy all the mp3 links and paste them to my player.<br />
So created this, to generate playlist from web server contains mp3 files.<br />
look like these</p>
<p><img src="http://photos-h.ak.fbcdn.net/hphotos-ak-snc3/hs152.snc3/17966_1329124313359_1388510485_2034750_7481136_n.jpg" alt="" /><br />
<img src="http://photos-d.ak.fbcdn.net/hphotos-ak-snc3/hs152.snc3/17966_1329127593441_1388510485_2034752_5735383_n.jpg" alt="" /></p>
<p>with this php code, you can generate playlist from all mp3s on this server</p>
<pre>&lt;?</pre>
<pre>$url="http://10.14.12.11/music/Barat/";</pre>
<pre>$depth=3;</pre>
<pre>$track_ar=Array();</pre>
<pre>function get_track($u,$d){</pre>
<pre>  global $depth;</pre>
<pre>  global $track_ar;</pre>
<pre>  if($d&gt;=1){</pre>
<pre>    $s1=@file_get_contents($u);</pre>
<pre>    $p=str_replace("\"","'",$s1);</pre>
<pre>    $p1=explode("href='",$p);</pre>
<pre>    foreach($p1 as $item){</pre>
<pre>       $p2=explode("'",$item);</pre>
<pre>       $head=substr($p2[0],0,1);</pre>
<pre>       $tail=substr($p2[0],-1);</pre>
<pre>       $tail2=substr($p2[0],-3);</pre>
<pre>       if(strtolower($tail2)=="mp3"){</pre>
<pre>          $track_ar[]=$p2[0];</pre>
<pre>          echo $u.$p2[0]."\n";</pre>
<pre>       }else if(($tail=="/")&amp;&amp;($head!="/")){</pre>
<pre>            get_track($u.$p2[0],$d-1);</pre>
<pre>       }</pre>
<pre>    }</pre>
<pre>  }</pre>
<pre>}</pre>
<pre>get_track($url,$depth);</pre>
<pre>?&gt;</pre>
<p><img src="http://photos-e.ak.fbcdn.net/hphotos-ak-snc3/hs132.snc3/17966_1329142513814_1388510485_2034845_5378307_n.jpg" alt="" /><br />
Then you can just save it as a .m3u file and open it with your favourite mp3 player like ITunes or winamp</p>
]]></content:encoded>
			<wfw:commentRss>http://adjiexx.net/2010/01/19/playlist-generator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>will get used to it</title>
		<link>http://adjiexx.net/2010/01/13/will-get-used-to-it/</link>
		<comments>http://adjiexx.net/2010/01/13/will-get-used-to-it/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 21:44:18 +0000</pubDate>
		<dc:creator>adjiexx</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adjiexx.net/?p=105</guid>
		<description><![CDATA[using two fingers for right click, and more 
]]></description>
			<content:encoded><![CDATA[<p>using two fingers for right click, and more <img src='http://adjiexx.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://adjiexx.net/2010/01/13/will-get-used-to-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>cleared out</title>
		<link>http://adjiexx.net/2009/12/29/cleared-out/</link>
		<comments>http://adjiexx.net/2009/12/29/cleared-out/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 10:53:52 +0000</pubDate>
		<dc:creator>adjiexx</dc:creator>
		
		<category><![CDATA[drunk]]></category>

		<category><![CDATA[junks]]></category>

		<guid isPermaLink="false">http://adjiexx.net/?p=104</guid>
		<description><![CDATA[something gray, needed to be cleared out..
it doesn&#8217;t matter if it turns into black or white..
]]></description>
			<content:encoded><![CDATA[<p>something gray, needed to be cleared out..<br />
it doesn&#8217;t matter if it turns into black or white..</p>
]]></content:encoded>
			<wfw:commentRss>http://adjiexx.net/2009/12/29/cleared-out/feed/</wfw:commentRss>
		</item>
		<item>
		<title>cloverfield</title>
		<link>http://adjiexx.net/2009/12/28/cloverfield/</link>
		<comments>http://adjiexx.net/2009/12/28/cloverfield/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 11:58:09 +0000</pubDate>
		<dc:creator>adjiexx</dc:creator>
		
		<category><![CDATA[junks]]></category>

		<guid isPermaLink="false">http://adjiexx.net/?p=103</guid>
		<description><![CDATA[this movie is just great.. I&#8217;m watching it&#8230;, again
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.indowebster.com/Cloverfield.html">this movie </a>is just great.. I&#8217;m watching it&#8230;, again</p>
]]></content:encoded>
			<wfw:commentRss>http://adjiexx.net/2009/12/28/cloverfield/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wtf</title>
		<link>http://adjiexx.net/2009/12/25/wtf/</link>
		<comments>http://adjiexx.net/2009/12/25/wtf/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 16:23:05 +0000</pubDate>
		<dc:creator>adjiexx</dc:creator>
		
		<category><![CDATA[junks]]></category>

		<guid isPermaLink="false">http://adjiexx.net/?p=101</guid>
		<description><![CDATA[
I don&#8217;t want everyone to be skillful reading my mind :))
This thing sometimes makes you share everything in your mind, feeling, anger, hopes, wishes to public, makes you don&#8217;t have any secrets, which are should be known by only some people close to you.
This is what makes you&#8217;re not special to them. &#8216;Cos they know [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://photos-h.ak.fbcdn.net/hphotos-ak-snc3/hs240.snc3/22746_1301746748937_1388510485_1958427_6015081_n.jpg" alt="" width="444" height="201" /></p>
<p>I don&#8217;t want everyone to be skillful reading my mind :))</p>
<p>This thing sometimes makes you share everything in your mind, feeling, anger, hopes, wishes to public, makes you don&#8217;t have any secrets, which are should be known by only some people close to you.<br />
This is what makes you&#8217;re not special to them. &#8216;Cos they know and only know what everybody else knows about you.</p>
]]></content:encoded>
			<wfw:commentRss>http://adjiexx.net/2009/12/25/wtf/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Black out</title>
		<link>http://adjiexx.net/2009/12/25/black-out/</link>
		<comments>http://adjiexx.net/2009/12/25/black-out/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 08:00:56 +0000</pubDate>
		<dc:creator>adjiexx</dc:creator>
		
		<category><![CDATA[drunk]]></category>

		<category><![CDATA[image gallery]]></category>

		<guid isPermaLink="false">http://adjiexx.net/?p=100</guid>
		<description><![CDATA[
well.. it&#8217;s starting to black out&#8230;
and soon, I&#8217;m not gonna be able to see a thing&#8230;  and that&#8217;s when I have to wake up..
]]></description>
			<content:encoded><![CDATA[<p><img src="http://photos-g.ak.fbcdn.net/hphotos-ak-snc3/hs216.snc3/22366_1304815065643_1388510485_1965859_6206399_n.jpg" alt="" width="397" height="195" /></p>
<p>well.. it&#8217;s starting to black out&#8230;<br />
and soon, I&#8217;m not gonna be able to see a thing&#8230;  and that&#8217;s when I have to wake up..</p>
]]></content:encoded>
			<wfw:commentRss>http://adjiexx.net/2009/12/25/black-out/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kill bee</title>
		<link>http://adjiexx.net/2009/12/25/kill-bee/</link>
		<comments>http://adjiexx.net/2009/12/25/kill-bee/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 07:52:49 +0000</pubDate>
		<dc:creator>adjiexx</dc:creator>
		
		<category><![CDATA[share]]></category>

		<guid isPermaLink="false">http://adjiexx.net/?p=99</guid>
		<description><![CDATA[this is just an old simple game I made, 5 years ago 
It&#8217;s called Kill bee, these bees are so annoying (With World Worm Party voices) that make you crazy to kill them.  And the level is just unlimited  

just play here , move with your keyboard (arrow keys) and press D to shoot [...]]]></description>
			<content:encoded><![CDATA[<p>this is just an old simple game I made, 5 years ago <img src='http://adjiexx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
It&#8217;s called Kill bee, these bees are so annoying (<a href="http://wormsworldparty.team17.com/">With World Worm Party</a> voices) that make you crazy to kill them.  And the level is just unlimited <img src='http://adjiexx.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><img src="http://photos-g.ak.fbcdn.net/hphotos-ak-snc3/hs216.snc3/22366_1304823905864_1388510485_1965865_5512949_n.jpg" alt="" width="399" height="296" /></p>
<p>just <a href="http://adjiexx.net/u/upload/Kill%20bee%20Vol%203.swf">play here</a> , move with your keyboard (arrow keys) and press D to shoot at them. Good luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://adjiexx.net/2009/12/25/kill-bee/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sense of losing</title>
		<link>http://adjiexx.net/2009/11/20/sense-of-losing/</link>
		<comments>http://adjiexx.net/2009/11/20/sense-of-losing/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 08:28:47 +0000</pubDate>
		<dc:creator>adjiexx</dc:creator>
		
		<category><![CDATA[drunk]]></category>

		<category><![CDATA[junks]]></category>

		<guid isPermaLink="false">http://adjiexx.net/?p=98</guid>
		<description><![CDATA[sometimes sense of losing need to be created to avoid the real losing of something&#8230;
]]></description>
			<content:encoded><![CDATA[<p>sometimes sense of losing need to be created to avoid the real losing of something&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://adjiexx.net/2009/11/20/sense-of-losing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Death Race</title>
		<link>http://adjiexx.net/2009/11/17/death-race/</link>
		<comments>http://adjiexx.net/2009/11/17/death-race/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 21:48:11 +0000</pubDate>
		<dc:creator>adjiexx</dc:creator>
		
		<category><![CDATA[share]]></category>

		<guid isPermaLink="false">http://adjiexx.net/?p=97</guid>
		<description><![CDATA[this is just a game I made for Game Programming Course assignment.
How to play? just don&#8217;t die&#8230;  
Click here to start this game
]]></description>
			<content:encoded><![CDATA[<p>this is just a game I made for Game Programming Course assignment.<br />
How to play? just don&#8217;t die&#8230; <img src='http://adjiexx.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a href="http://adjiexx.net/u/upload/deathrace.swf">Click here to start this game</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adjiexx.net/2009/11/17/death-race/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
