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

<channel>
	<title>FlexBandit</title>
	<atom:link href="http://flexbandit.com/feed" rel="self" type="application/rss+xml" />
	<link>http://flexbandit.com</link>
	<description>Yet another Flex enthusiast? You Betcha!</description>
	<lastBuildDate>Sun, 04 Dec 2011 15:34:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Time Savers With PHP and Flex</title>
		<link>http://flexbandit.com/archives/154</link>
		<comments>http://flexbandit.com/archives/154#comments</comments>
		<pubDate>Wed, 26 Jan 2011 21:56:49 +0000</pubDate>
		<dc:creator>donkeybandit</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://flexbandit.com/?p=154</guid>
		<description><![CDATA[This article explores some of the time saving features of Doctrine 2, Zend AMF, Flex, and Flash Builder. It is well worth a read. Once you are fully set up the amount of laborious boiler plate code will be reduced considerably.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.adobe.com/devnet/flex/articles/flex-doctrine2-zendamf.html">This article</a> explores some of the time saving features of Doctrine 2, Zend AMF, Flex, and Flash Builder. It is well worth a read.</p>
<p>Once you are fully set up the amount of laborious boiler plate code will be reduced considerably.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexbandit.com/archives/154/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Disappearing Import Statements</title>
		<link>http://flexbandit.com/archives/115</link>
		<comments>http://flexbandit.com/archives/115#comments</comments>
		<pubDate>Wed, 12 May 2010 22:27:10 +0000</pubDate>
		<dc:creator>donkeybandit</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://flexbandit.com/?p=115</guid>
		<description><![CDATA[I have witnessed a few people having trouble with their ActionScript import statements going missing inside an &#60;mx:Script&#62; tag within an mxml file. This is usually due to the xmlns reference at the top of the page including the same import. To solve the problem, remove the xmlns reference that uses the same import. For [...]]]></description>
			<content:encoded><![CDATA[<p>I have witnessed a few people having trouble with their ActionScript import statements going missing inside an &lt;mx:Script&gt; tag within an mxml file.</p>
<p>This is usually due to the xmlns reference at the top of the page including the same import. To solve the problem, remove the xmlns reference that uses the same import.</p>
<p>For example:</p>
<pre class="brush: as3; title: ; notranslate">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;

&lt;s:Application xmlns:fx=&quot;http://ns.adobe.com/mxml/2009&quot;
			   xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot;
			   xmlns:mx=&quot;library://ns.adobe.com/flex/mx&quot;
			   minWidth=&quot;955&quot; minHeight=&quot;600&quot; xmlns:view=&quot;view.*&quot;&gt;

	&lt;fx:Declarations&gt;
		&lt;view:TestView/&gt;
	&lt;/fx:Declarations&gt;

	&lt;fx:Script&gt;
		&lt;![CDATA[
			import view.TestView;
			private var testView:TestView;
		]]&gt;
	&lt;/fx:Script&gt;

&lt;/s:Application&gt;
</pre>
<p>Because the TestView component is referenced in both mxml and ActionScript, the AS version of the import will be prone to disappearing. To solve the problem stick to <em>either</em> AS or mxml (not both) when using the component and don&#8217;t forget to remove the &#8220;xmlns:&#8221; reference.</p>
<p>Incidentally, this problem may have been resolved in FlashBuilder 4. I haven&#8217;t noticed any disappearing Imports since upgrading.</p>
<p>Another possible cause is referenced <a href="http://www.blogcop.com/get/MTAyNjUz">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexbandit.com/archives/115/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Egoless Programming</title>
		<link>http://flexbandit.com/archives/104</link>
		<comments>http://flexbandit.com/archives/104#comments</comments>
		<pubDate>Sat, 06 Mar 2010 18:55:09 +0000</pubDate>
		<dc:creator>donkeybandit</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://flexbandit.com/?p=104</guid>
		<description><![CDATA[Working in a team environment that makes use of frequent code reviews can be extremely challenging. Coders, like artists tend take a lot of pride in their work and the thought of frequent reviews can feel threatening. To create an environment where reviews are welcomed, adopting an egoless approach can prove practical. To successfully achieve a comfortable [...]]]></description>
			<content:encoded><![CDATA[<p>Working in a team environment that makes use of frequent <a title="Code Review Definition - Wikipedia" href="http://en.wikipedia.org/wiki/Code_review" target="_blank">code reviews</a> can be extremely challenging. Coders, like artists tend take a lot of pride in their work and the thought of frequent reviews can feel threatening. To create an environment where reviews are welcomed, adopting an egoless approach can prove practical.</p>
<p>To successfully achieve a comfortable review friendly working practice will take effort from both reviewers and reviewees. Some practice is also required until the reviewing process is just right. If the reviewer is too soft there is a danger that poor quality code could make it into the codebase, whereas if they are too hard the coder could become unnecessarily defensive or upset.</p>
<p><span id="more-104"></span>When a &#8220;review before check in&#8221; process is first introduced there is usually some frustration from the coder because it seems like time is being wasted before they can complete their work. In the long run I have found the time spent on reviews to be worth every second as they often catch defects before the testing process and help to improve a coders knowledge.</p>
<p>To help resolve the personal issues that invariably arise from reviews you can adopt <a href="http://www.builderau.com.au/blogs/codemonkeybusiness/viewblogpost.htm?p=339270403">the Ten Commandments of Egoless Programming</a> as a way of resolving any hurt feelings. It is vital that reviewers use language that <strong><em>does not</em></strong> express disappointment, blame or general negativity as this will create a negative attitude toward reviews.</p>
<p>Tools I have used for code review include <a title="Code Collaborator" href="http://smartbear.com/codecollab.php" target="_blank">Smart Bear Code Collaborator</a> and <a title="Jupiter" href="http://code.google.com/p/jupiter-eclipse-plugin/" target="_blank">Jupiter for Eclipse</a>. I recommend Smart Bear if you are serious about reviews and have the budget, otherwise Jupiter may be sufficient. It&#8217;s worth noting that Smart Bear may offer a free licence if your project is free and open source.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexbandit.com/archives/104/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Inspiring Quote</title>
		<link>http://flexbandit.com/archives/78</link>
		<comments>http://flexbandit.com/archives/78#comments</comments>
		<pubDate>Mon, 02 Nov 2009 23:18:46 +0000</pubDate>
		<dc:creator>donkeybandit</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://flexbandit.com/?p=78</guid>
		<description><![CDATA[There are times when a good quote or anecdote can provide a distilled emotional quick fix to your mood. Michael Wulf gave me the pleasure of a Theodore Roosevelt quote at a time when I really needed it. It is not the critic who counts; Not the man who points out how the strong man [...]]]></description>
			<content:encoded><![CDATA[<p>There are times when a good quote or anecdote can provide a distilled emotional quick fix to your mood. <a href="http://michaelwulf.com/">Michael Wulf </a>gave me the pleasure of a <a href="http://michaelwulf.com/blog/2009/03/04/its-not-the-critic-who-counts/">Theodore Roosevelt quote</a> at a time when I really needed it.</p>
<blockquote><p>It is not the critic who counts; Not the man who points out how the strong man stumbles, or where the doer of deeds could have done them better.</p>
<p>The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood; Who strives valiantly;</p>
<p>Who errs, and comes up short again and again, because there is no effort without error and shortcoming; But who does actually strive to do the deeds; Who knows the great enthusiasms, the great devotions; Who spends himself in a worthy cause;</p>
<p>Who at the best knows in the end the triumph of high achievement, and who at the worse, if he fails, at least fails while daring greatly, so that his place shall never be with those cold and timid souls who know neither victory nor defeat.</p></blockquote>
<p>-Theodore Roosevelt</p>
]]></content:encoded>
			<wfw:commentRss>http://flexbandit.com/archives/78/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FlexBandit Goes iPhone Friendly</title>
		<link>http://flexbandit.com/archives/79</link>
		<comments>http://flexbandit.com/archives/79#comments</comments>
		<pubDate>Sat, 31 Oct 2009 14:17:56 +0000</pubDate>
		<dc:creator>donkeybandit</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://flexbandit.com/archives/79</guid>
		<description><![CDATA[Today I upgraded this site to use the excellent iWPhone plugin and the latest version of WordPress. Now you can view the site in an optimised format on your iPhone. Enjoy!]]></description>
			<content:encoded><![CDATA[<p>Today I upgraded this site to use the excellent <a href="http://iwphone.contentrobot.com/">iWPhone plugin</a> and the latest version of <a href="http://wordpress.org/">WordPress</a>. Now you can view the site in an optimised format on your <a href="http://www.apple.com/uk/iphone/">iPhone</a>. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://flexbandit.com/archives/79/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse/FlexBuilder Memory Settings</title>
		<link>http://flexbandit.com/archives/75</link>
		<comments>http://flexbandit.com/archives/75#comments</comments>
		<pubDate>Wed, 16 Sep 2009 13:09:28 +0000</pubDate>
		<dc:creator>donkeybandit</dc:creator>
				<category><![CDATA[Flex Gotchas]]></category>
		<category><![CDATA[Flex Info]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Eclipse]]></category>

		<guid isPermaLink="false">http://flexbandit.com/?p=75</guid>
		<description><![CDATA[Increase the amount of heap used by Eclipse/FlexBuilder by adding the following command line options: -vmargs -Xms256M -Xmx512M Shortcut Example: "C:\Program Files\eclipse\eclipse.exe" -vmargs -Xms256M -Xmx512M Alternatively, you can update your eclipse.ini file. More information can be found on Ryan Phelan&#8217;s site. These examples have been tested on a Windows XP PC with 2GB RAM.]]></description>
			<content:encoded><![CDATA[<p>Increase the amount of heap used by Eclipse/FlexBuilder by adding the following command line options:</p>
<p><code>-vmargs -Xms256M -Xmx512M</code></p>
<p>Shortcut Example: <code>"C:\Program Files\eclipse\eclipse.exe" -vmargs -Xms256M -Xmx512M</code></p>
<p>Alternatively, you can update your eclipse.ini file.</p>
<p>More information can be found on <a title="Tweaking Compiler Performance in Flex Builder" href="http://www.rphelan.com/2008/03/27/tweaking-compiler-performance-in-flex-builder/" target="_blank">Ryan Phelan&#8217;s site</a>.</p>
<p>These examples have been tested on a Windows XP PC with 2GB RAM.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexbandit.com/archives/75/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subclipse With SSH &#8211; Top Tip</title>
		<link>http://flexbandit.com/archives/69</link>
		<comments>http://flexbandit.com/archives/69#comments</comments>
		<pubDate>Sun, 21 Jun 2009 13:36:17 +0000</pubDate>
		<dc:creator>donkeybandit</dc:creator>
				<category><![CDATA[Flex Gotchas]]></category>
		<category><![CDATA[Flex Info]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[SVN+SSH]]></category>

		<guid isPermaLink="false">http://flexbandit.com/?p=69</guid>
		<description><![CDATA[If you&#8217;ve attempted to use subclipse with a secure session, you may well have experienced the dreaded error message: The system cannot find the file specified. svn: Can't create tunnel: The system cannot find the file specified. Typically, you experience it when using a url with the following structure: svn+ssh://myfancy.svnserver.com/repo Thankfully there is a very [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve attempted to use subclipse with a secure session, you may well have experienced the dreaded error message:</p>
<p><code>The system cannot find the file specified.<br />
svn: Can't create tunnel: The system cannot find the file specified.</code></p>
<p>Typically, you experience it when using a url with the following structure:</p>
<p><code>svn+ssh://myfancy.svnserver.com/repo</code></p>
<p>Thankfully there is a very simple fix. All you need to do is <span id="more-69"></span>adjust one of the settings in the &#8220;<strong>Window-&gt;Preferences</strong>&#8221; menu.</p>
<p>Navigate the tree to &#8220;<strong>Team-&gt;SVN</strong>&#8221; and you will notice a section called &#8220;SVN Interface&#8221;. If the client is set to &#8220;JavaHL (JNI)&#8221; then <strong>change it to &#8220;SVNKit (Pure Java)&#8221;</strong>.</p>
<p>Thanks to <a href="http://markphip.blogspot.com/" target="_blank">Mark Phippard</a> for this gem.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexbandit.com/archives/69/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vote Zentrack Now!</title>
		<link>http://flexbandit.com/archives/64</link>
		<comments>http://flexbandit.com/archives/64#comments</comments>
		<pubDate>Sat, 23 May 2009 23:05:33 +0000</pubDate>
		<dc:creator>donkeybandit</dc:creator>
				<category><![CDATA[Zentrack]]></category>

		<guid isPermaLink="false">http://flexbandit.com/?p=64</guid>
		<description><![CDATA[The community choice awards are an opportunity to vote for fantastic open source software. For me Zentrack has been such a useful tool that it certainly got my vote! Please click the award link if you want to vote too.]]></description>
			<content:encoded><![CDATA[<p><a href="http://sourceforge.net/community/cca09/nominate/?project_name=ZenTrack&amp;project_url=http://zentrack.com/"><img src="http://sourceforge.net/images/cca/cca_nominate.png" border="0" alt="" /></a>The community choice awards are an opportunity to vote for fantastic open source software. For me Zentrack has been such a useful tool that it certainly got my vote! Please click the award link if you want to vote too.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexbandit.com/archives/64/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>April in Focus</title>
		<link>http://flexbandit.com/archives/63</link>
		<comments>http://flexbandit.com/archives/63#comments</comments>
		<pubDate>Sun, 26 Apr 2009 15:43:26 +0000</pubDate>
		<dc:creator>donkeybandit</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://flexbandit.com/?p=63</guid>
		<description><![CDATA[After a very quiet March, April has been extremely busy. I started working with a great design company HeavyLight and we have been producing some great initial results. As a team we have really harnessed the power of Illustrator and Flex to create some fabulous looking, high performance user interfaces. Hopefully I will be able [...]]]></description>
			<content:encoded><![CDATA[<p>After a very quiet March, April has been extremely busy. I started working with a great design company <a href="http://www.heavylightdesign.com/">HeavyLight</a> and we have been producing some great initial results. As a team we have really harnessed the power of Illustrator and Flex to create some fabulous looking, high performance user interfaces. Hopefully I will be able to show off some of our work in the future just to demonstrate what can be done when you get great graphic designers together with a designer friendly developer.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexbandit.com/archives/63/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matt and Eric&#8217;s Cosmic Corridors Goes Live!</title>
		<link>http://flexbandit.com/archives/60</link>
		<comments>http://flexbandit.com/archives/60#comments</comments>
		<pubDate>Tue, 03 Mar 2009 11:01:01 +0000</pubDate>
		<dc:creator>donkeybandit</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Cosmic Corridors]]></category>

		<guid isPermaLink="false">http://flexbandit.com/?p=60</guid>
		<description><![CDATA[Well the moment you&#8217;ve all been waiting for has come! You can find the podcast feed for the first episode of Cosmic Corridors on the new site, here. Alternatively, you can search for &#8220;Cosmic Corridors&#8221; on iTunes.]]></description>
			<content:encoded><![CDATA[<p>Well the moment you&#8217;ve all been waiting for has come! You can find the podcast feed for the first episode of Cosmic Corridors on the new site, <a title="Cosmic Corridors Episode 1" href="http://cosmic-corridors.com/episodes/?feed=podcast" target="_blank" class="broken_link">here</a>.</p>
<p>Alternatively, you can search for &#8220;Cosmic Corridors&#8221; on iTunes.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexbandit.com/archives/60/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

