<?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>Xavi Colomer&#039;s Blog &#187; News</title>
	<atom:link href="http://blog.ncatstudios.com/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ncatstudios.com</link>
	<description>Web technologies and Interactivity ramblings</description>
	<lastBuildDate>Sun, 05 Sep 2010 20:36:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to make money with Online Video and Content related ads</title>
		<link>http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 00:32:02 +0000</pubDate>
		<dc:creator>Xavi Colomer</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.ncatstudios.com/?p=265</guid>
		<description><![CDATA[
			
				
			
		
A Conceptual Component design made in one afternoon
I decided this weekend to be a code weekend. That means I will spend a lot of hours in front of my Mac developing conceptual stuff I have on my mind.
One if this ideas was to develop a marketing tool for online video. There is a lot of [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.ncatstudios.com%2F2010%2F06%2F12%2Fhow-to-make-money-with-online-video-and-content-related-ads%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.ncatstudios.com%2F2010%2F06%2F12%2Fhow-to-make-money-with-online-video-and-content-related-ads%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>A Conceptual Component design made in one afternoon</strong></p>
<p>I decided this weekend to be a code weekend. That means I will spend a lot of hours in front of my Mac developing conceptual stuff I have on my mind.</p>
<p>One if this ideas was to develop a marketing tool for online video. There is a lot of companies producing it’s own TV series. This companies already have ways to monetize content on the TV ( ads and ‘subliminal’ products ) and monetize online content ( overlays, prerolls, etc… ) But I would like to add a new one, how to buy stuff that appears on this TV series?<br />
It’s usual in this series to find cool flats perfectly decorated, people dressed cool, etc… Why not selling directly from the video, pointing you to the next shop or website where you can find all this?<br />
From that question I develop the ‘conceptual’ tool you can see and use below. It’s quite easy to use, you only must roll over the tags and the ad will appear on the right.</p>
<p><object width="520" height="400"><param name="movie" value="ConceptualVideoAdvertising.swf"><embed src="http://www.ncatstudios.com/public/blog/MoneyOnline/ConceptualVideoAdvertising.swf" width="520" height="400"></embed></object></p>
<p><strong>How did I do it?</strong></p>
<p>Well, since is just a conceptual idea I didn’t spent much time on architecture and ‘doing things right’. I just created a video player and a dock from scratch, then I put a Pin Manager over it with a collection of pins inside.  Every Pin has instructions of when and how to move or hide, and ad related info.</p>
<p>To store the instructions I used a Dictionary, using the start time as the key, this would mean I only have one action per second, but I solved it by passing an array of actions.</p>
<p><strong>Example of the pin instructions:</strong><br />
<em>color = 0xFF9900<br />
_image = &#8220;assets/images/GreyTop.jpg&#8221;; </em></p>
<p><em> </em></p>
<p><em>instructions = new Dictionary();<br />
instructions[ 10 ] = [  { type:'move', duration:0, properties:{ x:218, y:106 } }, { type:'show' } ];<br />
instructions[ 11 ] = [  { type:'hide' } ];<br />
instructions[ 13 ] = [  { type:'move', duration:0, properties:{ x:213, y:92 } }, { type:'show' } ];<br />
…</em></p>
<p>Every time the video change the time ( update per second ) every pin looks inside the dictionary to see if has any action to do.<br />
At the very beginning I was moving and testing every move step by step, but this was taking me so long, then I decided to create my Pin Editor.</p>
<p><strong>How it Works? </strong></p>
<p>Is very simple, I reproduce the video, when I press the mouse button on the video I trace the code of move on the specified mouse position, when  I release the button I trace the hide code.</p>
<p><strong>Mouse Down:</strong><br />
<em>instructions[ 10 ] = [  { type:'move', duration:0, properties:{ x:218, y:106 } }, { type:'show' } ];</em></p>
<p><strong>Mouse Up:</strong><br />
<em>instructions[ 11 ] = [  { type:'hide' } ];</em></p>
<p>The only work left is to copy and paste the generated code into the class  without any modification <img src='http://blog.ncatstudios.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong><em>Note: By default all the generated instructions has a duration of 0, this means a direct positioning, but in order to have a smooth positioning the duration can be change, as an example you can see the first seconds of the video looking at the cup Robin Williams is holding on his hand.</em></strong></p>
<p>So for each pin I reproduce the video once to generate the instructions for each pin, and one last play for correcting any wrong move for any pin.</p>
<p>To correct the position I just pause the video and since I put the current time on the fake scrubber and when I move the mouse over the screen I get the current mouse position, it’s very easy to find and correct the wrong pin position <img src='http://blog.ncatstudios.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Where to go from here?</p>
<p><em>First of all this is only a conceptual component, so in case of developing it for real, I should spend a lot more time on it.</em></p>
<p><em>There is a lot of things to improve this component, a more precise timing for the instructions would be great.</p>
<p>Once you show the ad, why not adding where to find that product? Nearest shops using google maps for example.</p>
<p></em></p>
<p><em>Finally and obviously sharing in social networks is essential in order to maximize the success of any campaign.</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;title=How+to+make+money+with+Online+Video+and+Content+related+ads&amp;summary=A%20Conceptual%20Component%20design%20made%20in%20one%20afternoon%0D%0A%0D%0AI%20decided%20this%20weekend%20to%20be%20a%20code%20weekend.%20That%20means%20I%20will%20spend%20a%20lot%20of%20hours%20in%20front%20of%20my%20Mac%20developing%20conceptual%20stuff%20I%20have%20on%20my%20mind.%0D%0A%0D%0AOne%20if%20this%20ideas%20was%20to%20develop%20a%20marketing%20tool%20for%20online%20video.%20There%20is%20a%20lot%20of%20compan&amp;source=Xavi Colomer&#039;s Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+make+money+with+Online+Video+and+Content+related+ads+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;t=How+to+make+money+with+Online+Video+and+Content+related+ads" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;title=How+to+make+money+with+Online+Video+and+Content+related+ads" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;title=How+to+make+money+with+Online+Video+and+Content+related+ads" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;title=How+to+make+money+with+Online+Video+and+Content+related+ads" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;title=How+to+make+money+with+Online+Video+and+Content+related+ads&amp;desc=A%20Conceptual%20Component%20design%20made%20in%20one%20afternoon%0D%0A%0D%0AI%20decided%20this%20weekend%20to%20be%20a%20code%20weekend.%20That%20means%20I%20will%20spend%20a%20lot%20of%20hours%20in%20front%20of%20my%20Mac%20developing%20conceptual%20stuff%20I%20have%20on%20my%20mind.%0D%0A%0D%0AOne%20if%20this%20ideas%20was%20to%20develop%20a%20marketing%20tool%20for%20online%20video.%20There%20is%20a%20lot%20of%20compan" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;title=How+to+make+money+with+Online+Video+and+Content+related+ads&amp;srcUrl=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;srcTitle=How+to+make+money+with+Online+Video+and+Content+related+ads&amp;snippet=A%20Conceptual%20Component%20design%20made%20in%20one%20afternoon%0D%0A%0D%0AI%20decided%20this%20weekend%20to%20be%20a%20code%20weekend.%20That%20means%20I%20will%20spend%20a%20lot%20of%20hours%20in%20front%20of%20my%20Mac%20developing%20conceptual%20stuff%20I%20have%20on%20my%20mind.%0D%0A%0D%0AOne%20if%20this%20ideas%20was%20to%20develop%20a%20marketing%20tool%20for%20online%20video.%20There%20is%20a%20lot%20of%20compan" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;title=How+to+make+money+with+Online+Video+and+Content+related+ads" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+make+money+with+Online+Video+and+Content+related+ads&amp;body=Link: http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A A%20Conceptual%20Component%20design%20made%20in%20one%20afternoon%0D%0A%0D%0AI%20decided%20this%20weekend%20to%20be%20a%20code%20weekend.%20That%20means%20I%20will%20spend%20a%20lot%20of%20hours%20in%20front%20of%20my%20Mac%20developing%20conceptual%20stuff%20I%20have%20on%20my%20mind.%0D%0A%0D%0AOne%20if%20this%20ideas%20was%20to%20develop%20a%20marketing%20tool%20for%20online%20video.%20There%20is%20a%20lot%20of%20compan" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;title=How+to+make+money+with+Online+Video+and+Content+related+ads" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;n=How+to+make+money+with+Online+Video+and+Content+related+ads&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;title=How+to+make+money+with+Online+Video+and+Content+related+ads" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/&amp;bm_description=How+to+make+money+with+Online+Video+and+Content+related+ads&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.ncatstudios.com/2010/06/12/how-to-make-money-with-online-video-and-content-related-ads/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tools every flex developer should know ( My TOP 10 )</title>
		<link>http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 22:09:55 +0000</pubDate>
		<dc:creator>Xavi Colomer</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.ncatstudios.com/?p=211</guid>
		<description><![CDATA[
			
				
			
		
These are the set of tools I use in my daily job ( Flumotion ) and in my projects:
1. Adobe&#8217;s Flash Builder Beta ( Standalone or Eclipse plugin )
You have multiple solutions for flex developers some are free ( you can use your notepad and compile the code using command-line instructions ) but for me, [...]


Related posts:<ol><li><a href='http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/' rel='bookmark' title='Permanent Link: New Tool: Flex PMD'>New Tool: Flex PMD</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F10%2F11%2Ftools-every-flex-developer-should-know-my-top-10%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F10%2F11%2Ftools-every-flex-developer-should-know-my-top-10%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>These are the set of tools I use in my daily job ( Flumotion ) and in my projects:</p>
<p><strong>1. <a href="http://labs.adobe.com/technologies/flashbuilder4/">Adobe&#8217;s Flash Builder Beta</a> ( Standalone or Eclipse plugin )</strong><br />
You have multiple solutions for flex developers some are free ( you can use your notepad and compile the code using command-line instructions ) but for me, the best tool is Adobe&#8217;s Flash Builder.<br />
Inside Flash builder you have and amazing set of tools like Flash Debugger and Flash Profiler, and a new addition in the last version, the Network Monitor.<br />
Maybe I should mention <a href="http://www.fdt.powerflasher.com/">FDT</a>, but I had the opportunity to see it in action and Adobe&#8217;s tool is still the best.</p>
<p><strong>2. <a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a> ( Firefox plugin )</strong><br />
If you are developing a flex application you probably will be developing for web too. For this reason you need a web browser that let you control and monitorize what&#8217;s going on. Firefox with firebug plugin will help you with this.</p>
<p><strong>3. <a href="https://addons.mozilla.org/es-ES/firefox/addon/60">Web Developer </a> ( Firefox plugin )</strong><br />
I use this plugin mainly for two purposes. The first one is disable cache ( very important ). Sometimes when you are developing for web you realize you&#8217;ve been testing a cached application for 5 minutes ( or more ), or you must clean the cache every time you want to test some change, this option will avoid this common problem and will help you saving some time. Another interesting option is resize, which let you resize the browser to custom sizes.<br />
This plugin have another options I don&#8217;t use.</p>
<p><strong>4. <a href="http://www.monsterdebugger.com/">Monster Debugger</a> ( AIR application )</strong><br />
Monster Debugger is an interesting tool for remote debugging. You can print messages remotely and this messages can not only be strings but objects.<br />
<em>Note: I&#8217;m currently using Monster Debugger but from my point of view the best practice would be ( and will be ) remote debugging.</em></p>
<p><strong>5.<a href="http://www.charlesproxy.com/"> Charles</a> ( Standalone application )</strong><br />
Are you working with the AMF format? ok, if you are a firefox user, if you try to see what&#8217;s going on in the AMF communication to server you won&#8217;t be able to see anything because it&#8217;s in a binary raw format. ( OK, maybe you&#8217;ll see the name of the method <img src='http://blog.ncatstudios.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) I didn&#8217;t find any firebug plugin to deserialize this, but I found a cool and cheap application called Charles. This application monitorizes all the http/https requests from my computer and deserializes all AMF requests if any.</p>
<p><strong>6. <a href="http://sourceforge.net/projects/flexformatter/">Flex Formatter</a> ( Eclipse plugin )</strong><br />
If in your development team there&#8217;s more than one developer the code tends to be a mess in terms of coding conventions ( every developer has it&#8217;s own criteria! ). With this tool you&#8217;ll be able to establish a set of rules for different aspects of the code ( inline / newline brackets, spaces after / before parenthesis, etc&#8230; ) You can export this settings to other machines / developer&#8217;s too.<br />
<em>Note: If you hire a freelance you can pass the set of rules to him/ her to ensure the code follows the company coding convention guidelines once he / she finishes the job <img src='http://blog.ncatstudios.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>
<p><strong>7. <a href="http://opensource.adobe.com/wiki/display/flexpmd/FlexPMD">Adobe Flex PMD</a> ( Java classes, runs with Ant, Automator and command-line )</strong><br />
Finally, a new tool I&#8217;m investigating and it&#8217;s already giving me some results. Flex PMD is a set of java scripts that examines your code and tells you which part of the code can be improved.</p>
<p><strong>8. <a href="http://labs.adobe.com/technologies/alchemy/">Alchemy</a> ( Standalone application )</strong><br />
Sometimes you can have a good product, but you always can do it better. Alchemy is the tool to achieve this, by converting C and C++ code into a valid Flash code. You must know you cannot do anything you wouldn&#8217;t be able to do directly in Flash. The generated code it&#8217;s faster than Flash Builder&#8217;s compiler generated code.</p>
<p><strong>9. <a href="http://labs.adobe.com/technologies/pixelbender/">Pixel Bender</a> ( Standalone application )</strong><br />
The same way alchemy can help you optimizing code, Pixel Bender can help you optimizing mathematical operations. Pixel Bender runs in a different thread than Flash Player, for this reason you can accelerate logic calculations using this software. </p>
<p><strong>10. <a href="http://labs.adobe.com/technologies/flashcatalyst/">Adobe Flash Catalyst Beta</a> ( Standalone application )</strong><br />
From my point of view is still a not fully formed tool in terms of optimization, but keep an eye on it because this tool establishes a very thin but strong line between the designer and the developer.</p>
<p>I hope this post help you improving your development!<br />
<strong><br />
P.S: If you know another wonderful tools, please tell me!</strong></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;title=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29&amp;summary=These%20are%20the%20set%20of%20tools%20I%20use%20in%20my%20daily%20job%20%28%20Flumotion%20%29%20and%20in%20my%20projects%3A%0D%0A%0D%0A1.%20Adobe%27s%20Flash%20Builder%20Beta%20%28%20Standalone%20or%20Eclipse%20plugin%20%29%0D%0AYou%20have%20multiple%20solutions%20for%20flex%20developers%20some%20are%20free%20%28%20you%20can%20use%20your%20notepad%20and%20compile%20the%20code%20using%20command-line%20instructions%20%29%20but%20fo&amp;source=Xavi Colomer&#039;s Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29+-+http://b2l.me/tek54&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;t=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;title=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;title=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;title=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;title=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29&amp;desc=These%20are%20the%20set%20of%20tools%20I%20use%20in%20my%20daily%20job%20%28%20Flumotion%20%29%20and%20in%20my%20projects%3A%0D%0A%0D%0A1.%20Adobe%27s%20Flash%20Builder%20Beta%20%28%20Standalone%20or%20Eclipse%20plugin%20%29%0D%0AYou%20have%20multiple%20solutions%20for%20flex%20developers%20some%20are%20free%20%28%20you%20can%20use%20your%20notepad%20and%20compile%20the%20code%20using%20command-line%20instructions%20%29%20but%20fo" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;title=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29&amp;srcUrl=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;srcTitle=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29&amp;snippet=These%20are%20the%20set%20of%20tools%20I%20use%20in%20my%20daily%20job%20%28%20Flumotion%20%29%20and%20in%20my%20projects%3A%0D%0A%0D%0A1.%20Adobe%27s%20Flash%20Builder%20Beta%20%28%20Standalone%20or%20Eclipse%20plugin%20%29%0D%0AYou%20have%20multiple%20solutions%20for%20flex%20developers%20some%20are%20free%20%28%20you%20can%20use%20your%20notepad%20and%20compile%20the%20code%20using%20command-line%20instructions%20%29%20but%20fo" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;title=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29&amp;body=Link: http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A These%20are%20the%20set%20of%20tools%20I%20use%20in%20my%20daily%20job%20%28%20Flumotion%20%29%20and%20in%20my%20projects%3A%0D%0A%0D%0A1.%20Adobe%27s%20Flash%20Builder%20Beta%20%28%20Standalone%20or%20Eclipse%20plugin%20%29%0D%0AYou%20have%20multiple%20solutions%20for%20flex%20developers%20some%20are%20free%20%28%20you%20can%20use%20your%20notepad%20and%20compile%20the%20code%20using%20command-line%20instructions%20%29%20but%20fo" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;title=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;n=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;title=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/&amp;bm_description=Tools+every+flex+developer+should+know+%28+My+TOP+10+%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/' rel='bookmark' title='Permanent Link: New Tool: Flex PMD'>New Tool: Flex PMD</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Upgraded!</title>
		<link>http://blog.ncatstudios.com/2009/09/20/blog-upgraded/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://blog.ncatstudios.com/2009/09/20/blog-upgraded/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 13:07:56 +0000</pubDate>
		<dc:creator>Xavi Colomer</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.ncatstudios.com/?p=190</guid>
		<description><![CDATA[
			
				
			
		
I just finished upgrading my Blog and I&#8217;m quite satisfied, althought there are some colors I&#8217;ll change I added some cool plugins which will improve it for sure.
If you see some errors on the posts please tell me and I&#8217;ll fix it.
Thanks.
X




		
			Share this on LinkedIn
		
		
			Tweet This!
		
		
			Share this on Facebook
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Stumble upon something [...]


Related posts:<ol><li><a href='http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/' rel='bookmark' title='Permanent Link: Official Flash Platform Blog'>Official Flash Platform Blog</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F09%2F20%2Fblog-upgraded%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F09%2F20%2Fblog-upgraded%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I just finished upgrading my Blog and I&#8217;m quite satisfied, althought there are some colors I&#8217;ll change I added some cool plugins which will improve it for sure.</p>
<p>If you see some errors on the posts please tell me and I&#8217;ll fix it.</p>
<p>Thanks.</p>
<p>X</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;title=Blog+Upgraded%21&amp;summary=I%20just%20finished%20upgrading%20my%20Blog%20and%20I%27m%20quite%20satisfied%2C%20althought%20there%20are%20some%20colors%20I%27ll%20change%20I%20added%20some%20cool%20plugins%20which%20will%20improve%20it%20for%20sure.%0D%0A%0D%0AIf%20you%20see%20some%20errors%20on%20the%20posts%20please%20tell%20me%20and%20I%27ll%20fix%20it.%0D%0A%0D%0AThanks.%0D%0A%0D%0AX&amp;source=Xavi Colomer&#039;s Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Blog+Upgraded%21+-+http://b2l.me/terth&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;t=Blog+Upgraded%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;title=Blog+Upgraded%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;title=Blog+Upgraded%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;title=Blog+Upgraded%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ncatstudios.com/2009/09/20/blog-upgraded/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;title=Blog+Upgraded%21&amp;desc=I%20just%20finished%20upgrading%20my%20Blog%20and%20I%27m%20quite%20satisfied%2C%20althought%20there%20are%20some%20colors%20I%27ll%20change%20I%20added%20some%20cool%20plugins%20which%20will%20improve%20it%20for%20sure.%0D%0A%0D%0AIf%20you%20see%20some%20errors%20on%20the%20posts%20please%20tell%20me%20and%20I%27ll%20fix%20it.%0D%0A%0D%0AThanks.%0D%0A%0D%0AX" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;title=Blog+Upgraded%21&amp;srcUrl=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;srcTitle=Blog+Upgraded%21&amp;snippet=I%20just%20finished%20upgrading%20my%20Blog%20and%20I%27m%20quite%20satisfied%2C%20althought%20there%20are%20some%20colors%20I%27ll%20change%20I%20added%20some%20cool%20plugins%20which%20will%20improve%20it%20for%20sure.%0D%0A%0D%0AIf%20you%20see%20some%20errors%20on%20the%20posts%20please%20tell%20me%20and%20I%27ll%20fix%20it.%0D%0A%0D%0AThanks.%0D%0A%0D%0AX" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;title=Blog+Upgraded%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Blog+Upgraded%21&amp;body=Link: http://blog.ncatstudios.com/2009/09/20/blog-upgraded/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20just%20finished%20upgrading%20my%20Blog%20and%20I%27m%20quite%20satisfied%2C%20althought%20there%20are%20some%20colors%20I%27ll%20change%20I%20added%20some%20cool%20plugins%20which%20will%20improve%20it%20for%20sure.%0D%0A%0D%0AIf%20you%20see%20some%20errors%20on%20the%20posts%20please%20tell%20me%20and%20I%27ll%20fix%20it.%0D%0A%0D%0AThanks.%0D%0A%0D%0AX" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;title=Blog+Upgraded%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;n=Blog+Upgraded%21&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;title=Blog+Upgraded%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ncatstudios.com/2009/09/20/blog-upgraded/&amp;bm_description=Blog+Upgraded%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/' rel='bookmark' title='Permanent Link: Official Flash Platform Blog'>Official Flash Platform Blog</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.ncatstudios.com/2009/09/20/blog-upgraded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Tool: Flex PMD</title>
		<link>http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 20:46:00 +0000</pubDate>
		<dc:creator>Xavi Colomer</dc:creator>
				<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Optimization]]></category>

		<guid isPermaLink="false">http://blog.ncatstudios.com/?p=110&amp;language=en</guid>
		<description><![CDATA[
			
				
			
		
If you are aware of the news on the Adobe labs you may know about a new tool called Flex PMD. This tool will help you improving the quality of our code and at the same time you&#8217;ll learn about &#8220;best practices&#8221; developing with Flex. This tool studies the code of an application and generates [...]


Related posts:<ol><li><a href='http://blog.ncatstudios.com/2009/05/18/flex-swf-optimization-i/' rel='bookmark' title='Permanent Link: Flex swf optimization ( I )'>Flex swf optimization ( I )</a></li>
<li><a href='http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/' rel='bookmark' title='Permanent Link: Tools every flex developer should know ( My TOP 10 )'>Tools every flex developer should know ( My TOP 10 )</a></li>
<li><a href='http://blog.ncatstudios.com/2009/08/21/hiding-the-secret-api-key-with-flex-but-where/' rel='bookmark' title='Permanent Link: Hiding the Secret API Key with Flex using Alchemy'>Hiding the Secret API Key with Flex using Alchemy</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F09%2F18%2Fnew-tool-flex-pmd%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F09%2F18%2Fnew-tool-flex-pmd%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>If you are aware of the news on the Adobe labs you may know about a new tool called <a href="http://opensource.adobe.com/wiki/display/flexpmd/FlexPMD">Flex PMD</a>. This tool will help you improving the quality of our code and at the same time you&#8217;ll learn about &#8220;best practices&#8221; developing with Flex. This tool studies the code of an application and generates a XML report which, for better understanding, you&#8217;ll see it on any Flex PMD report viewer. You&#8217;ll find a list of possible viewers on the FlexPMD webpage.</p>
<p>Inside the downloads site you can access to a violations <a href="http://opensource.adobe.com/svn/opensource/flexpmd/bin/flex-pmd-violations-viewer.html">viewer</a> made for the same labs. I just downloaded the swf for local use.</p>
<p>OSX setup ( once downloaded ):</p>
<p>To install FlexPMD on mac you can do it like this:</p>
<p>1- Working with the terminal, adding the downloaded library to the system path ( or executing it locally ), editing ./profile and following the instructions on the web ( this is How I do it and works pretty fine )</p>
<p>2- Using Automator ( I didn&#8217;t try it )</p>
<p>3- Using Ant ( I didn&#8217;t try it either )</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;title=New+Tool%3A+Flex+PMD&amp;summary=If%20you%20are%20aware%20of%20the%20news%20on%20the%20Adobe%20labs%20you%20may%20know%20about%20a%20new%20tool%20called%20Flex%20PMD.%20This%20tool%20will%20help%20you%20improving%20the%20quality%20of%20our%20code%20and%20at%20the%20same%20time%20you%27ll%20learn%20about%20%22best%20practices%22%20developing%20with%20Flex.%20This%20tool%20studies%20the%20code%20of%20an%20application%20and%20generates%20a%20XML%20repo&amp;source=Xavi Colomer&#039;s Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=New+Tool%3A+Flex+PMD+-+http://b2l.me/tertk&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;t=New+Tool%3A+Flex+PMD" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;title=New+Tool%3A+Flex+PMD" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;title=New+Tool%3A+Flex+PMD" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;title=New+Tool%3A+Flex+PMD" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;title=New+Tool%3A+Flex+PMD&amp;desc=If%20you%20are%20aware%20of%20the%20news%20on%20the%20Adobe%20labs%20you%20may%20know%20about%20a%20new%20tool%20called%20Flex%20PMD.%20This%20tool%20will%20help%20you%20improving%20the%20quality%20of%20our%20code%20and%20at%20the%20same%20time%20you%27ll%20learn%20about%20%22best%20practices%22%20developing%20with%20Flex.%20This%20tool%20studies%20the%20code%20of%20an%20application%20and%20generates%20a%20XML%20repo" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;title=New+Tool%3A+Flex+PMD&amp;srcUrl=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;srcTitle=New+Tool%3A+Flex+PMD&amp;snippet=If%20you%20are%20aware%20of%20the%20news%20on%20the%20Adobe%20labs%20you%20may%20know%20about%20a%20new%20tool%20called%20Flex%20PMD.%20This%20tool%20will%20help%20you%20improving%20the%20quality%20of%20our%20code%20and%20at%20the%20same%20time%20you%27ll%20learn%20about%20%22best%20practices%22%20developing%20with%20Flex.%20This%20tool%20studies%20the%20code%20of%20an%20application%20and%20generates%20a%20XML%20repo" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;title=New+Tool%3A+Flex+PMD" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=New+Tool%3A+Flex+PMD&amp;body=Link: http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A If%20you%20are%20aware%20of%20the%20news%20on%20the%20Adobe%20labs%20you%20may%20know%20about%20a%20new%20tool%20called%20Flex%20PMD.%20This%20tool%20will%20help%20you%20improving%20the%20quality%20of%20our%20code%20and%20at%20the%20same%20time%20you%27ll%20learn%20about%20%22best%20practices%22%20developing%20with%20Flex.%20This%20tool%20studies%20the%20code%20of%20an%20application%20and%20generates%20a%20XML%20repo" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;title=New+Tool%3A+Flex+PMD" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;n=New+Tool%3A+Flex+PMD&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;title=New+Tool%3A+Flex+PMD" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/&amp;bm_description=New+Tool%3A+Flex+PMD&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://blog.ncatstudios.com/2009/05/18/flex-swf-optimization-i/' rel='bookmark' title='Permanent Link: Flex swf optimization ( I )'>Flex swf optimization ( I )</a></li>
<li><a href='http://blog.ncatstudios.com/2009/10/11/tools-every-flex-developer-should-know-my-top-10/' rel='bookmark' title='Permanent Link: Tools every flex developer should know ( My TOP 10 )'>Tools every flex developer should know ( My TOP 10 )</a></li>
<li><a href='http://blog.ncatstudios.com/2009/08/21/hiding-the-secret-api-key-with-flex-but-where/' rel='bookmark' title='Permanent Link: Hiding the Secret API Key with Flex using Alchemy'>Hiding the Secret API Key with Flex using Alchemy</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.ncatstudios.com/2009/09/18/new-tool-flex-pmd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Stop: www.RIATrends.com</title>
		<link>http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 20:44:14 +0000</pubDate>
		<dc:creator>Xavi Colomer</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.ncatstudios.com/?p=108&amp;language=en</guid>
		<description><![CDATA[
			
				
			
		
Hello everyone,

I allways wanted to create a community website and this is my first attempt. RIATrends ( beta version   ) is wanted to be a reference point for users / developers / companies searching for a statistics portal, a place to find information about where the market is going and a good community to share [...]


Related posts:<ol><li><a href='http://blog.ncatstudios.com/2010/01/31/first-thoughts-on-ipad-device-after-the-deception/' rel='bookmark' title='Permanent Link: First thoughts on iPad device ( after the deception )'>First thoughts on iPad device ( after the deception )</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F09%2F04%2Ffirst-stop-wwwriatrendscom%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F09%2F04%2Ffirst-stop-wwwriatrendscom%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="font-family: Times; font-size: medium; "><span style="font-family: Arial, Verdana, sans-serif; font-size: 12px; ">Hello everyone,</span></span></p>
<div style="background-color: #ffffff; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: Arial, Verdana, sans-serif; font-size: 12px; ">
<p>I allways wanted to create a community website and this is my first attempt. <a href="http://www.riatrends.com">RIATrends</a> ( <em>beta version</em> <img src='http://blog.ncatstudios.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ) is wanted to be a reference point for users / developers / companies searching for a statistics portal, a place to find information about where the market is going and a good community to share RIA related knowledge.</p>
<p>A common problem nowadays in every RIA company is to choose a technology to develop a project, this desicion is quite important because the future of the company can depend on it. New emerging tecnologies like Silverlight ( not that young now ), with other ones like Flex, JavaFX and AJAX a wide range of possibilities. In addition to this is the Backend technology ( PHP, Python, Coldfusion, Ruby, etc&#8230;. ) or the database. To help people solve this questions among others is one of the main reasons I decided to create this communiy.</p>
<p>The philosophy to follow is to create a free community  in which users provide and share information about the tecnologies they are using, code and knowledge, as providing a good way to visualize this information and it&#8217;s evolution.</p>
<p>So if you are looking for a place to find information about market riatrends, this may be the site you where looking for!!!!</p>
<p>Have fun!!</p>
</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;title=First+Stop%3A+www.RIATrends.com&amp;summary=Hello%20everyone%2C%0D%0A%0D%0A%0D%0AI%20allways%20wanted%20to%20create%20a%20community%20website%20and%20this%20is%20my%20first%20attempt.%C2%A0RIATrends%20%28%C2%A0beta%20version%20%3B%29%20%29%20is%20wanted%20to%20be%20a%20reference%20point%20for%20users%20%2F%20developers%20%2F%20companies%20searching%20for%20a%20statistics%20portal%2C%20a%20place%20to%20find%20information%20about%20where%20the%20market%20is%20going%20and%20a%20&amp;source=Xavi Colomer&#039;s Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=First+Stop%3A+www.RIATrends.com+-+http://b2l.me/tertn&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;t=First+Stop%3A+www.RIATrends.com" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;title=First+Stop%3A+www.RIATrends.com" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;title=First+Stop%3A+www.RIATrends.com" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;title=First+Stop%3A+www.RIATrends.com" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;title=First+Stop%3A+www.RIATrends.com&amp;desc=Hello%20everyone%2C%0D%0A%0D%0A%0D%0AI%20allways%20wanted%20to%20create%20a%20community%20website%20and%20this%20is%20my%20first%20attempt.%C2%A0RIATrends%20%28%C2%A0beta%20version%20%3B%29%20%29%20is%20wanted%20to%20be%20a%20reference%20point%20for%20users%20%2F%20developers%20%2F%20companies%20searching%20for%20a%20statistics%20portal%2C%20a%20place%20to%20find%20information%20about%20where%20the%20market%20is%20going%20and%20a%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;title=First+Stop%3A+www.RIATrends.com&amp;srcUrl=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;srcTitle=First+Stop%3A+www.RIATrends.com&amp;snippet=Hello%20everyone%2C%0D%0A%0D%0A%0D%0AI%20allways%20wanted%20to%20create%20a%20community%20website%20and%20this%20is%20my%20first%20attempt.%C2%A0RIATrends%20%28%C2%A0beta%20version%20%3B%29%20%29%20is%20wanted%20to%20be%20a%20reference%20point%20for%20users%20%2F%20developers%20%2F%20companies%20searching%20for%20a%20statistics%20portal%2C%20a%20place%20to%20find%20information%20about%20where%20the%20market%20is%20going%20and%20a%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;title=First+Stop%3A+www.RIATrends.com" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=First+Stop%3A+www.RIATrends.com&amp;body=Link: http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hello%20everyone%2C%0D%0A%0D%0A%0D%0AI%20allways%20wanted%20to%20create%20a%20community%20website%20and%20this%20is%20my%20first%20attempt.%C2%A0RIATrends%20%28%C2%A0beta%20version%20%3B%29%20%29%20is%20wanted%20to%20be%20a%20reference%20point%20for%20users%20%2F%20developers%20%2F%20companies%20searching%20for%20a%20statistics%20portal%2C%20a%20place%20to%20find%20information%20about%20where%20the%20market%20is%20going%20and%20a%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;title=First+Stop%3A+www.RIATrends.com" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;n=First+Stop%3A+www.RIATrends.com&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;title=First+Stop%3A+www.RIATrends.com" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/&amp;bm_description=First+Stop%3A+www.RIATrends.com&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://blog.ncatstudios.com/2010/01/31/first-thoughts-on-ipad-device-after-the-deception/' rel='bookmark' title='Permanent Link: First thoughts on iPad device ( after the deception )'>First thoughts on iPad device ( after the deception )</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.ncatstudios.com/2009/09/04/first-stop-wwwriatrendscom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Official Flash Platform Blog</title>
		<link>http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 20:36:17 +0000</pubDate>
		<dc:creator>Xavi Colomer</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.ncatstudios.com/?p=91&amp;language=en</guid>
		<description><![CDATA[
			
				
			
		
Adobe has created an official blog of the Flash Platform, which seems, are going to publish all the hot news!!!
enjoy this link: blogs.adobe.com/flashplatform/




		
			Share this on LinkedIn
		
		
			Tweet This!
		
		
			Share this on Facebook
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Subscribe to the comments for this post?
		
		
			Post on Google Buzz
		
		
			Post this on Diigo
		
		
			Add [...]


Related posts:<ol><li><a href='http://blog.ncatstudios.com/2009/09/20/blog-upgraded/' rel='bookmark' title='Permanent Link: Blog Upgraded!'>Blog Upgraded!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F07%2F21%2Fofficial-flash-platform-blog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F07%2F21%2Fofficial-flash-platform-blog%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Adobe has created an official blog of the Flash Platform, which seems, are going to publish all the hot news!!!</p>
<p>enjoy this link: <a href="http://blogs.adobe.com/flashplatform/">blogs.adobe.com/flashplatform/</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;title=Official+Flash+Platform+Blog&amp;summary=Adobe%20has%20created%20an%20official%20blog%20of%20the%20Flash%20Platform%2C%20which%20seems%2C%20are%20going%20to%20publish%20all%20the%20hot%20news%21%21%21%0D%0A%0D%0Aenjoy%20this%20link%3A%C2%A0blogs.adobe.com%2Fflashplatform%2F&amp;source=Xavi Colomer&#039;s Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Official+Flash+Platform+Blog+-+http://b2l.me/tertu&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;t=Official+Flash+Platform+Blog" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;title=Official+Flash+Platform+Blog" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;title=Official+Flash+Platform+Blog" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;title=Official+Flash+Platform+Blog" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;title=Official+Flash+Platform+Blog&amp;desc=Adobe%20has%20created%20an%20official%20blog%20of%20the%20Flash%20Platform%2C%20which%20seems%2C%20are%20going%20to%20publish%20all%20the%20hot%20news%21%21%21%0D%0A%0D%0Aenjoy%20this%20link%3A%C2%A0blogs.adobe.com%2Fflashplatform%2F" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;title=Official+Flash+Platform+Blog&amp;srcUrl=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;srcTitle=Official+Flash+Platform+Blog&amp;snippet=Adobe%20has%20created%20an%20official%20blog%20of%20the%20Flash%20Platform%2C%20which%20seems%2C%20are%20going%20to%20publish%20all%20the%20hot%20news%21%21%21%0D%0A%0D%0Aenjoy%20this%20link%3A%C2%A0blogs.adobe.com%2Fflashplatform%2F" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;title=Official+Flash+Platform+Blog" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Official+Flash+Platform+Blog&amp;body=Link: http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Adobe%20has%20created%20an%20official%20blog%20of%20the%20Flash%20Platform%2C%20which%20seems%2C%20are%20going%20to%20publish%20all%20the%20hot%20news%21%21%21%0D%0A%0D%0Aenjoy%20this%20link%3A%C2%A0blogs.adobe.com%2Fflashplatform%2F" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;title=Official+Flash+Platform+Blog" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;n=Official+Flash+Platform+Blog&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;title=Official+Flash+Platform+Blog" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/&amp;bm_description=Official+Flash+Platform+Blog&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://blog.ncatstudios.com/2009/09/20/blog-upgraded/' rel='bookmark' title='Permanent Link: Blog Upgraded!'>Blog Upgraded!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.ncatstudios.com/2009/07/21/official-flash-platform-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hired at Flumotion</title>
		<link>http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 21:09:41 +0000</pubDate>
		<dc:creator>Xavi Colomer</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.ncatstudios.com/?p=88&amp;language=en</guid>
		<description><![CDATA[
			
				
			
		
This Monday I was hired in Flumotion, a company that is expanding and which are going to develop major projects.
I am very excited with this new job in which I hope to learn and give everything I can.




		
			Share this on LinkedIn
		
		
			Tweet This!
		
		
			Share this on Facebook
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Stumble upon something good? Share it on [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F06%2F23%2Fhired-at-flumotion%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.ncatstudios.com%2F2009%2F06%2F23%2Fhired-at-flumotion%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>This Monday I was hired in Flumotion, a company that is expanding and which are going to develop major projects.</p>
<p>I am very excited with this new job in which I hope to learn and give everything I can.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;title=Hired+at+Flumotion&amp;summary=This%20Monday%20I%20was%20hired%20in%20Flumotion%2C%20a%20company%20that%20is%20expanding%20and%20which%20are%20going%20to%20develop%20major%20projects.%0D%0A%0D%0AI%20am%20very%20excited%20with%20this%20new%20job%20in%20which%20I%20hope%20to%20learn%20and%20give%20everything%20I%20can.&amp;source=Xavi Colomer&#039;s Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Hired+at+Flumotion+-+http://b2l.me/te4e8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;t=Hired+at+Flumotion" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;title=Hired+at+Flumotion" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;title=Hired+at+Flumotion" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;title=Hired+at+Flumotion" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;title=Hired+at+Flumotion&amp;desc=This%20Monday%20I%20was%20hired%20in%20Flumotion%2C%20a%20company%20that%20is%20expanding%20and%20which%20are%20going%20to%20develop%20major%20projects.%0D%0A%0D%0AI%20am%20very%20excited%20with%20this%20new%20job%20in%20which%20I%20hope%20to%20learn%20and%20give%20everything%20I%20can." rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;title=Hired+at+Flumotion&amp;srcUrl=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;srcTitle=Hired+at+Flumotion&amp;snippet=This%20Monday%20I%20was%20hired%20in%20Flumotion%2C%20a%20company%20that%20is%20expanding%20and%20which%20are%20going%20to%20develop%20major%20projects.%0D%0A%0D%0AI%20am%20very%20excited%20with%20this%20new%20job%20in%20which%20I%20hope%20to%20learn%20and%20give%20everything%20I%20can." rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;title=Hired+at+Flumotion" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Hired+at+Flumotion&amp;body=Link: http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20Monday%20I%20was%20hired%20in%20Flumotion%2C%20a%20company%20that%20is%20expanding%20and%20which%20are%20going%20to%20develop%20major%20projects.%0D%0A%0D%0AI%20am%20very%20excited%20with%20this%20new%20job%20in%20which%20I%20hope%20to%20learn%20and%20give%20everything%20I%20can." rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;title=Hired+at+Flumotion" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;n=Hired+at+Flumotion&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;title=Hired+at+Flumotion" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/&amp;bm_description=Hired+at+Flumotion&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.ncatstudios.com/2009/06/23/hired-at-flumotion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
