<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-5551256897666868164</atom:id><lastBuildDate>Sat, 26 Apr 2025 11:45:29 +0000</lastBuildDate><category>ted</category><category>ted 2009</category><category>flex</category><category>AIR</category><category>AVATAR TRAILER</category><category>Adobe</category><category>Barry Schwartz</category><category>BrowserLab</category><category>Google Dictionary</category><category>LabelTextInput</category><category>Mallika Sarabhai</category><category>Pranav Mistry</category><category>Ryan Lobo</category><category>SMSTWEET</category><category>The thrilling potential of SixthSense technology</category><category>android development</category><category>bike stolen in bangalore</category><category>bublling event from popup</category><category>elips</category><category>event dispatch from popup</category><category>event in popuip handler in parent mxml</category><category>filesystem using air</category><category>filesystem using flex</category><category>future digital world</category><category>independence day</category><category>iphone development</category><category>label  text in flex</category><category>mobile appliation developement using flex</category><category>mobile development using flex</category><category>paradox of choice</category><category>praveen blog</category><category>procedure to recover stolen vehicle in bangalore</category><category>symbian developement</category><category>telugu</category><category>too much choice spoils selection</category><category>tweet</category><category>twitter</category><category>windows mobile development</category><title>I WiLl Be LiKe ThIs</title><description></description><link>http://iwillbelikethis.blogspot.com/</link><managingEditor>noreply@blogger.com (Praveen Munaga)</managingEditor><generator>Blogger</generator><openSearch:totalResults>45</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-4518828421768599828</guid><pubDate>Fri, 01 Mar 2013 06:14:00 +0000</pubDate><atom:updated>2013-03-01T11:45:51.348+05:30</atom:updated><title>Apache Flex got it&#39;s own website</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Apache Flex got it&#39;s own website: &lt;a href=&quot;http://flex.apache.org/&quot;&gt;http://flex.apache.org/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
[May be a late news but it&#39;s better late then never.]&lt;br /&gt;
&lt;br /&gt;
We can track all Flex related updates like what&#39;s going on into the Flex development by the community, new Flex SDK releases etc through this website.&lt;/div&gt;
</description><link>http://iwillbelikethis.blogspot.com/2013/03/apache-flex-got-its-own-website-httpflex.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-7709682497964792706</guid><pubDate>Tue, 13 Dec 2011 06:47:00 +0000</pubDate><atom:updated>2011-12-13T15:28:59.296+05:30</atom:updated><title>Adobe Flex is now Apache Flex</title><description>As all of us know that Adobe is donating Flex SDK to Apache Foundation and Spoon project. Adobe says it still contributes to Flex SDK but it also want all of us who work on &amp; use Flex to start contribute to the Flex SDK now.&lt;br /&gt;&lt;br /&gt;Click &lt;a href=&quot;http://www.spoon.as/&quot;&gt;here &lt;/a&gt;for the Spoon project.&lt;br /&gt;&lt;br /&gt;Adobe is presently (at time of writing this post) conducting an flexsummit with some key partners to discuss the future of flex and explain their commitment(!!!!!) to flex technology and how they want to take Flex forward with help of community. Spoon Project is posting some live comments on the ongoing flexsummit &lt;a href=&quot;http://www.spoon.as/2011/flex-summit-live-updates/&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;follow @SpoonProject, @iamdeepa on twitter for further latest updates.</description><link>http://iwillbelikethis.blogspot.com/2011/12/adobe-flex-is-now-apache-flex.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-5880083858627265295</guid><pubDate>Fri, 05 Aug 2011 11:41:00 +0000</pubDate><atom:updated>2011-08-08T14:47:02.616+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">filesystem using air</category><category domain="http://www.blogger.com/atom/ns#">filesystem using flex</category><title>Know File System using Flex/AIR in a Win Machnie</title><description>Below is a small code snippet to know File System info in a Windows Machine using Flex/AIR.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;var ta1:TextArea = new TextArea();&lt;br /&gt;&lt;br /&gt;protected function getFS(event:MouseEvent):void&lt;br /&gt;{&lt;br /&gt;   try&lt;br /&gt;   {&lt;br /&gt;        ta1.text = &#39;&#39;;&lt;br /&gt;        var processInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();&lt;br /&gt;     &lt;br /&gt;        var commands:Vector.&lt;String&gt; = new Vector.&lt;String&gt;();&lt;br /&gt;        commands[0] = &quot;fsinfo&quot;; &lt;br /&gt;        commands[1] = &quot;statistics&quot;; &lt;br /&gt;        commands[2] = &quot;c:&quot;; &lt;br /&gt;     &lt;br /&gt;        processInfo.arguments = commands;     &lt;br /&gt;        processInfo.executable = new File(&#39;C:/WINDOWS/system32/fsutil.exe&#39;);&lt;br /&gt;     &lt;br /&gt;        process = new NativeProcess();&lt;br /&gt;   &lt;br /&gt;        process.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA, onOutPutProgress, false, 0, true);&lt;br /&gt;   &lt;br /&gt;        process.addEventListener(NativeProcessExitEvent.EXIT, handleExit2);&lt;br /&gt;        process.start(processInfo);&lt;br /&gt;   }&lt;br /&gt;   catch(e:Error)&lt;br /&gt;   {&lt;br /&gt;        Alert.show(e.message,&quot;Error&quot;);&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;   &lt;br /&gt;protected function handleExit2(event:NativeProcessExitEvent):void&lt;br /&gt;{&lt;br /&gt;   if(event.exitCode == 0)&lt;br /&gt;   {&lt;br /&gt;        var str:String = ta1.text;&lt;br /&gt;        str = str.split(&#39;\n&#39;)[0];&lt;br /&gt;        str = StringUtils.removeExtraWhitespace(str);&lt;br /&gt;        str = str.substr(str.lastIndexOf(&#39; &#39;), str.length);&lt;br /&gt;        Alert.show(&#39;File System of C drive: &#39; + str);&lt;br /&gt;   }&lt;br /&gt;   else&lt;br /&gt;   {&lt;br /&gt;        Alert.show(&#39;Unable to get File System details&#39;);&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;   &lt;br /&gt;   &lt;br /&gt;protected function onOutPutProgress(event:ProgressEvent):void&lt;br /&gt;{&lt;br /&gt;   ta1.text += process.standardOutput.readUTFBytes(process.standardOutput.bytesAvailable);&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;fsutil (C:/WINDOWS/system32/fsutil.exe) is a utitlity/exe which gives a lot of info on file system in a windows machine. I used this only to extract some file system info but you can know more about &#39;fsutil&#39; from &lt;a href=&quot;http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/fsutil.mspx?mfr=true&quot;&gt;here&lt;/a&gt; and explore more options yourself.&lt;br /&gt;&lt;br /&gt;This code snippet uses some Flex AIR API&#39;s like NativeProcessStartupInfo and this code can be tested only after generating an executable (exe).</description><link>http://iwillbelikethis.blogspot.com/2011/08/know-file-system-using-flexair-in-win.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-8546324769853117781</guid><pubDate>Fri, 17 Sep 2010 09:26:00 +0000</pubDate><atom:updated>2010-10-21T19:20:25.340+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">flex</category><category domain="http://www.blogger.com/atom/ns#">label  text in flex</category><category domain="http://www.blogger.com/atom/ns#">LabelTextInput</category><title>LabelTextInput in Flex 3</title><description>Looking for a Flex 3 component which acts like a TextInput and Label. The following component achieves the purpose. This component will act like a Label by default. But &#39;on mouse over&#39; it will turn into a TextInput where we can enter text and &#39;on mover out&#39; it will be again changed to Label.&lt;br /&gt;&lt;br /&gt;&lt;pre style=&quot;font-weight: bold;&quot;&gt;LabelTextInput.as&lt;/pre&gt;&lt;br /&gt;&lt;pre&gt;package&lt;br /&gt;{&lt;br /&gt;  import flash.events.Event;&lt;br /&gt;  import flash.events.FocusEvent;&lt;br /&gt;  import flash.events.MouseEvent;&lt;br /&gt; &lt;br /&gt;  import mx.controls.TextInput;&lt;br /&gt;&lt;br /&gt;  public class LabelTextInput extends TextInput&lt;br /&gt;  {&lt;br /&gt;    public function LabelTextInput()&lt;br /&gt;    {&lt;br /&gt;      super();&lt;br /&gt;      addEventListener(MouseEvent.MOUSE_OVER,onMouseOver);&lt;br /&gt;      addEventListener(MouseEvent.MOUSE_OUT,onMouseOut);&lt;br /&gt;      addEventListener(Event.CHANGE,onChange);&lt;br /&gt;      addEventListener( FocusEvent.FOCUS_IN, onFocusIn );&lt;br /&gt;      addEventListener( FocusEvent.FOCUS_OUT, onFocusOut );&lt;br /&gt;   &lt;br /&gt;      this.setStyle(&quot;borderStyle&quot;,&quot;none&quot;);&lt;br /&gt;      this.setStyle(&quot;backgroundAlpha&quot;,0);&lt;br /&gt;    }&lt;br /&gt;  &lt;br /&gt;    private var _promptText:String = &#39;&#39;;&lt;br /&gt;    private var _previousText:String;&lt;br /&gt;  &lt;br /&gt;    public function set promptText(value:String):void&lt;br /&gt;    {&lt;br /&gt;      _promptText = value;&lt;br /&gt;      super.text = value;&lt;br /&gt;      this.setStyle(&quot;fontStyle&quot;,&quot;italic&quot;);&lt;br /&gt;    }&lt;br /&gt;  &lt;br /&gt;    public function get promptText():String&lt;br /&gt;    {&lt;br /&gt;      return _promptText;&lt;br /&gt;    }&lt;br /&gt;  &lt;br /&gt;    override public function set text(value:String):void&lt;br /&gt;    {&lt;br /&gt;      if(value != &#39;&#39;)&lt;br /&gt;      {&lt;br /&gt;        this.setStyle(&quot;fontStyle&quot;,&quot;normal&quot;);&lt;br /&gt;        super.text = value;&lt;br /&gt;      }&lt;br /&gt;      else&lt;br /&gt;      {&lt;br /&gt;        this.setStyle(&quot;fontStyle&quot;,&quot;italic&quot;);&lt;br /&gt;        super.text = _promptText;&lt;br /&gt;      }        &lt;br /&gt;    }&lt;br /&gt;    &lt;br /&gt;    override public function get text():String&lt;br /&gt;    {&lt;br /&gt;      if(super.text == _promptText)&lt;br /&gt;        return &quot;&quot;;&lt;br /&gt;      else&lt;br /&gt;        return super.text;&lt;br /&gt;    }&lt;br /&gt;  &lt;br /&gt;    private function onMouseOver(event:MouseEvent):void&lt;br /&gt;    {&lt;br /&gt;      this.setStyle(&quot;borderStyle&quot;,&quot;outset&quot;);&lt;br /&gt;      if(super.text == &#39;&#39;)&lt;br /&gt;      {&lt;br /&gt;        promptText = _promptText;&lt;br /&gt;       }&lt;br /&gt;    }&lt;br /&gt;  &lt;br /&gt;    private function onMouseOut(event:MouseEvent):void&lt;br /&gt;    {&lt;br /&gt;      this.setStyle(&quot;borderStyle&quot;,&quot;none&quot;);&lt;br /&gt;    }&lt;br /&gt;  &lt;br /&gt;    private function onChange(event:Event):void&lt;br /&gt;    {&lt;br /&gt;      if(super.text == _promptText)&lt;br /&gt;      {&lt;br /&gt;        this.setStyle(&quot;fontStyle&quot;,&quot;italic&quot;);&lt;br /&gt;      }&lt;br /&gt;      else&lt;br /&gt;      {&lt;br /&gt;        this.setStyle(&quot;fontStyle&quot;,&quot;normal&quot;);&lt;br /&gt;        this.setFocus();&lt;br /&gt;      }&lt;br /&gt;    }&lt;br /&gt;  &lt;br /&gt;    private function onFocusIn(event:FocusEvent):void&lt;br /&gt;    {&lt;br /&gt;      if(super.text == _promptText)&lt;br /&gt;      {&lt;br /&gt;        this.setSelection(0,textField.text.length);&lt;br /&gt;        this.setFocus();&lt;br /&gt;      }   &lt;br /&gt;    }&lt;br /&gt;  &lt;br /&gt;    private function onFocusOut(event:FocusEvent):void&lt;br /&gt;    {&lt;br /&gt;      this.setStyle(&quot;borderStyle&quot;,&quot;none&quot;);   &lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Feel free to leave your comments.</description><link>http://iwillbelikethis.blogspot.com/2010/09/labeltextinput-in-flex-3.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-810946017053688156</guid><pubDate>Sun, 15 Aug 2010 10:19:00 +0000</pubDate><atom:updated>2010-08-15T15:58:30.929+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">independence day</category><title>Happy Birthday to My Country</title><description>&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&lt;span style=&quot;color: rgb(255, 153, 102);&quot;&gt;Happy&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 0);font-family:arial;&quot; &gt;Independence &lt;/span&gt;&lt;span style=&quot;color: rgb(51, 204, 0);&quot;&gt;Day&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUVF7SyYB5CVEcY3Wmim5MAz2KpiW0m8x9YZk-tetKcZCVK0g3HORiyeMCYioSpLcn6dPczyj57i8bB8skddxid5r65i0shnvJEvWo4GKKGGD440-gUsunj9z7IUbS0H6SQqqvhmh8OLB9/s1600/id.jpg&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 498px; height: 531px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUVF7SyYB5CVEcY3Wmim5MAz2KpiW0m8x9YZk-tetKcZCVK0g3HORiyeMCYioSpLcn6dPczyj57i8bB8skddxid5r65i0shnvJEvWo4GKKGGD440-gUsunj9z7IUbS0H6SQqqvhmh8OLB9/s400/id.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5505579860324727442&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</description><link>http://iwillbelikethis.blogspot.com/2010/08/happy-birthday-to-my-country.html</link><author>noreply@blogger.com (Praveen Munaga)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUVF7SyYB5CVEcY3Wmim5MAz2KpiW0m8x9YZk-tetKcZCVK0g3HORiyeMCYioSpLcn6dPczyj57i8bB8skddxid5r65i0shnvJEvWo4GKKGGD440-gUsunj9z7IUbS0H6SQqqvhmh8OLB9/s72-c/id.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-697577630819895483</guid><pubDate>Thu, 22 Jul 2010 09:25:00 +0000</pubDate><atom:updated>2010-07-22T14:57:01.929+05:30</atom:updated><title>Trader&#39;s Goal</title><description>&lt;span style=&quot;font-weight: bold; color: rgb(51, 51, 255);font-size:100%;&quot; &gt;&lt;span style=&quot;font-size: 10pt; font-family: trebuchet ms;&quot;&gt;A  trader’s first goal must be long-term survival; second goal, a steady  growth of capital; and your third goal, making high profits.  Unfortunately, many traders come to the market with third point as first  goal.&lt;/span&gt;&lt;/span&gt;</description><link>http://iwillbelikethis.blogspot.com/2010/07/traders-goal.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-7280060523952981222</guid><pubDate>Thu, 10 Jun 2010 04:40:00 +0000</pubDate><atom:updated>2010-06-10T11:12:14.829+05:30</atom:updated><title>Single/Multi line in one Component in Flex 3</title><description>In Flex 3 TextInput component allows single line &amp;amp; TextArea allows multi line text input. Want to have an single component which will allow both., then use below code (component)&lt;br /&gt;&lt;br /&gt;&lt;pre style=&quot;font-weight: bold;&quot;&gt;SingleMutiLineTextArea.as&lt;br /&gt;&lt;/pre&gt;package components&lt;br /&gt;&lt;pre&gt;{&lt;br /&gt;   import flash.events.Event;&lt;br /&gt;   import flash.events.KeyboardEvent;&lt;br /&gt;   import flash.events.TextEvent;&lt;br /&gt;   import flash.ui.Keyboard;&lt;br /&gt;   import mx.controls.TextArea;&lt;br /&gt;&lt;br /&gt;   public class SingleMutiLineTextArea extends TextArea&lt;br /&gt;   {&lt;br /&gt;       public function SingleMutiLineTextArea()&lt;br /&gt;       {&lt;br /&gt;           super();&lt;br /&gt;           this.addEventListener(TextEvent.TEXT_INPUT,onTextInput);&lt;br /&gt;       }&lt;br /&gt;&lt;br /&gt;       private var _multiLine:Boolean = false;&lt;br /&gt;&lt;br /&gt;       public function set multiLine(value:Boolean):void&lt;br /&gt;       {&lt;br /&gt;          multiLine = value;&lt;br /&gt;       }&lt;br /&gt;&lt;br /&gt;       public function get multiLine():Boolean&lt;br /&gt;       {&lt;br /&gt;          return _multiLine;&lt;br /&gt;       }&lt;br /&gt;&lt;br /&gt;       private function onTextInput(event:TextEvent):void&lt;br /&gt;      {&lt;br /&gt;          if (!_multiLine  &amp;amp;&amp;amp; (event.text.charCodeAt() == 10 ||   event.text.indexOf(String.fromCharCode(10))!=-1))&lt;br /&gt;          {&lt;br /&gt;             event.preventDefault();&lt;br /&gt;          }&lt;br /&gt;      }&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If the property &#39;multiLine&#39; is set to &#39;true&#39; it accepts multiline entering of text., if it is set to &#39;false&#39; it wont allow.&lt;br /&gt;&lt;br /&gt;Leave you comments below if found useful</description><link>http://iwillbelikethis.blogspot.com/2010/06/singlemulti-line-in-one-component-in.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-4919301645399573418</guid><pubDate>Sat, 08 May 2010 12:15:00 +0000</pubDate><atom:updated>2010-05-08T18:21:16.036+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">bike stolen in bangalore</category><category domain="http://www.blogger.com/atom/ns#">procedure to recover stolen vehicle in bangalore</category><title>My Musings with/on my bike</title><description>&lt;meta equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;&lt;meta name=&quot;ProgId&quot; content=&quot;Word.Document&quot;&gt;&lt;meta name=&quot;Generator&quot; content=&quot;Microsoft Word 11&quot;&gt;&lt;meta name=&quot;Originator&quot; content=&quot;Microsoft Word 11&quot;&gt;&lt;link rel=&quot;File-List&quot; href=&quot;file:///C:%5CDOCUME%7E1%5CPRAVEE%7E1.KUM%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml&quot;&gt;&lt;o:smarttagtype namespaceuri=&quot;urn:schemas-microsoft-com:office:smarttags&quot; name=&quot;City&quot;&gt;&lt;/o:smarttagtype&gt;&lt;o:smarttagtype namespaceuri=&quot;urn:schemas-microsoft-com:office:smarttags&quot; name=&quot;place&quot;&gt;&lt;/o:smarttagtype&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate=&quot;false&quot; latentstylecount=&quot;156&quot;&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if !mso]&gt;&lt;object classid=&quot;clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D&quot; id=&quot;ieooui&quot;&gt;&lt;/object&gt; &lt;style&gt; st1\:*{behavior:url(#ieooui) } &lt;/style&gt; &lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:Wingdings; 	panose-1:5 0 0 0 0 0 0 0 0 0; 	mso-font-charset:2; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:0 268435456 0 0 -2147483648 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:&quot;&quot;; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:&quot;Times New Roman&quot;; 	mso-fareast-font-family:&quot;Times New Roman&quot;;} a:link, span.MsoHyperlink 	{color:blue; 	text-decoration:underline; 	text-underline:single;} a:visited, span.MsoHyperlinkFollowed 	{color:purple; 	text-decoration:underline; 	text-underline:single;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:&quot;Table Normal&quot;; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:&quot;&quot;; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:&quot;Times New Roman&quot;; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} &lt;/style&gt; &lt;![endif]--&gt;&lt;p class=&quot;MsoNormal&quot;&gt;My bike was stolen in &lt;st1:city st=&quot;on&quot;&gt;&lt;st1:place st=&quot;on&quot;&gt;Bangalore&lt;/st1:place&gt;&lt;/st1:city&gt; on a night of  April when I went to my hometown. Totally 12 bikes are there where I parked mine, but I am LUCKY person to lose bike. Still I didn’t know why the thief took my 6 year old bike leaving 2 months old ones which were parked with mine. On next day I went to my nearest police station and informed them regarding this.&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;The first thing I learnt here is in every police station there is ONLY ONE person with whom we had to deal regarding these stolen/theft cases.&lt;/i&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;The police whom I met told that he will file an FIR if I want it for insurance or else he will just take a complaint. I too agreed for this as I had to search for my insurance papers. So I just gave details regarding mine &amp;amp; my bike and left that place.&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;After a few days I was informed that my bike was found but in an another police station.&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;I neither given complaint nor filed FIR upto now but it was found., kudos &lt;span style=&quot;&quot;&gt; &lt;/span&gt;to the investigation abilities of&lt;/i&gt;&lt;span style=&quot;font-style: italic;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;police.&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;/span&gt;&lt;br /&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;I was asked to bring FIR copy first. So I went to the police station where I informed regarding this and got an FIR.&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;The cost I got incurred is RS.200 that too the police didn’t asked/insisted directly, (seems he’s a contract employee or a good one) but based on his facial feelings I myself given him the amount.&lt;/i&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;Then I took the FIR to the police station where my bike was there.&lt;br /&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;Here also everybody pointed me to only one person who dealt with this particular issue (stolen goods).&lt;/i&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;I expected he will ask for some money and will give my bike immediately. But he told me an (long) actual procedure to get my own bike back from them. I am not sure about the exact procedure but the procedure tentatively is as follows:&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;First they will file some case and inform the court that they arrested some thief and recovered this number of bikes (there are many bikes recovered with mine).&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;Then a complaint number (he told a name for this) is generated.&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;Then I had to take this number to the court and file an appeal to them that the police had recovered an vehicle with its registration/engine/chassis number and the bike is mine for which I had show proofs like my original RC book etc. They told for this I had to hire a lawyer. Then the court will give us a “Release Order” which we had to submit in the police station to get our bike release from them.&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;(I heard we can get a lawyer(for 1000rs but not sure about the actual cost) who will complete the process and get us the “Releasing Order”. May be the police people will have those lawyer numbers )&lt;/i&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;The police told me about this procedure and told me to come next week as they are dealing with “laptop theft/recovery” cases in that week and gave me his number for further communication.&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;In the next week &lt;span style=&quot;&quot;&gt; &lt;/span&gt;I called that police daily but he told they are still dealing with laptop cases and bike cases are not still taken up.&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;After one week he told me to come on next Wednesday and he will tell me the actual process/ formalities and I can get my bike on that next day. So I went to the police station on next Wednesday but he was on leave, and every other police man told he is the point of contact for these stolen cases. His cell was switched off and it took me another 5 days to get him on cell. He told me to come on next Monday with an “Indemnity Bond” paper.&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p style=&quot;font-style: italic;&quot; class=&quot;MsoNormal&quot;&gt;See point number 22 in this link: &lt;a href=&quot;http://www.ksp.gov.in/static/citizen-charter/&quot;&gt;http://www.ksp.gov.in/static/citizen-charter/&lt;/a&gt;&lt;/p&gt;  &lt;p style=&quot;font-style: italic;&quot; class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p style=&quot;font-style: italic;&quot; class=&quot;MsoNormal&quot;&gt;P.S: “Indemnity Bond papers in &lt;st1:city st=&quot;on&quot;&gt;&lt;st1:place st=&quot;on&quot;&gt;Bangalore&lt;/st1:place&gt;&lt;/st1:city&gt; are available with STOCK HOLDING CORPORATION OF INDIA”.&lt;/p&gt;  &lt;p style=&quot;font-style: italic;&quot; class=&quot;MsoNormal&quot;&gt;Locations: &lt;a href=&quot;http://www.shcilestamp.com/estamp_statekarnataka.html#shcilbranchkarnataka&quot;&gt;http://www.shcilestamp.com/estamp_statekarnataka.html#shcilbranchkarnataka&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;font-style: italic;&quot; class=&quot;MsoNormal&quot;&gt;&lt;a href=&quot;http://www.shcilestamp.com/estamp_statekarnataka.html#shcilbranchkarnataka&quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p style=&quot;font-style: italic;&quot; class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;On next Monday he simply took an printed statement on that bond with my signature and gave my bike back :-)&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;The entire printed matter was in Kannada which I couldn&#39;t understood a single line but kept the signature.&lt;/i&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;It took 1800 bucks to get my bike here and the police are very frank in these matters.&lt;br /&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;&lt;o:p&gt; &lt;span style=&quot;font-weight: bold;&quot;&gt;I got my bike exactly after one month I lost it and it took exactly 14 days to take it out of police station.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/o:p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;The doubt is when there is an easy process like this why did the police insisted on a long process (through court) which will take a long time!!! Although we went through court then also the cost will be almost same where we had to more for lawyer and less for police&lt;/i&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;i style=&quot;&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;P.S: But it took 6000 bucks to repair the bike and bring it into normal condition. The battery &amp;amp; petrol were taken off. Seems nothing left to peel from it.&lt;/p&gt;&lt;br /&gt;&lt;p class=&quot;MsoNormal&quot;&gt;Everybody says I am lucky to get my bike back. But if the bike was not found I may have saved a 8000 bucks of expenses and may get around 15k-20k as insurance claim (but it will take time). with around 20k-25k I can buy a better bike then mine.&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;NOW THE DILEMMA : IS I AM &lt;span style=&quot;font-style: italic;&quot;&gt;UNLUCKY &lt;/span&gt;TO LOSE MY BIKE OR &lt;span style=&quot;font-style: italic;&quot;&gt;LUCKY &lt;/span&gt;TO GET MY BIKE BACK OR IT WAS &lt;span style=&quot;font-style: italic;&quot;&gt;WRITTEN (fate) &lt;/span&gt;THAT I HAD TO REVOLVE AROUND TWO POLICE STATIONS FOR ONE MONTH???&lt;/span&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/p&gt;  </description><link>http://iwillbelikethis.blogspot.com/2010/05/my-musings-withon-my-bike.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-3268958020118181305</guid><pubDate>Fri, 26 Mar 2010 14:11:00 +0000</pubDate><atom:updated>2010-03-29T11:34:39.548+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">bublling event from popup</category><category domain="http://www.blogger.com/atom/ns#">event dispatch from popup</category><category domain="http://www.blogger.com/atom/ns#">event in popuip handler in parent mxml</category><title>Dispatching Events from Popups in FLEX</title><description>Sometimes we don&#39;t know (or forget) some silly things. Today I required to dispatch an custom event from a popup and handle that in component (parent mxml) in/on which that popup was opened. I normally used this line in popup:&lt;br /&gt;&lt;br /&gt;this.dispatchEvent(new Event(&quot;myEvent&quot;));&lt;br /&gt;&lt;br /&gt;and handled this in the parent(of popup) mxml as:&lt;br /&gt;&lt;br /&gt;this.addEventListener(&quot;myEvent&quot;,myEventHandler);&lt;br /&gt;&lt;br /&gt;private function myEventHandler(event:Event):void&lt;br /&gt;{&lt;br /&gt;      Alert.show(&quot;I came here&quot;);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;While looking everything is fine but the (intended) functionality didn&#39;t worked.&lt;br /&gt;i.e the event was fired but the Alert(event handler) was not executed.&lt;br /&gt;&lt;br /&gt;I spend some 1 hour on this thinking any typo error is there.&lt;br /&gt;&lt;br /&gt;Then I opened GOOGLE mahatma and searched for this&lt;br /&gt;(I scolded myself why I didn&#39;t done this at first itself)&lt;br /&gt;&lt;br /&gt;The first two results itself told all the story.&lt;br /&gt;&lt;br /&gt;The first link said:&lt;br /&gt;&quot;DisplayObjects created through the PopupManager.createPopup() function are not children of the application container&quot;&lt;br /&gt;i.e popups are not children of Application container so the &#39;event&#39; dispatched in popup can&#39;t be handled in its parent.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.munkiihouse.com/?p=45&quot;&gt;http://www.munkiihouse.com/?p=45&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The second link gave me the solution:&lt;br /&gt;&lt;br /&gt;Add the listener to popup while creating it in parent(mxml).&lt;br /&gt;&lt;br /&gt;var myPopupObj:MyPopUp = PopUpManager.createPopUp(this,MyPopUp);&lt;br /&gt;&lt;b&gt;myPopupObj.addEventListener(&quot;myEvent&quot;,myEventHandler);&lt;/b&gt;&lt;br /&gt;//This is where everything lies. Assign eventlistner for popup&lt;br /&gt;&lt;br /&gt;Now dispatch the event(myEvent) as usually from the popup and it will be handled in its parent mxml(myEventHandler);&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://matthijs.stichelz.be/blog/2008/12/dispatch-custom-events-from-popup/&quot;&gt;http://matthijs.stichelz.be/blog/2008/12/dispatch-custom-events-from-popup/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;May this is an small thing but its useful.</description><link>http://iwillbelikethis.blogspot.com/2010/03/dispatching-events-from-popups.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-3970013493064470884</guid><pubDate>Wed, 17 Mar 2010 16:28:00 +0000</pubDate><atom:updated>2010-03-17T22:03:12.551+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Barry Schwartz</category><category domain="http://www.blogger.com/atom/ns#">paradox of choice</category><category domain="http://www.blogger.com/atom/ns#">ted</category><category domain="http://www.blogger.com/atom/ns#">too much choice spoils selection</category><title>Paradox of Choice - Psychologist Barry Schwartz @ TED</title><description>&lt;object height=&quot;326&quot; width=&quot;334&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://video.ted.com/assets/player/swf/EmbedPlayer.swf&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;param name=&quot;bgColor&quot; value=&quot;#ffffff&quot;&gt; &lt;param name=&quot;flashvars&quot; value=&quot;vu=http://video.ted.com/talks/dynamic/BarrySchwartz_2005G-medium.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/BarrySchwartz-2005G.embed_thumbnail.jpg&amp;amp;vw=320&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=93&amp;amp;introDuration=16500&amp;amp;adDuration=4000&amp;amp;postAdDuration=2000&amp;amp;adKeys=talk=barry_schwartz_on_the_paradox_of_choice;year=2005;theme=how_the_mind_works;theme=what_makes_us_happy;theme=speaking_at_ted2009;theme=unconventional_explanations;event=TEDGlobal+2005;&amp;amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;&quot;&gt;&lt;embed src=&quot;http://video.ted.com/assets/player/swf/EmbedPlayer.swf&quot; pluginspace=&quot;http://www.macromedia.com/go/getflashplayer&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; bgcolor=&quot;#ffffff&quot; allowfullscreen=&quot;true&quot; flashvars=&quot;vu=http://video.ted.com/talks/dynamic/BarrySchwartz_2005G-medium.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/BarrySchwartz-2005G.embed_thumbnail.jpg&amp;amp;vw=320&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=93&amp;amp;introDuration=16500&amp;amp;adDuration=4000&amp;amp;postAdDuration=2000&amp;amp;adKeys=talk=barry_schwartz_on_the_paradox_of_choice;year=2005;theme=how_the_mind_works;theme=what_makes_us_happy;theme=speaking_at_ted2009;theme=unconventional_explanations;event=TEDGlobal+2005;&quot; height=&quot;326&quot; width=&quot;334&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0); font-weight: bold; font-style: italic;&quot;&gt;&lt;br /&gt;Too Much Choice Spoils the Selection :)&lt;br /&gt;&lt;/span&gt;</description><link>http://iwillbelikethis.blogspot.com/2010/03/paradox-of-too-much-choice-prof-barry.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-1579184829451719727</guid><pubDate>Thu, 11 Mar 2010 09:22:00 +0000</pubDate><atom:updated>2010-03-11T14:59:46.922+05:30</atom:updated><title>William Bernstein on INVESTORS</title><description>&lt;span style=&quot;color: rgb(255, 0, 0);font-family:courier new;font-size:130%;&quot;  &gt;&lt;span style=&quot;font-size:14px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;There are two kinds of investors, be they large or small: those who don’t know where the market is headed, and those who don’t know that they don’t know. Then again, there is a third type of investor – the &lt;i&gt;INVESTMENT PROFESSIONAL&lt;/i&gt;, who indeed knows that he or she doesn’t know, but whose livelihood depends upon appearing to know.&lt;/span&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);font-family:Arial,Helvetica,sans-serif;font-size:12px;&quot;  &gt;                                  &lt;span style=&quot;font-weight: bold;&quot;&gt;- William  Bernstein, &lt;/span&gt;&lt;em style=&quot;font-weight: bold; font-size: 12px;&quot;&gt;The Intelligent Asset Allocator&lt;/em&gt;&lt;/span&gt;</description><link>http://iwillbelikethis.blogspot.com/2010/03/william-bernstein-on-investors.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-1782265373912218952</guid><pubDate>Wed, 03 Feb 2010 13:12:00 +0000</pubDate><atom:updated>2010-02-04T12:38:09.975+05:30</atom:updated><title>Indian Language&#39;s Font/Lipi in Flex using Text Layout Framework</title><description>Any time tried to show some Indian text/lipi in Flex 3., i.e on Flex 3 controls like label, button, combobox etc..&lt;br /&gt;&lt;br /&gt;If you want to display a hindi text on a button control, you will write a normal code:&lt;br /&gt;&lt;br /&gt;&amp;lt;mx:Button label=&quot;पहला आइटम&quot;/&amp;gt;&lt;br /&gt;&lt;br /&gt;But it wont work :)&lt;br /&gt;&lt;br /&gt;You will get the output as below&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZHyYCgCeFWno0qWvPEo-9xIeU4NrOZPoTu-00wUnvIkIv81zo_zvTrkZ2WZzGYGW4cyKF7H3FPRmZE_Z_zl9lPJ3fZ_WvvFNjPTgYGrCErUBgh9hnOyQoEprEfQkxaaYAKm6gRwq6B9o9/s1600-h/1.JPG&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 174px; height: 59px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZHyYCgCeFWno0qWvPEo-9xIeU4NrOZPoTu-00wUnvIkIv81zo_zvTrkZ2WZzGYGW4cyKF7H3FPRmZE_Z_zl9lPJ3fZ_WvvFNjPTgYGrCErUBgh9hnOyQoEprEfQkxaaYAKm6gRwq6B9o9/s400/1.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5433993935896174482&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;you will be greeted with some unexpected square boxes as above..&lt;br /&gt;&lt;br /&gt;Adobe &quot;Text Layout Framework&quot; will help us here when we want to show these indian languages or other languages like arabic in Flex 3 controls. This framework is still in its beta stage. For Flex 3 we had to include &#39;textLayout_conversion.swc&#39; &amp;amp; &#39;textLayout_core.swc&#39; in libs folder  and for Flex 4 these swc&#39;s are already included.&lt;br /&gt;&lt;br /&gt;You can find more details about &quot;Text Layout Framework&quot; from &lt;a href=&quot;http://labs.adobe.com/technologies/textlayout/&quot;&gt;here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;So lets see how to display Indian language text in Flex..&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I am showing Hindi &amp;amp; Telugu (as it is my mother tongue) languages in Flex controls, we can also display other languages like tamil,  malayalam, kannada, arabic etc but I didn&#39;t tried with those as I am not familiar with those languages (but I tried with arabic and succeeded almost although I didn&#39;t understand the language)&lt;br /&gt;&lt;br /&gt;we had to include &#39;textLayout_conversion.swc&#39; &amp;amp; &#39;textLayout_core.swc&#39; in libs folder&lt;br /&gt;&lt;br /&gt;The Screen shots of the examples can be seen here&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBabCJ0luiX5pcyRB0bwEt93RzHV6J4sisfYSGhrcWrJXt1VIOqhn_jSdsOy9M0Ygz-843G_NkZQUGrD2_XYEF56uBVL1stdNqcX4dgT8Nk5zDxrTZyaUQEOg6vs_mdshuSVWBNCWUyCcc/s1600-h/all.JPG&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 494px; height: 287px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBabCJ0luiX5pcyRB0bwEt93RzHV6J4sisfYSGhrcWrJXt1VIOqhn_jSdsOy9M0Ygz-843G_NkZQUGrD2_XYEF56uBVL1stdNqcX4dgT8Nk5zDxrTZyaUQEOg6vs_mdshuSVWBNCWUyCcc/s400/all.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5433994078954015362&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Indian Languages/ any other language on (click on the text for demo example)&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://iwillbelikethis.webs.com/LabelExample.html&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Label Control&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://iwillbelikethis.webs.com/ButtonExample.html&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Button Control&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://iwillbelikethis.webs.com/ComboBoxExample.html&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;ComboBox Control&lt;/span&gt;&lt;/a&gt; - Actually, the displaying indian text in ComboBox control some modifications to ComboBox control. For this a custom combobox control is done and the text positionion for some languages is not perfect. You can change the custom component according to your requirements.&lt;br /&gt;&lt;br /&gt;You can get the source code of all the above from &lt;a href=&quot;http://iwillbelikethis.webs.com/srcview/index.html&quot;&gt;here&lt;/a&gt; and change it according to your requirements.&lt;br /&gt;&lt;br /&gt;Feel free to add your comments.</description><link>http://iwillbelikethis.blogspot.com/2010/02/indian-languages-fontlipi-in-flex-using.html</link><author>noreply@blogger.com (Praveen Munaga)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZHyYCgCeFWno0qWvPEo-9xIeU4NrOZPoTu-00wUnvIkIv81zo_zvTrkZ2WZzGYGW4cyKF7H3FPRmZE_Z_zl9lPJ3fZ_WvvFNjPTgYGrCErUBgh9hnOyQoEprEfQkxaaYAKm6gRwq6B9o9/s72-c/1.JPG" height="72" width="72"/><thr:total>19</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-6574281320773502411</guid><pubDate>Fri, 08 Jan 2010 06:31:00 +0000</pubDate><atom:updated>2010-01-08T12:44:36.141+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">android development</category><category domain="http://www.blogger.com/atom/ns#">elips</category><category domain="http://www.blogger.com/atom/ns#">flex</category><category domain="http://www.blogger.com/atom/ns#">iphone development</category><category domain="http://www.blogger.com/atom/ns#">mobile appliation developement using flex</category><category domain="http://www.blogger.com/atom/ns#">mobile development using flex</category><category domain="http://www.blogger.com/atom/ns#">symbian developement</category><category domain="http://www.blogger.com/atom/ns#">windows mobile development</category><title>ELIPS Studio: Mobile Application Developement using Adobe Flex Builder</title><description>ELIPS Studio 3 is a mobile application development SDK based on Adobe&#39;s Flex Builder. Using ELIPS Studio developers can quickly develop mobile applications and deploy them on any mobile platforms  supported by ELIPS.&lt;br /&gt;&lt;br /&gt;Until now if developers want to develop an mobile application they had to develop the application using various technologies (Windows Mobile, SYmbian, IPhone, Android..) for different mobiles of different manufacturers. ELIPS cuts this complexity with a single development toolkit for popular handsets. It also includes sophisticated simulator and the code it generates is compact and rapid enough to run even on low-specification, mass-market handsets.&lt;br /&gt;&lt;br /&gt;see the supported mobile OS by ELIPS &lt;a href=&quot;http://developer.openplug.com/index.php/learn/supported-platforms&quot;&gt;here&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://developer.openplug.com/index.php/learn/supported-platforms&quot;&gt;http://developer.openplug.com/index.php/learn/supported-platforms&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;ELIPS Studio 3 is available as a plug-in for Adobe Flex / Flash Builder. It allows you to develop mobile applications using ActionScript and MXML.&lt;br /&gt;&lt;br /&gt;For any platform, the compilation of your application to the platform format is done in 2 stages:&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;1. Generation of the native source code (C/C++/ASM) from your MXML/AS&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;2. Compilation of the native source code to executable format&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If we take iPhone development using ELIPS Flex Builder, ELIPS studio will map the controls available in iPhone with Flex Controls (as we use ELIPS sdk it has only those controls/containers which are mapped/present in mobile platforms)&lt;br /&gt;&lt;br /&gt;For all platforms except the iPhone, the above said two stages 1 and 2 are done transparently one after the other, on the same machine of course.&lt;br /&gt;&lt;br /&gt;For the iPhone, in this technology preview, it’s different: stage 1 is done in a Windows VM in your Mac, or on your Windows PC, but stage 2 needs to be done on a Mac, using XCode, at least today.&lt;br /&gt;&lt;br /&gt;The complete flow for the iPhone comes as follows:&lt;br /&gt;&lt;br /&gt;- Develop in ELIPS Studio3 / Flex Builder on a PC (or a Mac, in a Windows VM, like Parallels or VMWare)&lt;br /&gt;- Within Flex Builder, build for the iPhone target. This will actually generate an XCode project with the C++ files from your MXML/AS&lt;br /&gt;- Copy the generated sources with the XCode project to a Mac (if you were working on a VM, simply put it in a shared folder of your VM)&lt;br /&gt;- Open it in XCode, build, simulate, debug, deploy on the Mac&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;So How to start using ELIPS???&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Download the latest version of ELIPS Flex sdk setup from &lt;a href=&quot;http://developer.openplug.com/index.php/download&quot;&gt;here&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://developer.openplug.com/index.php/download&quot;&gt;http://developer.openplug.com/index.php/download&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Then Run the file &#39;ELIPS_STUDIO_***.exe&#39;&lt;br /&gt;&lt;br /&gt;It has its own sdk (we had to use ELIPS flex SDK which was developed on Flex SDK to develop mobile application) and maps/imports this sdk and some options into flex builder.&lt;br /&gt;&lt;br /&gt;See the other installation steps &lt;a href=&quot;http://developer.openplug.com/index.php/learn/tutorials/?videoid=3&quot;&gt;here&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://developer.openplug.com/index.php/learn/tutorials/?videoid=3&quot;&gt;http://developer.openplug.com/index.php/learn/tutorials/?videoid=3&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We had to use ELIPS for flex builder.  Open ELIPS for flex builder from Programs -&gt; Open_Plug -&gt; ELIPS Studio -&gt; ELIPS for Flex Builder,  and create a normal New AIR Project (Lets the name of the project be &#39;ElipsDemoPrj&#39;)&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFS76demExNEnEb9mGEnYDXcM7Yom8ZAd74jO-K76SJYinRWwHKudQb6ryziI8GcWkfio3JTwgphjJ3G937E2717fjjoFTEPONSIehu1n5hbw4YvEumwdmx32yHqwwRYlc_cpl-EgIA9w3/s1600-h/1.JPG&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 400px; height: 357px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFS76demExNEnEb9mGEnYDXcM7Yom8ZAd74jO-K76SJYinRWwHKudQb6ryziI8GcWkfio3JTwgphjJ3G937E2717fjjoFTEPONSIehu1n5hbw4YvEumwdmx32yHqwwRYlc_cpl-EgIA9w3/s400/1.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5424253816715716242&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Goto Project Properties (Right Click on Project -&gt; Properties) and go to Elips3 -&gt; Targeted Devices and select the Devices you want the code to be generated and press &quot;Apply&quot;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYjU55nTKzsUo1GuwTEZ1xFK3ha-1_5WdIUPvyKrNSxoesaXDkkNojjt0ZRMj3t64P0sE5PeHhlfD3BuzqPtgbbX2sVzXQ2rChP3b1z0P8ZorRB6ft1-dbNfsM2hUEszUMW0YFYLDO4GIW/s1600-h/2.JPG&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 400px; height: 313px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYjU55nTKzsUo1GuwTEZ1xFK3ha-1_5WdIUPvyKrNSxoesaXDkkNojjt0ZRMj3t64P0sE5PeHhlfD3BuzqPtgbbX2sVzXQ2rChP3b1z0P8ZorRB6ft1-dbNfsM2hUEszUMW0YFYLDO4GIW/s400/2.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5424254223139962770&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I selected Iphone &amp;amp; Generic WM6 is selected default&lt;br /&gt;&lt;br /&gt;In &#39;Flex Compiler&#39; options change the &#39;Use a specific SDK&#39; option to &#39;ElipsFlexSDK***&#39; and click &#39;OK&#39;&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNtKrRf1oBwdLTCcNg0jHbcofAPf4x0SBwUW1i5z5GcjZoDThO_MqcYzT4UUfKOZHcPdYPF0Smd6uo2u4ZdJn0l7e9wDFjxKsFJI7rKconQheMZimP9ee8tYGqj-9Yq38clO5KZ5vmygTR/s1600-h/3.JPG&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 400px; height: 345px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNtKrRf1oBwdLTCcNg0jHbcofAPf4x0SBwUW1i5z5GcjZoDThO_MqcYzT4UUfKOZHcPdYPF0Smd6uo2u4ZdJn0l7e9wDFjxKsFJI7rKconQheMZimP9ee8tYGqj-9Yq38clO5KZ5vmygTR/s400/3.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5424255800172245490&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;For further info:&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://developer.openplug.com/index.php/learn/tutorials/?videoid=20&quot;&gt;http://developer.openplug.com/index.php/learn/tutorials/?videoid=20&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Now in top toolbar you will find some new (3) options/icons&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPbumq2zZDWxgq71-U-PymZXlUlejv4YMroHEJU17abiP8LYuIxUVt696NES627UzIQ2MU4Nl7ZyLQGYkDrr94XGtATpBtGeYVQtBFccoU2HoJicfIFu3I-LfxekvZy-jHVgqYHHrCpiIp/s1600-h/4.JPG&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 400px; height: 97px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPbumq2zZDWxgq71-U-PymZXlUlejv4YMroHEJU17abiP8LYuIxUVt696NES627UzIQ2MU4Nl7ZyLQGYkDrr94XGtATpBtGeYVQtBFccoU2HoJicfIFu3I-LfxekvZy-jHVgqYHHrCpiIp/s400/4.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5424262203082603634&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;By pressing the &#39;?&#39; (first new icon) icon the Help for ELIPS sdk will open&lt;br /&gt;By pressing the second icon the native code for mobile platforms will be generated from flex code&lt;br /&gt;In the third option (like dropdown) you can select the platform (among those you selected in Targeted Devices) to Run&lt;br /&gt;&lt;br /&gt;Lets start with a typical &#39;Hello World&#39; example. Take a label and place &quot;Hello World&quot; on it., select Iphone in the dropdown in toolbar and Run the APP (like a normal Flex application using &#39;Run&#39; option&#39;), now a VM of the IPhone will run and it shows your output in an IPhone simulator&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6_BBeoQwu9hPYIGqZT1rjjmExTpj53NfsCg9uavZUyuanCOjVqdbGO-kGAVcSNcXpaP7Adc7TvB0oDx1iKgJvj_mTGFF2sNtSevT09pDLP-nR_8rt-hnggiRnMQLWqyzQcz6VK5TD6LhF/s1600-h/5.JPG&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 400px; height: 310px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6_BBeoQwu9hPYIGqZT1rjjmExTpj53NfsCg9uavZUyuanCOjVqdbGO-kGAVcSNcXpaP7Adc7TvB0oDx1iKgJvj_mTGFF2sNtSevT09pDLP-nR_8rt-hnggiRnMQLWqyzQcz6VK5TD6LhF/s400/5.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5424262332652043202&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The left window (SimUI) contains some options and the right (IPhone window) window contains your output&lt;br /&gt;&lt;br /&gt;Now press the &#39;Build ELIPS package for all Targeted Devices&#39; button (middle icon in the three new icon/control in toolbar.&lt;br /&gt;&lt;br /&gt;Two new folders &#39;resources&#39; &amp;amp; &#39;output&#39; will be created parrllel to &#39;src&#39; folder. The &#39;output&#39; folder contain subfolders (one folder for each targeted device we selected) and native code (each Targeted device in its native language) is created and placed in respective folders.&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiiZg_B1MS8h2XEoDFlzEwNTJdEwUSq5OpYO7Y1-3VHkf67V5SJckR5SEcakjWD1AjSJR-1vl6L5UF5jke4JIh2tkorS2oQbLg5KhFNqEqYccsPizrZUDhgYIRCdxIUw7wW4l6UzZ3SvP9l/s1600-h/6.JPG&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 250px; height: 400px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiiZg_B1MS8h2XEoDFlzEwNTJdEwUSq5OpYO7Y1-3VHkf67V5SJckR5SEcakjWD1AjSJR-1vl6L5UF5jke4JIh2tkorS2oQbLg5KhFNqEqYccsPizrZUDhgYIRCdxIUw7wW4l6UzZ3SvP9l/s400/6.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5424256306260583026&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;From the above image you can see a &#39;.cab&#39; file is generated for WM(windows mobie) which can be directly deployed into the mobile but for IPhone XCode project with the C++ is generated which had to be compiled using a MAC &amp;amp; XCode.&lt;br /&gt;&lt;br /&gt;Visit &lt;a href=&quot;http://developer.openplug.com/&quot;&gt;ELIPS &lt;/a&gt;website:&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://developer.openplug.com/&quot;&gt;http://developer.openplug.com/&lt;/a&gt;</description><link>http://iwillbelikethis.blogspot.com/2010/01/elips-studio-mobile-application.html</link><author>noreply@blogger.com (Praveen Munaga)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFS76demExNEnEb9mGEnYDXcM7Yom8ZAd74jO-K76SJYinRWwHKudQb6ryziI8GcWkfio3JTwgphjJ3G937E2717fjjoFTEPONSIehu1n5hbw4YvEumwdmx32yHqwwRYlc_cpl-EgIA9w3/s72-c/1.JPG" height="72" width="72"/><thr:total>3</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-4367645409021299019</guid><pubDate>Fri, 01 Jan 2010 16:49:00 +0000</pubDate><atom:updated>2010-01-01T22:20:29.197+05:30</atom:updated><title>Haapy new Year 2010..</title><description>Haapy new Year 2010., &lt;br /&gt;&lt;br /&gt;May this new year all your dreams may come true..</description><link>http://iwillbelikethis.blogspot.com/2010/01/haapy-new-year-2010.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-621380034478559618</guid><pubDate>Fri, 25 Dec 2009 17:17:00 +0000</pubDate><atom:updated>2009-12-25T23:09:22.398+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">future digital world</category><category domain="http://www.blogger.com/atom/ns#">Pranav Mistry</category><category domain="http://www.blogger.com/atom/ns#">ted</category><category domain="http://www.blogger.com/atom/ns#">ted 2009</category><category domain="http://www.blogger.com/atom/ns#">The thrilling potential of SixthSense technology</category><title>Pranav Mistry: The thrilling potential of SixthSense technology</title><description>&lt;span style=&quot;font-weight: bold;&quot;&gt;May be this is the future Digital World&lt;/span&gt;&lt;br /&gt;&lt;object width=&quot;446&quot; height=&quot;326&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://video.ted.com/assets/player/swf/EmbedPlayer.swf&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;param name=&quot;bgColor&quot; value=&quot;#ffffff&quot;&gt; &lt;param name=&quot;flashvars&quot; value=&quot;vu=http://video.ted.com/talks/dynamic/PranavMistry_2009I-medium.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/PranavMistry-2009I.embed_thumbnail.jpg&amp;amp;vw=432&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=685&amp;amp;introDuration=16500&amp;amp;adDuration=4000&amp;amp;postAdDuration=2000&amp;amp;adKeys=talk=pranav_mistry_the_thrilling_potential_of_sixthsense_tec;year=2009;theme=ted_under_30;theme=the_creative_spark;theme=tales_of_invention;theme=new_on_ted_com;theme=design_like_you_give_a_damn;theme=a_taste_of_tedindia;theme=what_s_next_in_tech;event=TEDIndia+2009;&amp;amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;&quot;&gt;&lt;embed src=&quot;http://video.ted.com/assets/player/swf/EmbedPlayer.swf&quot; pluginspace=&quot;http://www.macromedia.com/go/getflashplayer&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; bgcolor=&quot;#ffffff&quot; allowfullscreen=&quot;true&quot; flashvars=&quot;vu=http://video.ted.com/talks/dynamic/PranavMistry_2009I-medium.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/PranavMistry-2009I.embed_thumbnail.jpg&amp;amp;vw=432&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=685&amp;amp;introDuration=16500&amp;amp;adDuration=4000&amp;amp;postAdDuration=2000&amp;amp;adKeys=talk=pranav_mistry_the_thrilling_potential_of_sixthsense_tec;year=2009;theme=ted_under_30;theme=the_creative_spark;theme=tales_of_invention;theme=new_on_ted_com;theme=design_like_you_give_a_damn;theme=a_taste_of_tedindia;theme=what_s_next_in_tech;event=TEDIndia+2009;&quot; width=&quot;446&quot; height=&quot;326&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://iwillbelikethis.blogspot.com/2009/12/pranav-mistry-thrilling-potential-of_25.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-7198283737868614559</guid><pubDate>Tue, 15 Dec 2009 18:25:00 +0000</pubDate><atom:updated>2009-12-15T23:55:53.423+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">ted</category><category domain="http://www.blogger.com/atom/ns#">ted 2009</category><title>Sunitha Krishnan&#39;s fight against sex slavery</title><description>Some times it seems the world is full of scoundrels..&lt;br /&gt;&lt;br /&gt;&lt;object width=&quot;446&quot; height=&quot;326&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://video.ted.com/assets/player/swf/EmbedPlayer.swf&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;param name=&quot;bgColor&quot; value=&quot;#ffffff&quot;&gt;&lt;/param&gt; &lt;param name=&quot;flashvars&quot; value=&quot;vu=http://video.ted.com/talks/dynamic/SunithaKrishnan_2009I-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/SunithaKrishnan-2009I.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=704&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=sunitha_krishnan_tedindia;year=2009;theme=a_taste_of_tedindia;theme=bold_predictions_stern_warnings;theme=new_on_ted_com;theme=rethinking_poverty;event=TEDIndia+2009;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;&quot; /&gt;&lt;embed src=&quot;http://video.ted.com/assets/player/swf/EmbedPlayer.swf&quot; pluginspace=&quot;http://www.macromedia.com/go/getflashplayer&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; bgColor=&quot;#ffffff&quot; width=&quot;446&quot; height=&quot;326&quot; allowFullScreen=&quot;true&quot; flashvars=&quot;vu=http://video.ted.com/talks/dynamic/SunithaKrishnan_2009I-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/SunithaKrishnan-2009I.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=704&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=sunitha_krishnan_tedindia;year=2009;theme=a_taste_of_tedindia;theme=bold_predictions_stern_warnings;theme=new_on_ted_com;theme=rethinking_poverty;event=TEDIndia+2009;&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://iwillbelikethis.blogspot.com/2009/12/sunitha-krishnans-fight-against-sex.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-3692328479333505071</guid><pubDate>Tue, 15 Dec 2009 18:04:00 +0000</pubDate><atom:updated>2009-12-15T23:35:40.555+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Ryan Lobo</category><category domain="http://www.blogger.com/atom/ns#">ted</category><category domain="http://www.blogger.com/atom/ns#">ted 2009</category><title>Ryan Lobo: Photographing the hidden story</title><description>&lt;object width=&quot;446&quot; height=&quot;326&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://video.ted.com/assets/player/swf/EmbedPlayer.swf&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;param name=&quot;bgColor&quot; value=&quot;#ffffff&quot;&gt;&lt;param name=&quot;flashvars&quot; value=&quot;vu=http://video.ted.com/talks/dynamic/RyanLobo_2009I-medium.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/RyanLobo-2009I.embed_thumbnail.jpg&amp;amp;vw=432&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=713&amp;amp;introDuration=16500&amp;amp;adDuration=4000&amp;amp;postAdDuration=2000&amp;amp;adKeys=talk=ryan_lobo_through_the_lens_of_compassion;year=;theme=a_taste_of_tedindia;theme=new_on_ted_com;theme=the_creative_spark;theme=master_storytellers;theme=art_unusual;theme=media_that_matters;&amp;amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;&quot;&gt;&lt;br /&gt; &lt;embed src=&quot;http://video.ted.com/assets/player/swf/EmbedPlayer.swf&quot; pluginspace=&quot;http://www.macromedia.com/go/getflashplayer&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; bgcolor=&quot;#ffffff&quot; width=&quot;446&quot; height=&quot;326&quot; allowfullscreen=&quot;true&quot; flashvars=&quot;vu=http://video.ted.com/talks/dynamic/RyanLobo_2009I-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/RyanLobo-2009I.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=713&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=ryan_lobo_through_the_lens_of_compassion;year=;theme=a_taste_of_tedindia;theme=new_on_ted_com;theme=the_creative_spark;theme=master_storytellers;theme=art_unusual;theme=media_that_matters;&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://iwillbelikethis.blogspot.com/2009/12/ryan-lobo-photographing-hidden-story.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-8021096629513088447</guid><pubDate>Tue, 08 Dec 2009 06:58:00 +0000</pubDate><atom:updated>2009-12-09T11:26:10.081+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">SMSTWEET</category><category domain="http://www.blogger.com/atom/ns#">tweet</category><category domain="http://www.blogger.com/atom/ns#">twitter</category><title>TWEET via SMS without paying premium sms charge</title><description>Now you can Tweet via SMS without paying premium price for tweeting. Airtel is providing its subscribers this facility but it Charges Rs. 3/SMS for it. Now you can tweet via SMS no matter which Mobile Operator&#39;s service you are using.&lt;br /&gt;&lt;br /&gt;Mayank Sharma has launched a service SMSTWEET which will enable its users to tweet via SMS.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;font-family:verdana,geneva;&quot;&gt;&lt;strong&gt;How To Use SMSTweet?&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;  &lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;font-family:verdana,geneva;&quot;&gt;Login at &lt;a target=&quot;_blank&quot; href=&quot;http://www.smstweet.in/&quot; rel=&quot;nofollow&quot; onclick=&quot;javascript:urchinTracker(&#39;/outgoing/www.smstweet.in&#39;);&quot;&gt;SMSTweet&lt;/a&gt; online via twitter account.     &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;font-family:verdana,geneva;&quot;&gt;Once you register you can start tweeting by sending a message, &#39;TWEET &lt;your&gt;&lt;your&gt;&#39; to 09220092200&lt;/your&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style=&quot;font-size:10pt;&quot;&gt;&lt;span style=&quot;font-family:verdana,geneva;&quot;&gt;09220092200 is Tata Indicom&#39;s local number in Mumbai., so those who have free sms offers to all over India or local s&lt;/span&gt;&lt;/span&gt;ms offers in mumbai can enjoy this freely..</description><link>http://iwillbelikethis.blogspot.com/2009/12/tweet-via-sms-without-paying-premium.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-5161356388279308689</guid><pubDate>Fri, 04 Dec 2009 13:18:00 +0000</pubDate><atom:updated>2009-12-05T11:40:37.855+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Google Dictionary</category><title>Google Dictionary</title><description>Google has introduced &lt;a href=&quot;http://www.google.com/dictionary&quot;&gt;Dictionary&lt;/a&gt; service now. what the useful feature is that it provides translations from many languages to English to and fro and it includes many Indian langauages like Telugu, Hindi, Tamil, Malayalam, Kannada. Another interesting aspect is we get the translation from English to native language(like Telugu) in our own lipi..&lt;br /&gt;&lt;br /&gt;Check out the link: &lt;a href=&quot;http://www.google.com/dictionary&quot;&gt;http://www.google.com/dictionary&lt;/a&gt;</description><link>http://iwillbelikethis.blogspot.com/2009/12/google-dictionary.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-8858333738037584648</guid><pubDate>Sun, 29 Nov 2009 18:57:00 +0000</pubDate><atom:updated>2009-11-30T01:05:12.607+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Mallika Sarabhai</category><category domain="http://www.blogger.com/atom/ns#">ted</category><category domain="http://www.blogger.com/atom/ns#">ted 2009</category><title>Mallika Sarabhai&#39;s intesting &amp; inspiring speech @ TED 2009</title><description>&lt;object width=&quot;446&quot; height=&quot;326&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://video.ted.com/assets/player/swf/EmbedPlayer.swf&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;param name=&quot;bgColor&quot; value=&quot;#ffffff&quot;&gt;&lt;/param&gt; &lt;param name=&quot;flashvars&quot; value=&quot;vu=http://video.ted.com/talks/dynamic/MallikaSarabhai_2009I-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/MallikaSarabhai_2009I.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=688&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=mallika_sarabhai;year=2009;theme=new_on_ted_com;theme=the_creative_spark;theme=master_storytellers;theme=a_taste_of_tedindia;theme=presentation_innovation;event=TEDIndia+2009;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;&quot; /&gt;&lt;embed src=&quot;http://video.ted.com/assets/player/swf/EmbedPlayer.swf&quot; pluginspace=&quot;http://www.macromedia.com/go/getflashplayer&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; bgColor=&quot;#ffffff&quot; width=&quot;446&quot; height=&quot;326&quot; allowFullScreen=&quot;true&quot; flashvars=&quot;vu=http://video.ted.com/talks/dynamic/MallikaSarabhai_2009I-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/MallikaSarabhai_2009I.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=688&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=mallika_sarabhai;year=2009;theme=new_on_ted_com;theme=the_creative_spark;theme=master_storytellers;theme=a_taste_of_tedindia;theme=presentation_innovation;event=TEDIndia+2009;&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description><link>http://iwillbelikethis.blogspot.com/2009/11/mallika-sarabhais-intesting-inspiring.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-9108848542652725223</guid><pubDate>Sat, 28 Nov 2009 08:20:00 +0000</pubDate><atom:updated>2009-11-30T01:06:25.401+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">AIR</category><category domain="http://www.blogger.com/atom/ns#">AVATAR TRAILER</category><title>AVATAR ON AIR</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-uBGk1McDnDqzvyP_xQRXp7ebRnC3QqCB0n6kOCMG6MNVUtnZW18nnftLsYU2EXj4nvLmJWxkNQX2u0HV2UTNGMQUPyav7Vc9w03psPmwRbvU1vLT0hcusF_kWO01lyMRB30mwUXZ5IsY/s1600/avatar-image.png&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 400px; height: 225px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-uBGk1McDnDqzvyP_xQRXp7ebRnC3QqCB0n6kOCMG6MNVUtnZW18nnftLsYU2EXj4nvLmJWxkNQX2u0HV2UTNGMQUPyav7Vc9w03psPmwRbvU1vLT0hcusF_kWO01lyMRB30mwUXZ5IsY/s400/avatar-image.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5409067455943069378&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;AVATAR the hollywood movie thats going to release on Dec 20th 2009 had released its trailer powered ADOBE AIR., It provides exclusive content to fans including video interviews with the cast.&lt;br /&gt;&lt;br /&gt;Check it out from this link: &lt;a href=&quot;http://www.avatarmovie.com/air/&quot;&gt;http://www.avatarmovie.com/air/&lt;/a&gt;</description><link>http://iwillbelikethis.blogspot.com/2009/11/avatar-on-air.html</link><author>noreply@blogger.com (Praveen Munaga)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-uBGk1McDnDqzvyP_xQRXp7ebRnC3QqCB0n6kOCMG6MNVUtnZW18nnftLsYU2EXj4nvLmJWxkNQX2u0HV2UTNGMQUPyav7Vc9w03psPmwRbvU1vLT0hcusF_kWO01lyMRB30mwUXZ5IsY/s72-c/avatar-image.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-4697742954140382052</guid><pubDate>Tue, 10 Nov 2009 08:28:00 +0000</pubDate><atom:updated>2009-11-11T11:19:57.024+05:30</atom:updated><title>Knowledge is pain &amp; Ignorance is bliss</title><description>&lt;h3 class=&quot;GenericStory_Message&quot; ft=&quot;{&amp;quot;type&amp;quot;:&amp;quot;msg&amp;quot;}&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;knowledge is pain and ignorance is bliss and that’s because with knowledge you know what you want and when you don’t get it creates pain whereas in ignorance you don’t know what you want, so even when you don’t get since you don’t know what you are losing you will be in bliss &lt;/span&gt;&lt;/h3&gt;&lt;h3 style=&quot;color: rgb(255, 153, 0);&quot; class=&quot;GenericStory_Message&quot; ft=&quot;{&amp;quot;type&amp;quot;:&amp;quot;msg&amp;quot;}&quot;&gt;&lt;a href=&quot;http://rgvzoomin.com/&quot;&gt;- got it from ram gopal varma&#39; blog&lt;/a&gt;&lt;/h3&gt;</description><link>http://iwillbelikethis.blogspot.com/2009/11/knowledge-is-pain-and-ignorance-is.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-2540374220712275830</guid><pubDate>Mon, 26 Oct 2009 11:01:00 +0000</pubDate><atom:updated>2009-10-26T17:40:29.228+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Adobe</category><category domain="http://www.blogger.com/atom/ns#">BrowserLab</category><title>BrowserLab from Adobe</title><description>Adobe has released a new service called &lt;a href=&quot;http://browserlab.adobe.com/&quot;&gt;BrowserLab&lt;/a&gt;, which will preview any web page how it will look like in different browser/os environments.&lt;br /&gt;&lt;br /&gt;According to their website info&lt;br /&gt;&lt;br /&gt;                   &quot;BrowserLab provides web designers exact renderings of their web pages in multiple browsers and operating systems, on demand. BrowserLab is a powerful solution for cross-browser compatibility testing, featuring multiple viewing and comparison tools, as well as customizable preferences. Since BrowserLab is an online service, it can be accessed from virtually any computer connected to the web.&quot;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://labs.adobe.com/technologies/browserlab/&quot;&gt;Read more info about it here.&lt;/a&gt;</description><link>http://iwillbelikethis.blogspot.com/2009/10/browserlab-from-adobe.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-8229067144119807144</guid><pubDate>Fri, 16 Oct 2009 09:44:00 +0000</pubDate><atom:updated>2009-10-16T15:15:45.392+05:30</atom:updated><title>When I was a kid..</title><description>&lt;b style=&quot;color: rgb(255, 0, 0);&quot;&gt;When I was a kid I used to pray every night for a new bike. Then I realized that The Lord doesn&#39;t work that way, so I stole one and asked him to forgive me..&lt;/b&gt;</description><link>http://iwillbelikethis.blogspot.com/2009/10/when-i-was-kid.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-5551256897666868164.post-8653846678690131407</guid><pubDate>Thu, 15 Oct 2009 10:22:00 +0000</pubDate><atom:updated>2009-10-15T15:55:59.926+05:30</atom:updated><title>Twitter via SMS on Airtel</title><description>Now we can Tweet via SMS on Airtel Mobiles..&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://airtel.in/twitter/&quot;&gt;http://airtel.in/twitter/&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://blog.twitter.com/&quot;&gt;http://blog.twitter.com/&lt;/a&gt;</description><link>http://iwillbelikethis.blogspot.com/2009/10/twitter-via-sms-on-airtel.html</link><author>noreply@blogger.com (Praveen Munaga)</author><thr:total>0</thr:total></item></channel></rss>