<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0" -->
<rss version="0.92">
<channel>
	<title>Matas Ideas and Thoughts</title>
	<link>http://blog.petrikas.de</link>
	<description>suddenly everything makes sense...</description>
	<lastBuildDate>Sun, 03 Aug 2008 19:57:23 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Effective ActionScript: variable testing</title>
		<description>It's a pretty usual ActionScript code excerpt:

 if (variable == true){ doSomething(); } 
as you can see, the variable value is being tested here against its true value, which is a totally redundant action. A much more convenient style would be:

 if (variable){ doSomething(); } 
What so nice about this ...</description>
		<link>http://blog.petrikas.de/uncategorized/effective-actionscript-variable-testing/</link>
			</item>
	<item>
		<title>Effective ActionScript: Iteration</title>
		<description>This post was inspired by Volodja Kolesnikovs article about non-trivial syntax in JavaScript. ActionScript and JS are both ECMA languages, which is why these ideas could be aplied to AS programming too.

Take for example a "for" loop iteration. Here is a very usual example:

for(var i = 0; i < array.length; ...</description>
		<link>http://blog.petrikas.de/flash/effective-actionscript-iterations/</link>
			</item>
	<item>
		<title>How many times have I&#8230;</title>
		<description>Just a short notice: next time you have to write 2x2=4 or "2x faster!" in your code,  use a HTML entity times (Unicode No: 215) instead of small cap X.
More semantics — better Karma! </description>
		<link>http://blog.petrikas.de/front-end-programming/x-html/how-many-times-have-i/</link>
			</item>
	<item>
		<title>Soft-hyphen, &#038;Shy and word-wrapping problem solutions</title>
		<description>If you've ever written CSS for a bigger website in some European language (other than English), you'll know this problem:
your have built all the templates for a huge project, everything works perfect in all possible font-sizes and viewport-widths, even in the "bad" browsers, and then you get a call from ...</description>
		<link>http://blog.petrikas.de/uncategorized/soft-hyphen-shy-and-word-wrapping-problem/</link>
			</item>
</channel>
</rss>
