<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Valentin Simonov's Flash Blog</title>
	
	<link>http://va.lent.in/blog</link>
	<description>Making things move since 1999</description>
	<lastBuildDate>Wed, 25 Aug 2010 07:28:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/vsfb" /><feedburner:info uri="vsfb" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>JavaScript lazy functions.</title>
		<link>http://feedproxy.google.com/~r/vsfb/~3/OVKJhKg3UtM/</link>
		<comments>http://va.lent.in/blog/2010/08/25/javascript-lazy-functions/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 07:28:59 +0000</pubDate>
		<dc:creator>Valentin</dc:creator>
				<category><![CDATA[to view]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Lazy]]></category>

		<guid isPermaLink="false">http://va.lent.in/blog/?p=410</guid>
		<description><![CDATA[I never thought about lazy functions in JavaScript. Apparently, you can implement it this way: var foo = function() { var t = new Date(); foo = function() { return t; }; return foo(); }; I hate JavaScript. Bookmark It Hide Sites $$('div.d410').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) });]]></description>
			<content:encoded><![CDATA[<p>I never thought about <a href="http://peter.michaux.ca/articles/lazy-function-definition-pattern">lazy functions in JavaScript</a>. Apparently, you can implement it this way:</p>
<pre class="brush: jscript;">var foo = function() {
    var t = new Date();
    foo = function() {
        return t;
    };
    return foo();
};</pre>
<p>I hate JavaScript.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d410').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d410" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F&amp;submitHeadline=JavaScript+lazy+functions.&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F&amp;title=JavaScript+lazy+functions." rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F&amp;title=JavaScript+lazy+functions." rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F&amp;title=JavaScript+lazy+functions." rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F&amp;title=JavaScript+lazy+functions." rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F&amp;bm_description=JavaScript+lazy+functions." rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F&amp;title=JavaScript+lazy+functions." rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F&amp;title=JavaScript+lazy+functions." rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+JavaScript+lazy+functions.+@+http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F25%2Fjavascript-lazy-functions%2F&amp;t=JavaScript+lazy+functions." rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d410').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d410').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><img src="http://feeds.feedburner.com/~r/vsfb/~4/OVKJhKg3UtM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://va.lent.in/blog/2010/08/25/javascript-lazy-functions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://va.lent.in/blog/2010/08/25/javascript-lazy-functions/</feedburner:origLink></item>
		<item>
		<title>Want an onReleaseOutside event?</title>
		<link>http://feedproxy.google.com/~r/vsfb/~3/OeqhVsNuHDU/</link>
		<comments>http://va.lent.in/blog/2010/08/24/want-an-onreleaseoutside-event/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 14:57:38 +0000</pubDate>
		<dc:creator>Valentin</dc:creator>
				<category><![CDATA[to think]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[Jira]]></category>
		<category><![CDATA[onReleaseOutside]]></category>
		<category><![CDATA[Vote]]></category>

		<guid isPermaLink="false">http://va.lent.in/blog/?p=406</guid>
		<description><![CDATA[Vote for it now! Bookmark It Hide Sites $$('div.d406').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) });]]></description>
			<content:encoded><![CDATA[<p><a href="https://bugs.adobe.com/jira/browse/FP-1448">Vote</a> for it now!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d406').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d406" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F&amp;submitHeadline=Want+an+onReleaseOutside+event%3F&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F&amp;title=Want+an+onReleaseOutside+event%3F" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F&amp;title=Want+an+onReleaseOutside+event%3F" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F&amp;title=Want+an+onReleaseOutside+event%3F" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F&amp;title=Want+an+onReleaseOutside+event%3F" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F&amp;bm_description=Want+an+onReleaseOutside+event%3F" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F&amp;title=Want+an+onReleaseOutside+event%3F" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F&amp;title=Want+an+onReleaseOutside+event%3F" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Want+an+onReleaseOutside+event%3F+@+http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F24%2Fwant-an-onreleaseoutside-event%2F&amp;t=Want+an+onReleaseOutside+event%3F" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d406').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d406').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><img src="http://feeds.feedburner.com/~r/vsfb/~4/OeqhVsNuHDU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://va.lent.in/blog/2010/08/24/want-an-onreleaseoutside-event/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://va.lent.in/blog/2010/08/24/want-an-onreleaseoutside-event/</feedburner:origLink></item>
		<item>
		<title>Scala functions vs. methods</title>
		<link>http://feedproxy.google.com/~r/vsfb/~3/2Qm5-jbWE5A/</link>
		<comments>http://va.lent.in/blog/2010/08/23/scala-functions-vs-methods/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 14:05:18 +0000</pubDate>
		<dc:creator>Valentin</dc:creator>
				<category><![CDATA[to view]]></category>
		<category><![CDATA[Scala]]></category>

		<guid isPermaLink="false">http://va.lent.in/blog/?p=403</guid>
		<description><![CDATA[Scala is hard. To use its syntax sugar you have to know what&#8217;s going on. Bookmark It Hide Sites $$('div.d403').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) });]]></description>
			<content:encoded><![CDATA[<p>Scala is <a href="http://jim-mcbeath.blogspot.com/2009/05/scala-functions-vs-methods.html">hard</a>. To use its syntax sugar you have to know what&#8217;s going on.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d403').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d403" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F&amp;submitHeadline=Scala+functions+vs.+methods&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F&amp;title=Scala+functions+vs.+methods" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F&amp;title=Scala+functions+vs.+methods" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F&amp;title=Scala+functions+vs.+methods" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F&amp;title=Scala+functions+vs.+methods" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F&amp;bm_description=Scala+functions+vs.+methods" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F&amp;title=Scala+functions+vs.+methods" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F&amp;title=Scala+functions+vs.+methods" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Scala+functions+vs.+methods+@+http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F23%2Fscala-functions-vs-methods%2F&amp;t=Scala+functions+vs.+methods" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d403').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d403').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><img src="http://feeds.feedburner.com/~r/vsfb/~4/2Qm5-jbWE5A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://va.lent.in/blog/2010/08/23/scala-functions-vs-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://va.lent.in/blog/2010/08/23/scala-functions-vs-methods/</feedburner:origLink></item>
		<item>
		<title>In case you need to unlock some files on OS X</title>
		<link>http://feedproxy.google.com/~r/vsfb/~3/jO_WCJ9Rkwk/</link>
		<comments>http://va.lent.in/blog/2010/08/22/in-case-you-need-to-unlock-some-files-on-os-x/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 19:33:26 +0000</pubDate>
		<dc:creator>Valentin</dc:creator>
				<category><![CDATA[to code]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Unlock]]></category>

		<guid isPermaLink="false">http://va.lent.in/blog/?p=399</guid>
		<description><![CDATA[Recently I got a major headache with OS X file locks. Apparently, I can do nothing with locked files even being under root. So here comes a handy script which does that recursively. Taken from this site but there was a typo. #! /bin/bash # # Simple file unlocking utility for Mac OS X # [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I got a major headache with OS X file locks. Apparently, I can do nothing with locked files even being under root. So here comes a handy script which does that recursively. Taken from <a href="http://hints.macworld.com/article.php?story=20010328105037397">this site</a> but there was a typo.</p>
<pre class="brush: bash;">#! /bin/bash
#
# Simple file unlocking utility for Mac OS X
#
ARGS=1
E_BADARGS=65

function recursiveUnlock() {
 pushd $1
 for rdir in `ls -A`; do
 if [ -d &quot;${rdir}&quot; ]; then
 recursiveUnlock ${rdir}
 else
 /Developer/Tools/SetFile -a l ${rdir}
 fi
 done
 popd
}

if [ $# -ne &quot;$ARGS&quot; ]
then
 echo &quot;Usage: `basename $0` starting-directory&quot;
 exit $E_BADARGS
fi

recursiveUnlock $1</pre>
<p>Call it recursiveUnlock.sh and &#8220;chmod&#8221; it to 755.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d399').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d399" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F&amp;submitHeadline=In+case+you+need+to+unlock+some+files+on+OS+X&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F&amp;title=In+case+you+need+to+unlock+some+files+on+OS+X" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F&amp;title=In+case+you+need+to+unlock+some+files+on+OS+X" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F&amp;title=In+case+you+need+to+unlock+some+files+on+OS+X" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F&amp;title=In+case+you+need+to+unlock+some+files+on+OS+X" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F&amp;bm_description=In+case+you+need+to+unlock+some+files+on+OS+X" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F&amp;title=In+case+you+need+to+unlock+some+files+on+OS+X" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F&amp;title=In+case+you+need+to+unlock+some+files+on+OS+X" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+In+case+you+need+to+unlock+some+files+on+OS+X+@+http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F22%2Fin-case-you-need-to-unlock-some-files-on-os-x%2F&amp;t=In+case+you+need+to+unlock+some+files+on+OS+X" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d399').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d399').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><img src="http://feeds.feedburner.com/~r/vsfb/~4/jO_WCJ9Rkwk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://va.lent.in/blog/2010/08/22/in-case-you-need-to-unlock-some-files-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://va.lent.in/blog/2010/08/22/in-case-you-need-to-unlock-some-files-on-os-x/</feedburner:origLink></item>
		<item>
		<title>VOTE FOR THIS ONE!!!!!1</title>
		<link>http://feedproxy.google.com/~r/vsfb/~3/0alb3ZERRaQ/</link>
		<comments>http://va.lent.in/blog/2010/08/20/vote-for-this-one1/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 10:41:34 +0000</pubDate>
		<dc:creator>Valentin</dc:creator>
				<category><![CDATA[to think]]></category>
		<category><![CDATA[to view]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Jailbreak]]></category>

		<guid isPermaLink="false">http://va.lent.in/blog/?p=396</guid>
		<description><![CDATA[Now as jailbreaking is legal, couldn&#8217;t Adobe publish a Flashplayer for the iOS (iPhone, iPod, iPad) over Cydia(App Store for Jailbreaked Apps)? I guess this would be a huge market! https://bugs.adobe.com/jira/browse/FP-5228 I&#8217;d like Flash Player on my iPad please! Bookmark It Hide Sites $$('div.d396').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) });]]></description>
			<content:encoded><![CDATA[<blockquote><p>Now as jailbreaking is legal, couldn&#8217;t Adobe publish a Flashplayer for the iOS (iPhone, iPod, iPad) over Cydia(App Store for Jailbreaked Apps)?<br />
I guess this would be a huge market!</p></blockquote>
<p><a href="https://bugs.adobe.com/jira/browse/FP-5228">https://bugs.adobe.com/jira/browse/FP-5228</a><br />
I&#8217;d like Flash Player on my iPad please!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d396').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d396" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F&amp;submitHeadline=VOTE+FOR+THIS+ONE%21%21%21%21%211&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F&amp;title=VOTE+FOR+THIS+ONE%21%21%21%21%211" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F&amp;title=VOTE+FOR+THIS+ONE%21%21%21%21%211" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F&amp;title=VOTE+FOR+THIS+ONE%21%21%21%21%211" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F&amp;title=VOTE+FOR+THIS+ONE%21%21%21%21%211" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F&amp;bm_description=VOTE+FOR+THIS+ONE%21%21%21%21%211" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F&amp;title=VOTE+FOR+THIS+ONE%21%21%21%21%211" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F&amp;title=VOTE+FOR+THIS+ONE%21%21%21%21%211" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+VOTE+FOR+THIS+ONE%21%21%21%21%211+@+http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fvote-for-this-one1%2F&amp;t=VOTE+FOR+THIS+ONE%21%21%21%21%211" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d396').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d396').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><img src="http://feeds.feedburner.com/~r/vsfb/~4/0alb3ZERRaQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://va.lent.in/blog/2010/08/20/vote-for-this-one1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://va.lent.in/blog/2010/08/20/vote-for-this-one1/</feedburner:origLink></item>
		<item>
		<title>Continuing on the XML bug</title>
		<link>http://feedproxy.google.com/~r/vsfb/~3/C35r9_o2yAk/</link>
		<comments>http://va.lent.in/blog/2010/08/20/continuing-on-the-xml-bug/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 10:16:54 +0000</pubDate>
		<dc:creator>Valentin</dc:creator>
				<category><![CDATA[to think]]></category>
		<category><![CDATA[1]]></category>
		<category><![CDATA[10]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://va.lent.in/blog/?p=393</guid>
		<description><![CDATA[Looks like my XML Flash Player 10.1 issue already has a bug filled at bugs.adobe.com. Too bad, that could be the first ever bug report submitted by me )8 Bookmark It Hide Sites $$('div.d393').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) });]]></description>
			<content:encoded><![CDATA[<p>Looks like <a href="http://va.lent.in/blog/2010/08/19/huge-flash-player-10-1-xml-bug/">my XML Flash Player 10.1 issue</a> already has a <a href="https://bugs.adobe.com/jira/browse/FP-4480">bug filled at bugs.adobe.com</a>. Too bad, that could be the first ever bug report submitted by me )8</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d393').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d393" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F&amp;submitHeadline=Continuing+on+the+XML+bug&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F&amp;title=Continuing+on+the+XML+bug" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F&amp;title=Continuing+on+the+XML+bug" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F&amp;title=Continuing+on+the+XML+bug" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F&amp;title=Continuing+on+the+XML+bug" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F&amp;bm_description=Continuing+on+the+XML+bug" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F&amp;title=Continuing+on+the+XML+bug" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F&amp;title=Continuing+on+the+XML+bug" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Continuing+on+the+XML+bug+@+http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F20%2Fcontinuing-on-the-xml-bug%2F&amp;t=Continuing+on+the+XML+bug" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d393').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d393').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><img src="http://feeds.feedburner.com/~r/vsfb/~4/C35r9_o2yAk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://va.lent.in/blog/2010/08/20/continuing-on-the-xml-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://va.lent.in/blog/2010/08/20/continuing-on-the-xml-bug/</feedburner:origLink></item>
		<item>
		<title>Huge Flash Player 10.1 XML bug.</title>
		<link>http://feedproxy.google.com/~r/vsfb/~3/s8qvaEOstGM/</link>
		<comments>http://va.lent.in/blog/2010/08/19/huge-flash-player-10-1-xml-bug/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 19:15:55 +0000</pubDate>
		<dc:creator>Valentin</dc:creator>
				<category><![CDATA[to think]]></category>
		<category><![CDATA[10.1]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://va.lent.in/blog/?p=390</guid>
		<description><![CDATA[Check this XML. &#60;data xmlns:Bla=&#34;bla&#34;&#62;&#60;Bla:bla&#62;&#60;/bla:bla&#62;&#60;/data&#62; It&#8217;s obviously malformed. Flash Player 10.0 fails to parse it but Flash Player 10.1 doesn&#8217;t care. This caused major headache yesterday. How do I submit a bug to Adobe? Bookmark It Hide Sites $$('div.d390').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) });]]></description>
			<content:encoded><![CDATA[<p>Check this XML.</p>
<pre class="brush: xml;">&lt;data xmlns:Bla=&quot;bla&quot;&gt;&lt;Bla:bla&gt;&lt;/bla:bla&gt;&lt;/data&gt;</pre>
<p>It&#8217;s obviously malformed. Flash Player 10.0 fails to parse it but Flash Player 10.1 doesn&#8217;t care. This caused major headache yesterday.</p>
<p>How do I submit a bug to Adobe?</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d390').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d390" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F&amp;submitHeadline=Huge+Flash+Player+10.1+XML+bug.&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F&amp;title=Huge+Flash+Player+10.1+XML+bug." rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F&amp;title=Huge+Flash+Player+10.1+XML+bug." rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F&amp;title=Huge+Flash+Player+10.1+XML+bug." rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F&amp;title=Huge+Flash+Player+10.1+XML+bug." rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F&amp;bm_description=Huge+Flash+Player+10.1+XML+bug." rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F&amp;title=Huge+Flash+Player+10.1+XML+bug." rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F&amp;title=Huge+Flash+Player+10.1+XML+bug." rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Huge+Flash+Player+10.1+XML+bug.+@+http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F19%2Fhuge-flash-player-10-1-xml-bug%2F&amp;t=Huge+Flash+Player+10.1+XML+bug." rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d390').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d390').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><img src="http://feeds.feedburner.com/~r/vsfb/~4/s8qvaEOstGM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://va.lent.in/blog/2010/08/19/huge-flash-player-10-1-xml-bug/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://va.lent.in/blog/2010/08/19/huge-flash-player-10-1-xml-bug/</feedburner:origLink></item>
		<item>
		<title>Did you know about AS3 “down to” operator?</title>
		<link>http://feedproxy.google.com/~r/vsfb/~3/nKL1LJCCzlE/</link>
		<comments>http://va.lent.in/blog/2010/08/16/did-you-know-about-as3-down-to-operator/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 19:39:48 +0000</pubDate>
		<dc:creator>Valentin</dc:creator>
				<category><![CDATA[to think]]></category>
		<category><![CDATA[to view]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[downto]]></category>
		<category><![CDATA[Operator]]></category>

		<guid isPermaLink="false">http://va.lent.in/blog/?p=380</guid>
		<description><![CDATA[I am talking about &#8211;&#62; operator. Did you know about it? It&#8217;s called &#8220;down to&#8221; operator. Here&#8217;s an example. var a:uint = 20; while ( a --&#62; 0 ) trace(a); Isn&#8217;t it cool?! Bookmark It Hide Sites $$('div.d380').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) });]]></description>
			<content:encoded><![CDATA[<p>I am talking about &#8211;&gt; operator. Did you know about it? It&#8217;s called &#8220;down to&#8221; operator. Here&#8217;s an example.</p>
<pre class="brush: as3;">var a:uint = 20;
while ( a --&gt; 0 ) trace(a);</pre>
<p>Isn&#8217;t it cool?!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d380').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d380" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F&amp;submitHeadline=Did+you+know+about+AS3+%26%238220%3Bdown+to%26%238221%3B+operator%3F&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F&amp;title=Did+you+know+about+AS3+%26%238220%3Bdown+to%26%238221%3B+operator%3F" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F&amp;title=Did+you+know+about+AS3+%26%238220%3Bdown+to%26%238221%3B+operator%3F" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F&amp;title=Did+you+know+about+AS3+%26%238220%3Bdown+to%26%238221%3B+operator%3F" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F&amp;title=Did+you+know+about+AS3+%26%238220%3Bdown+to%26%238221%3B+operator%3F" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F&amp;bm_description=Did+you+know+about+AS3+%26%238220%3Bdown+to%26%238221%3B+operator%3F" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F&amp;title=Did+you+know+about+AS3+%26%238220%3Bdown+to%26%238221%3B+operator%3F" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F&amp;title=Did+you+know+about+AS3+%26%238220%3Bdown+to%26%238221%3B+operator%3F" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Did+you+know+about+AS3+%26%238220%3Bdown+to%26%238221%3B+operator%3F+@+http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F08%2F16%2Fdid-you-know-about-as3-down-to-operator%2F&amp;t=Did+you+know+about+AS3+%26%238220%3Bdown+to%26%238221%3B+operator%3F" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d380').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d380').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><img src="http://feeds.feedburner.com/~r/vsfb/~4/nKL1LJCCzlE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://va.lent.in/blog/2010/08/16/did-you-know-about-as3-down-to-operator/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://va.lent.in/blog/2010/08/16/did-you-know-about-as3-down-to-operator/</feedburner:origLink></item>
		<item>
		<title>Ten tips for building better Adobe AIR applications</title>
		<link>http://feedproxy.google.com/~r/vsfb/~3/PXzWr7s5DIg/</link>
		<comments>http://va.lent.in/blog/2010/07/19/ten-tips-for-building-better-adobe-air-applications/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 08:09:34 +0000</pubDate>
		<dc:creator>Valentin</dc:creator>
				<category><![CDATA[to view]]></category>
		<category><![CDATA[AIR]]></category>

		<guid isPermaLink="false">http://va.lent.in/blog/?p=373</guid>
		<description><![CDATA[Usually I dislike posts titled &#8220;10/20/30 whatever for/to whatever whatever&#8220;. Why 10? Can there be more? Why you chose these ones? But this post about AIR applications seems to be really useful. At least I got some interesting stuff from the article. It is definitely a good read if (even if not) you are developing [...]]]></description>
			<content:encoded><![CDATA[<p>Usually I dislike posts titled &#8220;<em>10/20/30 whatever for/to whatever whatever</em>&#8220;. Why 10? Can there be more? Why you chose these ones?</p>
<p>But <a href="http://www.flashmagazine.com/tutorials/detail/ten_tips_for_building_better_adobe_air_applications/">this post</a> about AIR applications seems to be really useful. At least I got some interesting stuff from the article. It is definitely a good read if (even if not) you are developing AIR applications.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d373').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d373" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F&amp;submitHeadline=Ten+tips+for+building+better+Adobe+AIR+applications&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F&amp;title=Ten+tips+for+building+better+Adobe+AIR+applications" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F&amp;title=Ten+tips+for+building+better+Adobe+AIR+applications" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F&amp;title=Ten+tips+for+building+better+Adobe+AIR+applications" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F&amp;title=Ten+tips+for+building+better+Adobe+AIR+applications" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F&amp;bm_description=Ten+tips+for+building+better+Adobe+AIR+applications" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F&amp;title=Ten+tips+for+building+better+Adobe+AIR+applications" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F&amp;title=Ten+tips+for+building+better+Adobe+AIR+applications" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Ten+tips+for+building+better+Adobe+AIR+applications+@+http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F19%2Ften-tips-for-building-better-adobe-air-applications%2F&amp;t=Ten+tips+for+building+better+Adobe+AIR+applications" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d373').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d373').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><img src="http://feeds.feedburner.com/~r/vsfb/~4/PXzWr7s5DIg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://va.lent.in/blog/2010/07/19/ten-tips-for-building-better-adobe-air-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://va.lent.in/blog/2010/07/19/ten-tips-for-building-better-adobe-air-applications/</feedburner:origLink></item>
		<item>
		<title>initInjector 0.2.1b</title>
		<link>http://feedproxy.google.com/~r/vsfb/~3/BmwxZwJmMEc/</link>
		<comments>http://va.lent.in/blog/2010/07/17/initinjector-0-2-1b/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 23:07:01 +0000</pubDate>
		<dc:creator>Valentin</dc:creator>
				<category><![CDATA[to view]]></category>
		<category><![CDATA[apparat]]></category>
		<category><![CDATA[init]]></category>
		<category><![CDATA[InitInjector]]></category>
		<category><![CDATA[Scala]]></category>

		<guid isPermaLink="false">http://va.lent.in/blog/?p=365</guid>
		<description><![CDATA[Scala version 2.8.0 has been finally released, Joa updated apparat amazingly fast and v.0.2.1b is just a stable Scala 2.8.0 compiled application. http://va.lent.in/projects/swf/initInjector/initInjector.0.2.1b.zip InitInjector is a little Scala app which allows you to move code from SWF constructor to a private init method and subscribe it to ADDED_TO_STAGE. This fixes an error of stage being [...]]]></description>
			<content:encoded><![CDATA[<p>Scala version 2.8.0 has been finally released, Joa updated apparat amazingly fast and v.0.2.1b is just a stable Scala 2.8.0 compiled application.</p>
<p><a href="http://va.lent.in/projects/swf/initInjector/initInjector.0.2.1b.zip">http://va.lent.in/projects/swf/initInjector/initInjector.0.2.1b.zip</a></p>
<p><a href="http://va.lent.in/blog/initinjector/">InitInjector</a> is a little Scala app which allows you to move code  from SWF constructor to a private init method and subscribe it to  ADDED_TO_STAGE. This fixes an error of stage being null in loaded SWFs  constructor.</p>
<p><strong>0.2.1b:</strong></p>
<ul>
<li>Recompiled for Scala 2.8.0</li>
</ul>
<p><strong>0.2b:</strong></p>
<ul>
<li>Fixed several bugs</li>
<li>Added <strong>-p</strong> option which also injects init method to parent  class constructor</li>
<li>Thanks to <a href="http://blog.joa-ebert.com/">Joa Ebert</a> who modified <a href="http://code.google.com/p/apparat/">apparat</a> for my needs I  got rid of half of my code</li>
</ul>
<p>Thanks to everyone for reporting bugs.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d365').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d365" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F&amp;submitHeadline=initInjector+0.2.1b&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F&amp;title=initInjector+0.2.1b" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F&amp;title=initInjector+0.2.1b" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F&amp;title=initInjector+0.2.1b" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F&amp;title=initInjector+0.2.1b" rel="nofollow" title="Add to&nbsp;LinkedIn"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/linkedin.png" title="Add to&nbsp;LinkedIn" alt="Add to&nbsp;LinkedIn" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F&amp;bm_description=initInjector+0.2.1b" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F&amp;title=initInjector+0.2.1b" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F&amp;title=initInjector+0.2.1b" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+initInjector+0.2.1b+@+http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fva.lent.in%2Fblog%2F2010%2F07%2F17%2Finitinjector-0-2-1b%2F&amp;t=initInjector+0.2.1b" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://va.lent.in/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d365').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d365').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><img src="http://feeds.feedburner.com/~r/vsfb/~4/BmwxZwJmMEc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://va.lent.in/blog/2010/07/17/initinjector-0-2-1b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://va.lent.in/blog/2010/07/17/initinjector-0-2-1b/</feedburner:origLink></item>
	</channel>
</rss>
