<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JEKIPEDIA - a glance into my world</title>
	<atom:link href="http://jekipedia.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://jekipedia.com</link>
	<description>harder you work, more you life</description>
	<lastBuildDate>Thu, 02 Sep 2010 22:04:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>UHUY!</title>
		<link>http://jekipedia.com/?p=321</link>
		<comments>http://jekipedia.com/?p=321#comments</comments>
		<pubDate>Thu, 02 Sep 2010 22:04:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jekipedia.com/?p=321</guid>
		<description><![CDATA[baru2 ini lg ketagihan jajal skill ngoding di wonderfl.net! disini bener2 website yg pure buat flash coder.. soalny tools graphic ga bs dipake disini jadi klo mo bikin garis aja musti pake sebaris kode.. disini gw liat ternyata banyak programmer dari jepang yg nguasain papervision, trus ada beberapa libraries yg gw baru tau sama sekali [...]]]></description>
			<content:encoded><![CDATA[<p>baru2 ini lg ketagihan jajal skill ngoding di wonderfl.net! disini bener2 website yg pure buat flash coder.. soalny tools graphic ga bs dipake disini jadi klo mo bikin garis aja musti pake sebaris kode.. disini gw liat ternyata banyak programmer dari jepang yg nguasain papervision, trus ada beberapa libraries yg gw baru tau sama sekali kayak libspark (www.<strong>libspark</strong>.org/)  cuma sayang documentationnya bahasa jepang.. kira2 kursus brp taun ya baru bs ngerti haha.!</p>
<p>krn disini tool2 grafis ditiadakan banyak jg yg pake component2 kayak bit101.  trus ada jg physical computing dimana mereka gabungin sensor2 external selain keyboard,mouse ato webcam bs diliat disini http://physical.wonderfl.net/</p>
<p>buat programmer java,css/html 5 bs jg main2 ke sini <a href="http://jsdo.it/">http://jsdo.it/</a></p>
<p>dan semuanya diintip source codenya!!</p>
]]></content:encoded>
			<wfw:commentRss>http://jekipedia.com/?feed=rss2&amp;p=321</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MERGE SORT AS3</title>
		<link>http://jekipedia.com/?p=319</link>
		<comments>http://jekipedia.com/?p=319#comments</comments>
		<pubDate>Tue, 31 Aug 2010 23:38:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jekipedia.com/?p=319</guid>
		<description><![CDATA[Just porting john neumann merge-sort method for vector type data into as3 dunno if it&#8217;s faster than native sorting method.. let me know  
package
{

 /**
 * &#8230;
 * @author Jacky Riawan
 */
 public class mergesort
 {
 private var mySort:Vector.&#60;Number&#62;
 public function mergesort(myData:Vector.&#60;Number&#62;) {

 merge_sort(myData)

 }
 private function merge_sort(myData:Vector.&#60;Number&#62;) {
 if (myData.length &#60;=1) {
 return [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0cm;">Just porting john neumann merge-sort method for vector type data into as3 dunno if it&#8217;s faster than native sorting method.. let me know <img src='http://jekipedia.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;">package</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;">{</span></span></p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> /**</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> * &#8230;</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> * @author Jacky Riawan</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> */</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> public class mergesort</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> private var mySort:Vector.&lt;Number&gt;</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> public function mergesort(myData:Vector.&lt;Number&gt;) {</span></span></p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> merge_sort(myData)</span></span></p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> private function merge_sort(myData:Vector.&lt;Number&gt;) {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> if (myData.length &lt;=1) {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> return myData</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> var left:Vector.&lt;Number&gt; = new Vector.&lt;Number&gt;()</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> var right:Vector.&lt;Number&gt; = new Vector.&lt;Number&gt;()</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> var result:Vector.&lt;Number&gt; = new Vector.&lt;Number&gt;()</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> var middleNumber:int = Math.round(myData.length / 2)</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> for (var i:int = 0; i &lt; myData.length; i++) {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> if (i &lt; middleNumber) {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> left.push(myData[i])</span></span></p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }else {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> right.push(myData[i])</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> left = merge_sort(left)</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> right = merge_sort(right)</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> result = merge(left, right)</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> mySort=result</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> return result</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> public function getSort() {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> return mySort</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> protected function getSortData() {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> </span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> private function merge(left:Vector.&lt;Number&gt;,right:Vector.&lt;Number&gt;):Vector.&lt;Number&gt;</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> var result:Vector.&lt;Number&gt; = new Vector.&lt;Number&gt;()</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> while (left.length &gt; 0 &amp;&amp; right.length &gt; 0) {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> if (left[0] &lt;= right[0]) {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> result.push(left[0])</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> left.splice(0,1)</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }else {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> result.push(right[0])</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> right.splice(0,1)</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> if (left.length &gt; 0) {</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> result=result.concat(left)</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }else{</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> result=result.concat(right)</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> return result</span></span></p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"> }</span></span></p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;">}</span></span></p>
<p style="margin-bottom: 0cm;"><strong>Merge sort</strong> is an <em><a style="text-decoration: none; color: #0645ad; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial;" title="Big O notation" href="http://en.wikipedia.org/wiki/Big_O_notation">O</a></em>(<em>n</em> log <em>n</em>) <a style="text-decoration: none; color: #0645ad; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial;" title="Comparison sort" href="http://en.wikipedia.org/wiki/Comparison_sort">comparison-based</a> <a style="text-decoration: none; color: #0645ad; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial;" title="Sorting algorithm" href="http://en.wikipedia.org/wiki/Sorting_algorithm">sorting algorithm</a>. In most implementations it is <a style="text-decoration: none; color: #0645ad; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial;" title="Sorting algorithm" href="http://en.wikipedia.org/wiki/Sorting_algorithm#Classification">stable</a>, meaning that it preserves the input order of equal elements in the sorted output. It is an example of the <a style="text-decoration: none; color: #0645ad; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial;" title="Divide and conquer algorithm" href="http://en.wikipedia.org/wiki/Divide_and_conquer_algorithm">divide and conquer</a> algorithmic paradigm. It was invented by <a style="text-decoration: none; color: #0645ad; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial;" title="John von Neumann" href="http://en.wikipedia.org/wiki/John_von_Neumann">John von Neumann</a> in 1945.</p>
<p style="margin-bottom: 0cm;"><span style="font-family: Arial, sans-serif;"><span style="font-size: xx-small;"><a href="http://en.wikipedia.org/wiki/Merge_sort">http://en.wikipedia.org/wiki/Merge_sort</a></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://jekipedia.com/?feed=rss2&amp;p=319</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>remove events</title>
		<link>http://jekipedia.com/?p=317</link>
		<comments>http://jekipedia.com/?p=317#comments</comments>
		<pubDate>Tue, 31 Aug 2010 23:30:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jekipedia.com/?p=317</guid>
		<description><![CDATA[to remove event listener when a display object is not displayed on stage. i think this way is more secure than use weak reference.
addEventListener(Event.REMOVED_FROM_STAGE, removeAllListener)
 
private function removeAllListener(e:Event):void
 {
 if(state==0){
 removeEventListener(Event.ENTER_FRAME, init)
 }else if (state == 1) {
 removeEventListener(Event.ENTER_FRAME, troopHandler)
 }else {
 removeEventListener(Event.ENTER_FRAME,dieWait)
 }
 if (!imUpgraded) {
 removeEventListener(Event.ENTER_FRAME,removeAllListener)
 }
 removeEventListener(Event.REMOVED_FROM_STAGE, removeAllListener);
 }
private function removeAllListener(e:Event):void 
 [...]]]></description>
			<content:encoded><![CDATA[<p>to remove event listener when a display object is not displayed on stage. i think this way is more secure than use weak reference.</p>
<p><span style="color: #888888;">addEventListener(Event.REMOVED_FROM_STAGE, removeAllListener)</span></p>
<p><span style="color: #888888;"> </span></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">private function removeAllListener(e:Event):void</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>if(state==0){</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>removeEventListener(Event.ENTER_FRAME, init)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>}else if (state == 1) {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>removeEventListener(Event.ENTER_FRAME, troopHandler)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>}else {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>removeEventListener(Event.ENTER_FRAME,dieWait)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>if (!imUpgraded) {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>removeEventListener(Event.ENTER_FRAME,removeAllListener)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>removeEventListener(Event.REMOVED_FROM_STAGE, removeAllListener);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>}</div>
<p><span style="color: #888888;">private function removeAllListener(e:Event):void </span></p>
<p><span style="white-space: pre;"><span style="color: #888888;"> </span></span><span style="color: #888888;">{</span></p>
<p><span style="white-space: pre;"><span style="color: #888888;"> // your custom function here</span></span></p>
<p><span style="white-space: pre;"><span style="color: #888888;"> </span></span><span style="color: #888888;">removeEventListener(Event.REMOVED_FROM_STAGE, removeAllListener);</span></p>
<p><span style="white-space: pre;"><span style="color: #888888;"> </span></span><span style="color: #888888;">}</span></p>
]]></content:encoded>
			<wfw:commentRss>http://jekipedia.com/?feed=rss2&amp;p=317</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>as3 button overlap problem</title>
		<link>http://jekipedia.com/?p=313</link>
		<comments>http://jekipedia.com/?p=313#comments</comments>
		<pubDate>Tue, 24 Aug 2010 12:17:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jekipedia.com/?p=313</guid>
		<description><![CDATA[here&#8217;s quick fix when a display objects overlap buttons
mouseEnabled=false
mouseoverlap
]]></description>
			<content:encoded><![CDATA[<p>here&#8217;s quick fix when a display objects overlap buttons</p>
<p>mouseEnabled=false</p>
<p><a href="http://jekipedia.com/wp-content/uploads/2010/08/as3-mouse-overlap.png"><img class="aligncenter size-medium wp-image-314" title="as3 mouse overlap" src="http://jekipedia.com/wp-content/uploads/2010/08/as3-mouse-overlap-300x110.png" alt="as3 mouse overlap" width="300" height="110" /></a><a href="http://jekipedia.com/wp-content/uploads/2010/08/mouseoverlap.swf">mouseoverlap</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jekipedia.com/?feed=rss2&amp;p=313</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pixels over-burst</title>
		<link>http://jekipedia.com/?p=308</link>
		<comments>http://jekipedia.com/?p=308#comments</comments>
		<pubDate>Sun, 22 Aug 2010 22:40:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jekipedia.com/?p=308</guid>
		<description><![CDATA[here&#8217;s my first music created with fruity loop it has 8 bit feels in it&#8230; enjoy!
created from mixing sample tracks from NES, GBA and atari also couple of drums from fruity loops and scratches from soundsnap
http://kakutogi.deviantart.com/art/pixels-over-burst-176409735
]]></description>
			<content:encoded><![CDATA[<p>here&#8217;s my first music created with fruity loop it has 8 bit feels in it&#8230; enjoy!</p>
<p>created from mixing sample tracks from NES, GBA and atari also couple of drums from fruity loops and scratches from soundsnap</p>
<p><a href="http://kakutogi.deviantart.com/art/pixels-over-burst-176409735">http://kakutogi.deviantart.com/art/pixels-over-burst-176409735</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jekipedia.com/?feed=rss2&amp;p=308</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rain</title>
		<link>http://jekipedia.com/?p=304</link>
		<comments>http://jekipedia.com/?p=304#comments</comments>
		<pubDate>Sun, 08 Aug 2010 12:42:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[game]]></category>
		<category><![CDATA[martial art]]></category>
		<category><![CDATA[my flash game]]></category>

		<guid isPermaLink="false">http://jekipedia.com/?p=304</guid>
		<description><![CDATA[rain is a simple flash movie i made in few hours lol&#8230; it&#8217;s about a kid whos playing under the rain.. and people just passing through, adults seem forget what&#8217;s it&#8217;s like playing under the rain..  
screenshot

link:
http://kakutogi.deviantart.com/art/rain-174472685
enjoy!!
]]></description>
			<content:encoded><![CDATA[<p>rain is a simple flash movie i made in few hours lol&#8230; it&#8217;s about a kid whos playing under the rain.. and people just passing through, adults seem forget what&#8217;s it&#8217;s like playing under the rain.. <img src='http://jekipedia.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>screenshot</p>
<p><a href="http://jekipedia.com/wp-content/uploads/2010/08/screenshot.JPG"><img class="aligncenter size-medium wp-image-305" title="screenshot" src="http://jekipedia.com/wp-content/uploads/2010/08/screenshot-300x199.jpg" alt="screenshot" width="300" height="199" /></a></p>
<p>link:</p>
<p><a href="http://kakutogi.deviantart.com/art/rain-174472685">http://kakutogi.deviantart.com/art/rain-174472685</a></p>
<p>enjoy!!</p>
]]></content:encoded>
			<wfw:commentRss>http://jekipedia.com/?feed=rss2&amp;p=304</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>simulating water in box2D</title>
		<link>http://jekipedia.com/?p=300</link>
		<comments>http://jekipedia.com/?p=300#comments</comments>
		<pubDate>Sat, 03 Jul 2010 00:46:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jekipedia.com/?p=300</guid>
		<description><![CDATA[my first attempt to simulate liquid in BOX2D
link: http://kakutogi.deviantart.com/#/d2t3mqd
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">my first attempt to simulate liquid in BOX2D<a href="http://jekipedia.com/wp-content/uploads/2010/07/BOX2D_water_by_kakutogi1.jpg"><img class="aligncenter size-full wp-image-301" title="screenshot" src="http://jekipedia.com/wp-content/uploads/2010/07/BOX2D_water_by_kakutogi1.jpg" alt="BOX2D_water_by_kakutogi[1]" width="150" height="106" /></a></p>
<p style="text-align: center;">link: http://kakutogi.deviantart.com/#/d2t3mqd</p>
]]></content:encoded>
			<wfw:commentRss>http://jekipedia.com/?feed=rss2&amp;p=300</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>testing out AIR 2.0</title>
		<link>http://jekipedia.com/?p=295</link>
		<comments>http://jekipedia.com/?p=295#comments</comments>
		<pubDate>Thu, 17 Jun 2010 23:15:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jekipedia.com/?p=295</guid>
		<description><![CDATA[just installed cs5 today been curious how adobe AIR will perform on my PC so i make a quick particle app (warning probably not very stable since the development time is under 1 hour, been spawning lot&#8217;s of particles without crash at all but better be careful) lol ..
been testing it and it&#8217;s running very [...]]]></description>
			<content:encoded><![CDATA[<p>just installed cs5 today been curious how adobe AIR will perform on my PC so i make a quick particle app (warning probably not very stable since the development time is under 1 hour, been spawning lot&#8217;s of particles without crash at all but better be careful) lol ..<br />
been testing it and it&#8217;s running very fast compared to web version, so probably more complex game is to be expected coming to your PC in the future!<br />
<a href="http://jekipedia.com/wp-content/uploads/2010/06/Capture.JPG"><img class="aligncenter size-medium wp-image-298" title="screenshot" src="http://jekipedia.com/wp-content/uploads/2010/06/Capture-241x300.jpg" alt="screenshot" width="241" height="300" /></a></p>
<p>using blur and glow filter for every single particle.. im torturing out the AIR app and my PC, now it&#8217;s your turn haha!! <img src='http://jekipedia.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>download here <a href="http://jekipedia.com/wp-content/uploads/2010/06/firework.exe">firework.exe</a> or <a href="http://jekipedia.com/wp-content/uploads/2010/06/firework.air">firework.air</a></p>
<p>firework.air : http://jekipedia.com/wp-content/uploads/2010/06/firework.air</p>
<p>fire work.exe: http://jekipedia.com/wp-content/uploads/2010/06/firework.ex</p>
]]></content:encoded>
			<wfw:commentRss>http://jekipedia.com/?feed=rss2&amp;p=295</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>box2D sound spectrum</title>
		<link>http://jekipedia.com/?p=289</link>
		<comments>http://jekipedia.com/?p=289#comments</comments>
		<pubDate>Fri, 11 Jun 2010 08:22:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jekipedia.com/?p=289</guid>
		<description><![CDATA[just playing around with box2D engine and sound spectrum class
how to use:
just download the zip file, extract, open the HTML file and put song URL into input box
preview link: http://www.jekipedia.com/upload/sound/boxSound.html or http://kakutogi.deviantart.com/#/d2rjn1t
download link: http://www.jekipedia.com/upload/sound/boxSound.zip
the music is: you fought wars by cannon ball
check out their youtube music video here: http://www.youtube.com/watch?v=dMm30Eu2NJc
]]></description>
			<content:encoded><![CDATA[<p>just playing around with box2D engine and sound spectrum class</p>
<div id="attachment_290" class="wp-caption aligncenter" style="width: 310px"><a href="http://jekipedia.com/wp-content/uploads/2010/06/Capture.PNG"><img class="size-medium wp-image-290" title="screenshot" src="http://jekipedia.com/wp-content/uploads/2010/06/Capture-300x222.PNG" alt="screenshot" width="300" height="222" /></a><p class="wp-caption-text">screenshot</p></div>
<p>how to use:</p>
<p>just download the zip file, extract, open the HTML file and put song URL into input box</p>
<p>preview link: <a href="http://www.jekipedia.com/upload/sound/boxSound.html">http://www.jekipedia.com/upload/sound/boxSound.html</a> or<a href="http://www.jekipedia.com/upload/sound/boxSound.html"> </a><a href="http://kakutogi.deviantart.com/#/d2rjn1t">http://kakutogi.deviantart.com/#/d2rjn1t</a></p>
<p>download link: <a href="http://www.jekipedia.com/upload/sound/boxSound.zip">http://www.jekipedia.com/upload/sound/boxSound.zip</a></p>
<p>the music is: you fought wars by cannon ball</p>
<p>check out their youtube music video here: http://www.youtube.com/watch?v=dMm30Eu2NJc</p>
]]></content:encoded>
			<wfw:commentRss>http://jekipedia.com/?feed=rss2&amp;p=289</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>shaper: iphone game concept</title>
		<link>http://jekipedia.com/?p=277</link>
		<comments>http://jekipedia.com/?p=277#comments</comments>
		<pubDate>Fri, 21 May 2010 21:32:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jekipedia.com/?p=277</guid>
		<description><![CDATA[simple game made for iphone with flash viper, didnt had any chance to try it because apple ends their agreement with adobe
i dunno if this game can be played with other mobile phone with flash player, but let me know
goal of this game is simple, you have to draw the line as shown, you can [...]]]></description>
			<content:encoded><![CDATA[<p>simple game made for iphone with flash viper, didnt had any chance to try it because apple ends their agreement with adobe</p>
<p>i dunno if this game can be played with other mobile phone with flash player, but let me know</p>
<div id="attachment_278" class="wp-caption aligncenter" style="width: 204px"><a href="http://jekipedia.com/wp-content/uploads/2010/05/shaper.PNG"><img class="size-medium wp-image-278" title="shaper" src="http://jekipedia.com/wp-content/uploads/2010/05/shaper-194x300.PNG" alt="screenshot" width="194" height="300" /></a><p class="wp-caption-text">screenshot</p></div>
<p>goal of this game is simple, you have to draw the line as shown, you can draw it backward as long as it&#8217;s match it&#8217;s general shape. code and simple <span style="text-decoration: line-through;">crappy</span> graphics are made by me.</p>
<p><div id="attachment_279" class="wp-caption aligncenter" style="width: 235px"><a href="http://jekipedia.com/wp-content/uploads/2010/05/19186_5401.jpg"><img class="size-medium wp-image-279" src="http://jekipedia.com/wp-content/uploads/2010/05/19186_5401-225x300.jpg" alt="19186_540[1]" width="225" height="300" /></a><p class="wp-caption-text">mint quote to spice up me blog</p></div>the picture above is taken from here: the credit goes to this lad or lass?! <a href="http://rexgios.deviantart.com/art/Fruits-155140219">http://rexgios.deviantart.com/art/Fruits-155140219</a></p>
<p>anyway here&#8217;s me game <img src='http://jekipedia.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a href="http://kakutogi.deviantart.com/art/shaper-164832392">http://kakutogi.deviantart.com/art/shaper-164832392</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jekipedia.com/?feed=rss2&amp;p=277</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
