<?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>mystic nomad</title>
	<atom:link href="http://mysticnomad.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mysticnomad.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 04 Feb 2009 06:05:47 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='mysticnomad.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/d13a92ed44db556fd7c4784b8a637684?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>mystic nomad</title>
		<link>http://mysticnomad.wordpress.com</link>
	</image>
			<item>
		<title>Tour de Flex</title>
		<link>http://mysticnomad.wordpress.com/2009/02/04/tour-de-flex/</link>
		<comments>http://mysticnomad.wordpress.com/2009/02/04/tour-de-flex/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 06:05:47 +0000</pubDate>
		<dc:creator>Karan Palan</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://mysticnomad.wordpress.com/?p=129</guid>
		<description><![CDATA[Tour de Flex is awesome!
 Tagged: Flex      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mysticnomad.wordpress.com&blog=3168486&post=129&subd=mysticnomad&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://mysticnomad.wordpress.com/2009/02/04/tour-de-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">karanpalan</media:title>
		</media:content>
	</item>
		<item>
		<title>Validating real/integer numbers in Flex</title>
		<link>http://mysticnomad.wordpress.com/2008/12/19/validating-realinteger-numbers-in-flex/</link>
		<comments>http://mysticnomad.wordpress.com/2008/12/19/validating-realinteger-numbers-in-flex/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 10:35:42 +0000</pubDate>
		<dc:creator>Karan Palan</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[integer]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[real]]></category>
		<category><![CDATA[validator]]></category>

		<guid isPermaLink="false">http://mysticnomad.wordpress.com/?p=111</guid>
		<description><![CDATA[Written for: Flex
Below is a short code to determine whether a number is real (floating). To find if a number is an integer, change the domain property in NumberValidator tag from &#8220;real&#8221; to &#8220;int&#8221;.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
    layout=&#34;vertical&#34;&#62;

    &#60;mx:Script&#62;
        &#60;![CDATA[
            import mx.controls.Alert;
        ]]&#62;
    &#60;/mx:Script&#62;

    &#60;mx:TextInput id=&#34;myTxtInput&#34;/&#62; 

    &#60;mx:NumberValidator id=&#34;myNumberValidator&#34;
        domain=&#34;real&#34;
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mysticnomad.wordpress.com&blog=3168486&post=111&subd=mysticnomad&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://mysticnomad.wordpress.com/2008/12/19/validating-realinteger-numbers-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">karanpalan</media:title>
		</media:content>
	</item>
		<item>
		<title>AS3.0: Add one or more elements to the begining of an array</title>
		<link>http://mysticnomad.wordpress.com/2008/11/07/as30-add-one-or-more-element-to-the-begining-of-an-array/</link>
		<comments>http://mysticnomad.wordpress.com/2008/11/07/as30-add-one-or-more-element-to-the-begining-of-an-array/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 11:30:37 +0000</pubDate>
		<dc:creator>Karan Palan</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[array]]></category>

		<guid isPermaLink="false">http://mysticnomad.wordpress.com/?p=107</guid>
		<description><![CDATA[Written for: ActionScript 3.0
To add one or more elements to the begining of an array, you will have to use unshift method of Array class.
Below is an example.

var albums:Array = new Array(&#34;Natty Dread&#34;,&#34;Rastaman Vibration&#34;,&#34;Exodus&#34;,&#34;Kaya&#34;);
albums.unshift(&#34;Catch A Fire&#34;);

trace(albums); //Catch A Fire,Natty Dread,Rastaman Vibration,Exodus,Kaya

 Tagged: ActionScript, array      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mysticnomad.wordpress.com&blog=3168486&post=107&subd=mysticnomad&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://mysticnomad.wordpress.com/2008/11/07/as30-add-one-or-more-element-to-the-begining-of-an-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">karanpalan</media:title>
		</media:content>
	</item>
		<item>
		<title>Bombay &#8211; (Rickshaw or Taxi) = Beautiful Bombay</title>
		<link>http://mysticnomad.wordpress.com/2008/10/16/bombay-rickshaw-or-taxi-beautiful-bombay/</link>
		<comments>http://mysticnomad.wordpress.com/2008/10/16/bombay-rickshaw-or-taxi-beautiful-bombay/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 07:02:00 +0000</pubDate>
		<dc:creator>Karan Palan</dc:creator>
				<category><![CDATA[Bombay]]></category>

		<guid isPermaLink="false">http://mysticnomad.wordpress.com/?p=100</guid>
		<description><![CDATA[I had the most pleasant ride to work today. The reason being &#8211; there were absolutely no god damn rickshaws or taxis on the streets of Bombay.  The reason for that being &#8211; they had a stupid strike (The hardship of which will never be known).
To see Bombay, devoid of rickshaws or taxis is unimaginable. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mysticnomad.wordpress.com&blog=3168486&post=100&subd=mysticnomad&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://mysticnomad.wordpress.com/2008/10/16/bombay-rickshaw-or-taxi-beautiful-bombay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">karanpalan</media:title>
		</media:content>
	</item>
		<item>
		<title>Fastest way to shut down Windows OS</title>
		<link>http://mysticnomad.wordpress.com/2008/09/27/fastest-way-to-shut-down-windows-os/</link>
		<comments>http://mysticnomad.wordpress.com/2008/09/27/fastest-way-to-shut-down-windows-os/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 13:58:50 +0000</pubDate>
		<dc:creator>Karan Palan</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[shutdown]]></category>

		<guid isPermaLink="false">http://mysticnomad.wordpress.com/?p=96</guid>
		<description><![CDATA[Tired of fucking waiting and waiting&#8230;. for Windows to shut down. Yeah, I do!
Here&#8217;s a way which will shut down Windows completely in few seconds. 
Press Ctrl-Alt-Del to open Windows Task Manager, click on Shut Down menu option and while pressing the Ctrl key, click on the Turn Off option.
Now as you count 1&#8230;2&#8230;.3&#8230;.4&#8230;..5&#8230;.System Shut Down
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mysticnomad.wordpress.com&blog=3168486&post=96&subd=mysticnomad&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://mysticnomad.wordpress.com/2008/09/27/fastest-way-to-shut-down-windows-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">karanpalan</media:title>
		</media:content>
	</item>
		<item>
		<title>Dynamically add element / attribute to a XML using E4X</title>
		<link>http://mysticnomad.wordpress.com/2008/09/25/dynamically-add-element-attribute-to-a-xml-using-e4x/</link>
		<comments>http://mysticnomad.wordpress.com/2008/09/25/dynamically-add-element-attribute-to-a-xml-using-e4x/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 06:31:11 +0000</pubDate>
		<dc:creator>Karan Palan</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[e4x]]></category>

		<guid isPermaLink="false">http://mysticnomad.wordpress.com/?p=93</guid>
		<description><![CDATA[Written for: Flex, ActionScript 3.0
To dynamically add element / attribute to a XML; assume that it already exists in the XML and using the .(dot) operator, pass a value to it.
Here&#8217;s an example. Consider the following XML:

var albumXML:XML =
&#60;tracks&#62;
	    &#60;song tracknumber=&#34;1&#34;&#62;
	        &#60;title&#62;Orgasm Addict&#60;/title&#62;
	    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mysticnomad.wordpress.com&blog=3168486&post=93&subd=mysticnomad&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://mysticnomad.wordpress.com/2008/09/25/dynamically-add-element-attribute-to-a-xml-using-e4x/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">karanpalan</media:title>
		</media:content>
	</item>
		<item>
		<title>Sweet Dreams of Roy Buchanan</title>
		<link>http://mysticnomad.wordpress.com/2008/09/18/sweet-dreams-of-roy-buchanan/</link>
		<comments>http://mysticnomad.wordpress.com/2008/09/18/sweet-dreams-of-roy-buchanan/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 13:10:32 +0000</pubDate>
		<dc:creator>Karan Palan</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[guitar]]></category>
		<category><![CDATA[roybuchanan]]></category>

		<guid isPermaLink="false">http://mysticnomad.wordpress.com/?p=90</guid>
		<description><![CDATA[
Love ya Roy!
Peace.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mysticnomad.wordpress.com&blog=3168486&post=90&subd=mysticnomad&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://mysticnomad.wordpress.com/2008/09/18/sweet-dreams-of-roy-buchanan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">karanpalan</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/b-napaZr48s/2.jpg" medium="image" />
	</item>
		<item>
		<title>Kinda makes you think&#8230;&#8230;doesnt it?</title>
		<link>http://mysticnomad.wordpress.com/2008/09/17/kinda-makes-you-thinkdoesnt-it/</link>
		<comments>http://mysticnomad.wordpress.com/2008/09/17/kinda-makes-you-thinkdoesnt-it/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 13:19:48 +0000</pubDate>
		<dc:creator>Karan Palan</dc:creator>
				<category><![CDATA[Gazy]]></category>
		<category><![CDATA[pic]]></category>

		<guid isPermaLink="false">http://mysticnomad.wordpress.com/?p=88</guid>
		<description><![CDATA[
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mysticnomad.wordpress.com&blog=3168486&post=88&subd=mysticnomad&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://mysticnomad.wordpress.com/2008/09/17/kinda-makes-you-thinkdoesnt-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">karanpalan</media:title>
		</media:content>

		<media:content url="http://i37.tinypic.com/huizwh.jpg" medium="image">
			<media:title type="html">Did you imagine?</media:title>
		</media:content>
	</item>
		<item>
		<title>hmmm&#8230;Thats easy!</title>
		<link>http://mysticnomad.wordpress.com/2008/09/12/hmmmthats-easy/</link>
		<comments>http://mysticnomad.wordpress.com/2008/09/12/hmmmthats-easy/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 11:50:02 +0000</pubDate>
		<dc:creator>Karan Palan</dc:creator>
				<category><![CDATA[Royal Enfield]]></category>
		<category><![CDATA[bullet]]></category>
		<category><![CDATA[enfield]]></category>
		<category><![CDATA[royalenfield]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://mysticnomad.wordpress.com/?p=86</guid>
		<description><![CDATA[Found this video on YouTube under the title &#8211; &#8220;The Art of Starting a Royal Enfield (1)&#8221;. Being a hardcore Enfield rider myself, I was expecting a kick start with a lot of back kicks thrown in for that extra punch. What I found in the end was really funny. Check it out.
By the way, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mysticnomad.wordpress.com&blog=3168486&post=86&subd=mysticnomad&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://mysticnomad.wordpress.com/2008/09/12/hmmmthats-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">karanpalan</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/iuHvxVjDxL8/2.jpg" medium="image" />
	</item>
		<item>
		<title>LHC &#8211; Ohh Yeah!</title>
		<link>http://mysticnomad.wordpress.com/2008/09/12/lhc-ohh-yeah/</link>
		<comments>http://mysticnomad.wordpress.com/2008/09/12/lhc-ohh-yeah/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 19:46:25 +0000</pubDate>
		<dc:creator>Karan Palan</dc:creator>
				<category><![CDATA[Science]]></category>
		<category><![CDATA[lhc]]></category>
		<category><![CDATA[physics]]></category>

		<guid isPermaLink="false">http://mysticnomad.wordpress.com/?p=84</guid>
		<description><![CDATA[I know I&#8217;m delayed by a couple of days, but still considering the enormous nature of the project and the scientific significance I would like to say &#8211; &#8220;Collide those damn particles and lets see what we get!&#8221;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mysticnomad.wordpress.com&blog=3168486&post=84&subd=mysticnomad&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://mysticnomad.wordpress.com/2008/09/12/lhc-ohh-yeah/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">karanpalan</media:title>
		</media:content>
	</item>
	</channel>
</rss>