<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Farata Systems</title>
	<atom:link href="http://flexblog.faratasystems.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://flexblog.faratasystems.com</link>
	<description>A blog about our experience with Adobe Flex</description>
	<lastBuildDate>Wed, 02 May 2012 02:50:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Getting Started with Ext JS in Intellij IDEA by vgamov</title>
		<link>http://flexblog.faratasystems.com/2012/04/23/getting-started-with-extjs-in-intellij-idea/comment-page-1#comment-103777</link>
		<dc:creator>vgamov</dc:creator>
		<pubDate>Wed, 02 May 2012 02:50:20 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1670#comment-103777</guid>
		<description>2Denis
Yes, you are right. There is content of my http.sh file https://gist.github.com/2573244</description>
		<content:encoded><![CDATA[<p>2Denis<br />
Yes, you are right. There is content of my http.sh file <a href="https://gist.github.com/2573244" rel="nofollow">https://gist.github.com/2573244</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Started with Ext JS in Intellij IDEA by Denis</title>
		<link>http://flexblog.faratasystems.com/2012/04/23/getting-started-with-extjs-in-intellij-idea/comment-page-1#comment-103776</link>
		<dc:creator>Denis</dc:creator>
		<pubDate>Mon, 30 Apr 2012 16:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1670#comment-103776</guid>
		<description>Seems to me it is SimpleHttpServer.</description>
		<content:encoded><![CDATA[<p>Seems to me it is SimpleHttpServer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Started with Ext JS in Intellij IDEA by Denis</title>
		<link>http://flexblog.faratasystems.com/2012/04/23/getting-started-with-extjs-in-intellij-idea/comment-page-1#comment-103775</link>
		<dc:creator>Denis</dc:creator>
		<pubDate>Mon, 30 Apr 2012 15:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1670#comment-103775</guid>
		<description>Thank you for the tutorial. 
Could you please tell what tool or script are you using for starting http server?</description>
		<content:encoded><![CDATA[<p>Thank you for the tutorial.<br />
Could you please tell what tool or script are you using for starting http server?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Started with Ext JS in Intellij IDEA by Dan</title>
		<link>http://flexblog.faratasystems.com/2012/04/23/getting-started-with-extjs-in-intellij-idea/comment-page-1#comment-103763</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 25 Apr 2012 02:19:09 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1670#comment-103763</guid>
		<description>Great video. I am pretty new to IntelliJ and this video was a great resource in getting my Javascript project up and running.</description>
		<content:encoded><![CDATA[<p>Great video. I am pretty new to IntelliJ and this video was a great resource in getting my Javascript project up and running.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How and Why use Overrides in Ext JS Framework by Anton Moiseev</title>
		<link>http://flexblog.faratasystems.com/2012/02/27/the-best-way-to-organize-your-ext-js-overrides/comment-page-1#comment-103725</link>
		<dc:creator>Anton Moiseev</dc:creator>
		<pubDate>Tue, 28 Feb 2012 07:40:30 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1522#comment-103725</guid>
		<description>@Victor, Yes, you are right, it&#039;s another option and it works fine. But you will hardly ever use it, since Ext.Loader isn&#039;t available for Ext JS versions prior 4.x, and new syntax is already available starting from version 4.0.7.</description>
		<content:encoded><![CDATA[<p>@Victor, Yes, you are right, it&#8217;s another option and it works fine. But you will hardly ever use it, since Ext.Loader isn&#8217;t available for Ext JS versions prior 4.x, and new syntax is already available starting from version 4.0.7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How and Why use Overrides in Ext JS Framework by Victor Rasputnis</title>
		<link>http://flexblog.faratasystems.com/2012/02/27/the-best-way-to-organize-your-ext-js-overrides/comment-page-1#comment-103724</link>
		<dc:creator>Victor Rasputnis</dc:creator>
		<pubDate>Tue, 28 Feb 2012 07:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1522#comment-103724</guid>
		<description>Actually, there is a way for safe overrides even without the 4.1 syntax:

Ext.define(&#039;App.patch.app.Controller&#039;, {
    requires: [
       &#039;Ext.app.Controller&#039;  
    ]
}, function () {
	// By now Ext.app.Controller has been loaded
    Ext.app.Controller.override({
       init: function() {
           this.callOverridden();
           console.log(this.self.getName() + &#039; created&#039;);
       }
    });
});</description>
		<content:encoded><![CDATA[<p>Actually, there is a way for safe overrides even without the 4.1 syntax:</p>
<p>Ext.define(&#8216;App.patch.app.Controller&#8217;, {<br />
    requires: [<br />
       'Ext.app.Controller'<br />
    ]<br />
}, function () {<br />
	// By now Ext.app.Controller has been loaded<br />
    Ext.app.Controller.override({<br />
       init: function() {<br />
           this.callOverridden();<br />
           console.log(this.self.getName() + &#8216; created&#8217;);<br />
       }<br />
    });<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bringing Together Java Ext.Direct and Ext JS Models with DTO2ExtJS by Victor Rasputnis</title>
		<link>http://flexblog.faratasystems.com/2012/02/20/bringing-together-java-ext-direct-and-ext-js-models-with-dto2extjs/comment-page-1#comment-103722</link>
		<dc:creator>Victor Rasputnis</dc:creator>
		<pubDate>Mon, 27 Feb 2012 20:59:23 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1449#comment-103722</guid>
		<description>Currently we are using JSON and we are planning to use AMF as well. On the server it depends on the customer&#039;s preference: Hibernate, and MyBatis are most popular choices. In fact, if you use our upcoming CDB plugin with Hibernate we generate Java (based on the JPQL annotated interfaces) as well as the client ExtJS code. Thank you for following our blog - this week I am going to publish the reference application that persists a hierarchy (the sample has only two levels but we support unlimited, of course). Yes, the writer is important, but in a different way: we pass to server only the deltas, aka a ChangeObject for each modified/deleted/new record, hence the writer converts a Model into a ChangeObject. There is more to it for automatic JEE transaction management... To be blogged soon.</description>
		<content:encoded><![CDATA[<p>Currently we are using JSON and we are planning to use AMF as well. On the server it depends on the customer&#8217;s preference: Hibernate, and MyBatis are most popular choices. In fact, if you use our upcoming CDB plugin with Hibernate we generate Java (based on the JPQL annotated interfaces) as well as the client ExtJS code. Thank you for following our blog &#8211; this week I am going to publish the reference application that persists a hierarchy (the sample has only two levels but we support unlimited, of course). Yes, the writer is important, but in a different way: we pass to server only the deltas, aka a ChangeObject for each modified/deleted/new record, hence the writer converts a Model into a ChangeObject. There is more to it for automatic JEE transaction management&#8230; To be blogged soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bringing Together Java Ext.Direct and Ext JS Models with DTO2ExtJS by Sergio Samayoa</title>
		<link>http://flexblog.faratasystems.com/2012/02/20/bringing-together-java-ext-direct-and-ext-js-models-with-dto2extjs/comment-page-1#comment-103721</link>
		<dc:creator>Sergio Samayoa</dc:creator>
		<pubDate>Mon, 27 Feb 2012 19:43:09 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1449#comment-103721</guid>
		<description>Mmmm....

I didn&#039;t used Direct, I preferred to stay with traditional JSON stores backed up with JAX-RS and JPA.

Only problem I got was how to persist a complex graph which somebody in the forums resolved overriding Json writer&#039;s getRecordData() &amp; writeRecords.

Which one is your data access philosophy? I mean:

Server  ExtJS: JSON?
Server  database: Plain SQL, Hibernate, JPA?</description>
		<content:encoded><![CDATA[<p>Mmmm&#8230;.</p>
<p>I didn&#8217;t used Direct, I preferred to stay with traditional JSON stores backed up with JAX-RS and JPA.</p>
<p>Only problem I got was how to persist a complex graph which somebody in the forums resolved overriding Json writer&#8217;s getRecordData() &amp; writeRecords.</p>
<p>Which one is your data access philosophy? I mean:</p>
<p>Server  ExtJS: JSON?<br />
Server  database: Plain SQL, Hibernate, JPA?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will HTML Force You to Lie? by Alan</title>
		<link>http://flexblog.faratasystems.com/2012/02/22/will-html-force-you-to-lie/comment-page-1#comment-103710</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Fri, 24 Feb 2012 08:56:08 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1517#comment-103710</guid>
		<description>“You can’t piss against the wind”, absolutely exact for us too :D, and it is not the first time we have to face up to this kind of angry wind.

But again, when the wind is over, I am sure the first word reset from all customers (enterprises): Hey you, the salesman, we need a solution that works, not a technique :D</description>
		<content:encoded><![CDATA[<p>“You can’t piss against the wind”, absolutely exact for us too <img src='http://flexblog.faratasystems.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> , and it is not the first time we have to face up to this kind of angry wind.</p>
<p>But again, when the wind is over, I am sure the first word reset from all customers (enterprises): Hey you, the salesman, we need a solution that works, not a technique <img src='http://flexblog.faratasystems.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bringing Together Java Ext.Direct and Ext JS Models with DTO2ExtJS by Nick Golubyev</title>
		<link>http://flexblog.faratasystems.com/2012/02/20/bringing-together-java-ext-direct-and-ext-js-models-with-dto2extjs/comment-page-1#comment-103704</link>
		<dc:creator>Nick Golubyev</dc:creator>
		<pubDate>Thu, 23 Feb 2012 15:15:55 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1449#comment-103704</guid>
		<description>Hi Viktor,
I have a couple of questions/suggestions if I may.

Does your clear framework targets Java 5 or 6 platform? In Java 6 there is even better way of generation your code (apt is embedded in javac) and you can just put a jar file with a framework in a class path and code will be generated during normal compilation process - no extra step involved.  

I understand the purpose of storeConfig but that string concatenation doesn&#039;t look natural. Do you think it would be better to have separate annotations or a separate attributes?

Thank you</description>
		<content:encoded><![CDATA[<p>Hi Viktor,<br />
I have a couple of questions/suggestions if I may.</p>
<p>Does your clear framework targets Java 5 or 6 platform? In Java 6 there is even better way of generation your code (apt is embedded in javac) and you can just put a jar file with a framework in a class path and code will be generated during normal compilation process &#8211; no extra step involved.  </p>
<p>I understand the purpose of storeConfig but that string concatenation doesn&#8217;t look natural. Do you think it would be better to have separate annotations or a separate attributes?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will HTML Force You to Lie? by Realist</title>
		<link>http://flexblog.faratasystems.com/2012/02/22/will-html-force-you-to-lie/comment-page-1#comment-103703</link>
		<dc:creator>Realist</dc:creator>
		<pubDate>Thu, 23 Feb 2012 07:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1517#comment-103703</guid>
		<description>You hit the nail right on the head. IT salesman are worse than used car salesman in general. Unfortunately the culture of &#039;look them in the eye and say what they want to hear&#039; and then screw them left, right, center and backwards with variations is the prevailing culture in IT. Of course the clients should share some part of the blame, but there is always a way that they manage to shake this off. There is a popular book &#039;The no asshole rule&#039; for office culture - there certainly should be &#039;The no Sheister rule&#039; for IT. Unfortunately, while organizations like Gartner are still given respect by business, the outlook is grim.</description>
		<content:encoded><![CDATA[<p>You hit the nail right on the head. IT salesman are worse than used car salesman in general. Unfortunately the culture of &#8216;look them in the eye and say what they want to hear&#8217; and then screw them left, right, center and backwards with variations is the prevailing culture in IT. Of course the clients should share some part of the blame, but there is always a way that they manage to shake this off. There is a popular book &#8216;The no asshole rule&#8217; for office culture &#8211; there certainly should be &#8216;The no Sheister rule&#8217; for IT. Unfortunately, while organizations like Gartner are still given respect by business, the outlook is grim.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will HTML Force You to Lie? by Yakov Fain</title>
		<link>http://flexblog.faratasystems.com/2012/02/22/will-html-force-you-to-lie/comment-page-1#comment-103702</link>
		<dc:creator>Yakov Fain</dc:creator>
		<pubDate>Thu, 23 Feb 2012 01:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1517#comment-103702</guid>
		<description>Hi Karl,

I think your company has made the right decision. But we are a consulting firm and don&#039;t want to lose customers who are not that savvy and are moving with the trend.  We understand that moving from Flex to Ext JS is like going &quot;Back from to the past&quot; - I&#039;m just rephrasing Ted Patrick from Sencha who went the same path and said &quot;I realized that I lived in the future&quot;.

Slower performance (on IE) doesn&#039;t bother me that much - I&#039;m sure Sencha will fix it soon and it&#039;ll be as fast as JavaScript can be with these rich components they offer.  Having said that, I&#039;m not married to Ext JS, and as soon as I see another JavaScript framework with similar offerings - I&#039;ll give it a try.

Needless to say that our firm is developing pretty cool stuff using Flex and AIR, and we&#039;ll gladly take new customers who are willing to use this great technology accidentally developed by Adobe as someone put it . Just look at this demo (press the button Play) of the Trading application that we created for a Wall Street startup: http://www.itbsecurities.com/platform.html. It&#039;s all Flex talking to Java.

Good luck with your Flex projects!</description>
		<content:encoded><![CDATA[<p>Hi Karl,</p>
<p>I think your company has made the right decision. But we are a consulting firm and don&#8217;t want to lose customers who are not that savvy and are moving with the trend.  We understand that moving from Flex to Ext JS is like going &#8220;Back from to the past&#8221; &#8211; I&#8217;m just rephrasing Ted Patrick from Sencha who went the same path and said &#8220;I realized that I lived in the future&#8221;.</p>
<p>Slower performance (on IE) doesn&#8217;t bother me that much &#8211; I&#8217;m sure Sencha will fix it soon and it&#8217;ll be as fast as JavaScript can be with these rich components they offer.  Having said that, I&#8217;m not married to Ext JS, and as soon as I see another JavaScript framework with similar offerings &#8211; I&#8217;ll give it a try.</p>
<p>Needless to say that our firm is developing pretty cool stuff using Flex and AIR, and we&#8217;ll gladly take new customers who are willing to use this great technology accidentally developed by Adobe as someone put it . Just look at this demo (press the button Play) of the Trading application that we created for a Wall Street startup: <a href="http://www.itbsecurities.com/platform.html" rel="nofollow">http://www.itbsecurities.com/platform.html</a>. It&#8217;s all Flex talking to Java.</p>
<p>Good luck with your Flex projects!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will HTML Force You to Lie? by Karl Sigiscar</title>
		<link>http://flexblog.faratasystems.com/2012/02/22/will-html-force-you-to-lie/comment-page-1#comment-103701</link>
		<dc:creator>Karl Sigiscar</dc:creator>
		<pubDate>Wed, 22 Feb 2012 21:24:14 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1517#comment-103701</guid>
		<description>Privet Yakov,

In the company I work for, we decided that Flex 4.5 will be more than good enough until the end of 2013. After all, Flex 4.5 is recent. And even if the Metro version of IE10 won&#039;t run Flash Player, the legacy version of IE10 will, and enterprises are slow to upgrade their deployed browsers. By then, we expect the HTML 5 / Javascript enterprise frameworks to have somewhat matured and we will reconsider. We will see if the HTML 5 hype will have deflated and the Apache Flex project will have gained traction or if the hype was right.

I am not convinced frameworks like ExtJS are the swiss knives they pretend to be when I read this:

Serious performance degrading leads me to doubt Sencha&#039;s Future
http://www.sencha.com/forum/archive/index.php/t-173933.html?s=8e9a5341667c6528502441e4b46fa4d5

PS: &quot;You can’t piss against the wind&quot;: I like the russian expression there ;-)</description>
		<content:encoded><![CDATA[<p>Privet Yakov,</p>
<p>In the company I work for, we decided that Flex 4.5 will be more than good enough until the end of 2013. After all, Flex 4.5 is recent. And even if the Metro version of IE10 won&#8217;t run Flash Player, the legacy version of IE10 will, and enterprises are slow to upgrade their deployed browsers. By then, we expect the HTML 5 / Javascript enterprise frameworks to have somewhat matured and we will reconsider. We will see if the HTML 5 hype will have deflated and the Apache Flex project will have gained traction or if the hype was right.</p>
<p>I am not convinced frameworks like ExtJS are the swiss knives they pretend to be when I read this:</p>
<p>Serious performance degrading leads me to doubt Sencha&#8217;s Future<br />
<a href="http://www.sencha.com/forum/archive/index.php/t-173933.html?s=8e9a5341667c6528502441e4b46fa4d5" rel="nofollow">http://www.sencha.com/forum/archive/index.php/t-173933.html?s=8e9a5341667c6528502441e4b46fa4d5</a></p>
<p>PS: &#8220;You can’t piss against the wind&#8221;: I like the russian expression there <img src='http://flexblog.faratasystems.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will HTML Force You to Lie? by Lionel</title>
		<link>http://flexblog.faratasystems.com/2012/02/22/will-html-force-you-to-lie/comment-page-1#comment-103700</link>
		<dc:creator>Lionel</dc:creator>
		<pubDate>Wed, 22 Feb 2012 17:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1517#comment-103700</guid>
		<description>I&#039;m starting to see that too. We call them the &quot;buzzword compatible&quot; projects. 

Everyone has heard of HTML5 and wants it, it allows them to sound cutting edge... but from the implementation side... it&#039;s another story.</description>
		<content:encoded><![CDATA[<p>I&#8217;m starting to see that too. We call them the &#8220;buzzword compatible&#8221; projects. </p>
<p>Everyone has heard of HTML5 and wants it, it allows them to sound cutting edge&#8230; but from the implementation side&#8230; it&#8217;s another story.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by JDallas</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103697</link>
		<dc:creator>JDallas</dc:creator>
		<pubDate>Tue, 21 Feb 2012 16:33:52 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103697</guid>
		<description>You are right about the build times being outrageous.  I am now looking at Sencha Touch and I am enjoying the instant gratification by hitting the refresh button.  Not to mention that the project would sometimes want to rebuild for what appeared to be no reason, but was actually a bug in the compiler and just changing a simple color or pixel width would require the whole shebang to start again.</description>
		<content:encoded><![CDATA[<p>You are right about the build times being outrageous.  I am now looking at Sencha Touch and I am enjoying the instant gratification by hitting the refresh button.  Not to mention that the project would sometimes want to rebuild for what appeared to be no reason, but was actually a bug in the compiler and just changing a simple color or pixel width would require the whole shebang to start again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Roy Rogers</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103693</link>
		<dc:creator>Roy Rogers</dc:creator>
		<pubDate>Mon, 20 Feb 2012 16:59:51 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103693</guid>
		<description>Thank you very much for your reply. Just would like to say that  I read all your books and I love them all!</description>
		<content:encoded><![CDATA[<p>Thank you very much for your reply. Just would like to say that  I read all your books and I love them all!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Yakov Fain</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103692</link>
		<dc:creator>Yakov Fain</dc:creator>
		<pubDate>Mon, 20 Feb 2012 14:23:41 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103692</guid>
		<description>Haven&#039;t heard about ZK. The app written in Java and magically turned in Javascript is great, but you&#039;re still deploying/debugging JavaScript and I don&#039;t buy the promises like &quot;you don&#039;t need to know JavaScript&quot;. It might be a great framework, but what makes it better than GWT, which promised the same was backed by Google, but never took off nevertheless?</description>
		<content:encoded><![CDATA[<p>Haven&#8217;t heard about ZK. The app written in Java and magically turned in Javascript is great, but you&#8217;re still deploying/debugging JavaScript and I don&#8217;t buy the promises like &#8220;you don&#8217;t need to know JavaScript&#8221;. It might be a great framework, but what makes it better than GWT, which promised the same was backed by Google, but never took off nevertheless?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Roy Rogers</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103691</link>
		<dc:creator>Roy Rogers</dc:creator>
		<pubDate>Sun, 19 Feb 2012 21:25:11 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103691</guid>
		<description>Hi Yakov,

Have heard about zk framework? If yes  what do you think about that? 

Best regards,

Roy


http://www.zkoss.org/
http://www.zkoss.org/zkdemo/grid</description>
		<content:encoded><![CDATA[<p>Hi Yakov,</p>
<p>Have heard about zk framework? If yes  what do you think about that? </p>
<p>Best regards,</p>
<p>Roy</p>
<p><a href="http://www.zkoss.org/" rel="nofollow">http://www.zkoss.org/</a><br />
<a href="http://www.zkoss.org/zkdemo/grid" rel="nofollow">http://www.zkoss.org/zkdemo/grid</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Ansury</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103690</link>
		<dc:creator>Ansury</dc:creator>
		<pubDate>Sun, 19 Feb 2012 03:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103690</guid>
		<description>&quot;new versions of Flash Player won’t support features introduced by Apache Flex&quot; - not sure what kinds of features this could be referring to.  I think I recall something about 5 year backwards compatibility? That&#039;s probably a long enough time frame that I doubt such &quot;PlanB-code&quot; would be common.</description>
		<content:encoded><![CDATA[<p>&#8220;new versions of Flash Player won’t support features introduced by Apache Flex&#8221; &#8211; not sure what kinds of features this could be referring to.  I think I recall something about 5 year backwards compatibility? That&#8217;s probably a long enough time frame that I doubt such &#8220;PlanB-code&#8221; would be common.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Yakov Fain</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103689</link>
		<dc:creator>Yakov Fain</dc:creator>
		<pubDate>Sat, 18 Feb 2012 21:05:51 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103689</guid>
		<description>Since Adobe stated loud and clear that the new versions of Flash Player won&#039;t support features introduced by Apache Flex, something has to be done in the framework level.

If in the past creating a framework that supported MVC Dependency Injection would make a framework popular, this won&#039;t be the key to success in the future. The next generation frameworks will make sure that your Flex app still works even if Adobe&#039;s Flash Player 5+ doesn&#039;t support a feature that Apache Flex SDK needs. 

This is what the modern JavaScript frameworks do under the hood. Instead of just calling a function abc(), the code first checks if such a function even exists. If not, the PlanB-code gets invoked. Most likely, the upcoming  Apache Flex code itself will have to incorporate such preventive measures.</description>
		<content:encoded><![CDATA[<p>Since Adobe stated loud and clear that the new versions of Flash Player won&#8217;t support features introduced by Apache Flex, something has to be done in the framework level.</p>
<p>If in the past creating a framework that supported MVC Dependency Injection would make a framework popular, this won&#8217;t be the key to success in the future. The next generation frameworks will make sure that your Flex app still works even if Adobe&#8217;s Flash Player 5+ doesn&#8217;t support a feature that Apache Flex SDK needs. </p>
<p>This is what the modern JavaScript frameworks do under the hood. Instead of just calling a function abc(), the code first checks if such a function even exists. If not, the PlanB-code gets invoked. Most likely, the upcoming  Apache Flex code itself will have to incorporate such preventive measures.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Yue Hong</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103688</link>
		<dc:creator>Yue Hong</dc:creator>
		<pubDate>Sat, 18 Feb 2012 15:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103688</guid>
		<description>Here is something I would like to add-in. If you are planning to develop mobile applications for iOS and Android (not games), and it is not a very advance complex application, I would highly recommend using phonegap with HTML5. One of the main reason is that, although AIR is cross-platform, but it doesn&#039;t really cross model. Adobe AIR has high requirement on the mobile processor which it can only run on ARMv7 and above. There are still many people using older model of phone and some of the new popular low budget phone such as Samsung Galaxy Y runs on ARMv6. So, if you are developing some &quot;basic&quot; application using AIR you are losing a huge portion of potential customer which is bad for business.</description>
		<content:encoded><![CDATA[<p>Here is something I would like to add-in. If you are planning to develop mobile applications for iOS and Android (not games), and it is not a very advance complex application, I would highly recommend using phonegap with HTML5. One of the main reason is that, although AIR is cross-platform, but it doesn&#8217;t really cross model. Adobe AIR has high requirement on the mobile processor which it can only run on ARMv7 and above. There are still many people using older model of phone and some of the new popular low budget phone such as Samsung Galaxy Y runs on ARMv6. So, if you are developing some &#8220;basic&#8221; application using AIR you are losing a huge portion of potential customer which is bad for business.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Ansury</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103687</link>
		<dc:creator>Ansury</dc:creator>
		<pubDate>Sat, 18 Feb 2012 07:08:36 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103687</guid>
		<description>And HTML5 is a pile of hype too.  A slow moving 20 ft tidal wave sure, but not the 100 ft wave that&#039;ll hit tomorrow like it&#039;s fanatics claim.  Didn&#039;t Java teach us that depending on standardization by committee is risky?  Rod Johnson was talking about this calling it a failure years ago, and cautioned about committee standardization in the rich client space.  Of course Flex is immune to this problem, when in a Flash VM.

http://www.infoq.com/presentations/Lessons-Learned-from-Java-EE

Mobile, VM platforms (like Flash or Silverlight) is the way to go if you want a consistent, stable environment.  (Admittedly the technical superior solution isn&#039;t always an industry&#039;s choice.)  So that problem is already solved w/Flash - I think what Flex is missing, is something like SpringSource - a company that charges for and offers enterprise support.</description>
		<content:encoded><![CDATA[<p>And HTML5 is a pile of hype too.  A slow moving 20 ft tidal wave sure, but not the 100 ft wave that&#8217;ll hit tomorrow like it&#8217;s fanatics claim.  Didn&#8217;t Java teach us that depending on standardization by committee is risky?  Rod Johnson was talking about this calling it a failure years ago, and cautioned about committee standardization in the rich client space.  Of course Flex is immune to this problem, when in a Flash VM.</p>
<p><a href="http://www.infoq.com/presentations/Lessons-Learned-from-Java-EE" rel="nofollow">http://www.infoq.com/presentations/Lessons-Learned-from-Java-EE</a></p>
<p>Mobile, VM platforms (like Flash or Silverlight) is the way to go if you want a consistent, stable environment.  (Admittedly the technical superior solution isn&#8217;t always an industry&#8217;s choice.)  So that problem is already solved w/Flash &#8211; I think what Flex is missing, is something like SpringSource &#8211; a company that charges for and offers enterprise support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Ansury</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103686</link>
		<dc:creator>Ansury</dc:creator>
		<pubDate>Sat, 18 Feb 2012 05:49:45 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103686</guid>
		<description>Well, that&#039;s the pessimistic view anyway. The other view is, now Flex follows the same paradigm as Eclipse (which we all know is a &quot;miserable failure&quot;....) and will be a &quot;true&quot; open source project, which addresses one of the past critiques of OSS extremists.

And while the Falcon JavaScript compiler (target JavaScript for the Flex SDK, like GWT does with Java) is still yet to be seen, I think that should do something to calm people down after the FUD slinging session we had a few months ago.  The Flex SDK &amp; development methodology will be preserved even if browser plugins die.  Actually simply getting that compiler to a stable state would probably be big news.  Targeting Flash or JS makes Flex one of the most versatile and mature web SDKs out there.

I couldn&#039;t care less about Flex and Flash dev on mobile, or adding new features to Flash mobile.  Mobile is a lot of hype these days.  Good riddance to something that was stealing valuable resources from Flex/Flash Enterprise/Desktop.  You could argue that Flex and Flash are overkill on these little devices, for such simple little apps.  They can barely run crummy JS toys.

It&#039;s akin to an un-needed government agency being shut down and privatized (open sourced, here), and people are reacting with predictable unproven FUD.  The worst thing about the news is the news (and the over-reation) itself.  I admit maybe, that could be enough to cripple the SDK going forward, if Fx proponents keep acting grumpy about these changes... so stop.  No good can come from negativity.</description>
		<content:encoded><![CDATA[<p>Well, that&#8217;s the pessimistic view anyway. The other view is, now Flex follows the same paradigm as Eclipse (which we all know is a &#8220;miserable failure&#8221;&#8230;.) and will be a &#8220;true&#8221; open source project, which addresses one of the past critiques of OSS extremists.</p>
<p>And while the Falcon JavaScript compiler (target JavaScript for the Flex SDK, like GWT does with Java) is still yet to be seen, I think that should do something to calm people down after the FUD slinging session we had a few months ago.  The Flex SDK &amp; development methodology will be preserved even if browser plugins die.  Actually simply getting that compiler to a stable state would probably be big news.  Targeting Flash or JS makes Flex one of the most versatile and mature web SDKs out there.</p>
<p>I couldn&#8217;t care less about Flex and Flash dev on mobile, or adding new features to Flash mobile.  Mobile is a lot of hype these days.  Good riddance to something that was stealing valuable resources from Flex/Flash Enterprise/Desktop.  You could argue that Flex and Flash are overkill on these little devices, for such simple little apps.  They can barely run crummy JS toys.</p>
<p>It&#8217;s akin to an un-needed government agency being shut down and privatized (open sourced, here), and people are reacting with predictable unproven FUD.  The worst thing about the news is the news (and the over-reation) itself.  I admit maybe, that could be enough to cripple the SDK going forward, if Fx proponents keep acting grumpy about these changes&#8230; so stop.  No good can come from negativity.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Avoiding Duplicate Suffixes in Ext JS MVC by Yakov Fain</title>
		<link>http://flexblog.faratasystems.com/2012/02/15/avoiding-duplicate-suffixes-in-ext-js4-mvc/comment-page-1#comment-103685</link>
		<dc:creator>Yakov Fain</dc:creator>
		<pubDate>Fri, 17 Feb 2012 21:56:09 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1356#comment-103685</guid>
		<description>If Sencha&#039;s marketing team will make Ext JS popular among Flex developers, we&#039;ll gladly go to Texas. We like travel.</description>
		<content:encoded><![CDATA[<p>If Sencha&#8217;s marketing team will make Ext JS popular among Flex developers, we&#8217;ll gladly go to Texas. We like travel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by ron</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103684</link>
		<dc:creator>ron</dc:creator>
		<pubDate>Fri, 17 Feb 2012 21:06:44 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103684</guid>
		<description>It&#039;s nice to get candid and honest feedback for a change. Thank you and keep up the good work here. Always keeping you guys in mind for projects.
--Ron</description>
		<content:encoded><![CDATA[<p>It&#8217;s nice to get candid and honest feedback for a change. Thank you and keep up the good work here. Always keeping you guys in mind for projects.<br />
&#8211;Ron</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Yakov Fain</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103683</link>
		<dc:creator>Yakov Fain</dc:creator>
		<pubDate>Fri, 17 Feb 2012 19:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103683</guid>
		<description>Ron, If you&#039;d asked me about this 3 months ago, I&#039;d say stick to Adobe AIR for anything cross-platform mobile. But after 11/9, I don&#039;t believe that Adobe will be investing into the AIR project sufficient financial and human resources. 

As to Flash Builder, I have no trust in Adobe. They couldn&#039;t make it to work properly on Desktop in 6 years. Now they&#039;re facing a plethora of different mobile devices which should be properly emulated. This is tough. 

With the native extensions, you&#039;ll be running into this pointing-fingers game over and over again. 

Having said that, I can&#039;t say, &quot;Don&#039;t use AIR&quot;. Let the money talk: just take a piece of paper and do some math calculating the cost of developing these applications with and without AIR. Do you have the right skill set in house? If not, do you have a budget to hire people with different skill sets to develop natively? If the answer is No to these questions, stick to Adobe AIR and learn to live with Flash Builder.</description>
		<content:encoded><![CDATA[<p>Ron, If you&#8217;d asked me about this 3 months ago, I&#8217;d say stick to Adobe AIR for anything cross-platform mobile. But after 11/9, I don&#8217;t believe that Adobe will be investing into the AIR project sufficient financial and human resources. </p>
<p>As to Flash Builder, I have no trust in Adobe. They couldn&#8217;t make it to work properly on Desktop in 6 years. Now they&#8217;re facing a plethora of different mobile devices which should be properly emulated. This is tough. </p>
<p>With the native extensions, you&#8217;ll be running into this pointing-fingers game over and over again. </p>
<p>Having said that, I can&#8217;t say, &#8220;Don&#8217;t use AIR&#8221;. Let the money talk: just take a piece of paper and do some math calculating the cost of developing these applications with and without AIR. Do you have the right skill set in house? If not, do you have a budget to hire people with different skill sets to develop natively? If the answer is No to these questions, stick to Adobe AIR and learn to live with Flash Builder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by ron</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103682</link>
		<dc:creator>ron</dc:creator>
		<pubDate>Fri, 17 Feb 2012 18:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103682</guid>
		<description>Here&#039;s a question for you Yakov. If you were going to build mobile applications for IOS and Android (not games), would you use Air/Flex to do it or would you decide to go native and build applications with java for android/object c for IOS? 

I&#039;m just curious, because I&#039;m struggling with that decision everyday despite AIR having native extensions now. I just don&#039;t want to get screwed and I&#039;m finding it challenging to use the Flashbuilder 4.6 to build mobile AIR apps for android using native extensions. I find I spend more time trying to get the android debugger to play nice than I do coding. And it also seems like Adobe can&#039;t resolve any issues on their bug forum. They blame all the external sdks or don&#039;t seem to be able to fix any problems. Just frustrating...

I can tell you that I&#039;m leaning toward discarding flashbuilder4.6 and starting fresh with Xcode and eclipse(or intelij). What about you. Any advice in this area?

Thanks
Ron</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a question for you Yakov. If you were going to build mobile applications for IOS and Android (not games), would you use Air/Flex to do it or would you decide to go native and build applications with java for android/object c for IOS? </p>
<p>I&#8217;m just curious, because I&#8217;m struggling with that decision everyday despite AIR having native extensions now. I just don&#8217;t want to get screwed and I&#8217;m finding it challenging to use the Flashbuilder 4.6 to build mobile AIR apps for android using native extensions. I find I spend more time trying to get the android debugger to play nice than I do coding. And it also seems like Adobe can&#8217;t resolve any issues on their bug forum. They blame all the external sdks or don&#8217;t seem to be able to fix any problems. Just frustrating&#8230;</p>
<p>I can tell you that I&#8217;m leaning toward discarding flashbuilder4.6 and starting fresh with Xcode and eclipse(or intelij). What about you. Any advice in this area?</p>
<p>Thanks<br />
Ron</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by NIcolas</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103680</link>
		<dc:creator>NIcolas</dc:creator>
		<pubDate>Thu, 16 Feb 2012 21:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103680</guid>
		<description>I agree with most point except Flash Catalyst. Granted their marketing sucked and I had no idea what it did really up until I started playing with it.

I design and implement very complex and pixel perfect user interfaces - and Catalyst has saved me weeks worth of work. It has its quirks but to implement components and UI it has real business value.

FXG is a great move forward. Halo was a dump of horse shit compared to spark components (if we omit the disaster that IndexChangeEvent are vs itemclick).

In other words I&#039;m truly sorry to hear that they&#039;re dropping FC. Not for the promises it had given and never delivered, but for the actual use I have for it. Creating skins in minutes rather than hours.</description>
		<content:encoded><![CDATA[<p>I agree with most point except Flash Catalyst. Granted their marketing sucked and I had no idea what it did really up until I started playing with it.</p>
<p>I design and implement very complex and pixel perfect user interfaces &#8211; and Catalyst has saved me weeks worth of work. It has its quirks but to implement components and UI it has real business value.</p>
<p>FXG is a great move forward. Halo was a dump of horse shit compared to spark components (if we omit the disaster that IndexChangeEvent are vs itemclick).</p>
<p>In other words I&#8217;m truly sorry to hear that they&#8217;re dropping FC. Not for the promises it had given and never delivered, but for the actual use I have for it. Creating skins in minutes rather than hours.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Avoiding Duplicate Suffixes in Ext JS MVC by Handi</title>
		<link>http://flexblog.faratasystems.com/2012/02/15/avoiding-duplicate-suffixes-in-ext-js4-mvc/comment-page-1#comment-103679</link>
		<dc:creator>Handi</dc:creator>
		<pubDate>Thu, 16 Feb 2012 16:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1356#comment-103679</guid>
		<description>Hi Victor,

Does Farata have any plan in doing this Flex-to-ExtJs workshop in Texas?

Thank you!</description>
		<content:encoded><![CDATA[<p>Hi Victor,</p>
<p>Does Farata have any plan in doing this Flex-to-ExtJs workshop in Texas?</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Yakov Fain</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103678</link>
		<dc:creator>Yakov Fain</dc:creator>
		<pubDate>Thu, 16 Feb 2012 15:47:26 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103678</guid>
		<description>@mzh We&#039;ve had plenty of successful Flex projects. We love this technology and trust it, but, Adobe doesn&#039;t, which is sad.</description>
		<content:encoded><![CDATA[<p>@mzh We&#8217;ve had plenty of successful Flex projects. We love this technology and trust it, but, Adobe doesn&#8217;t, which is sad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by mzx</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103677</link>
		<dc:creator>mzx</dc:creator>
		<pubDate>Thu, 16 Feb 2012 15:23:18 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103677</guid>
		<description>Haters).
do u guys have a 1 successful project using flex? 
another question how u do training on technology u don&#039;t trust?</description>
		<content:encoded><![CDATA[<p>Haters).<br />
do u guys have a 1 successful project using flex?<br />
another question how u do training on technology u don&#8217;t trust?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Avoiding Duplicate Suffixes in Ext JS MVC by Nono Carballo Escalona</title>
		<link>http://flexblog.faratasystems.com/2012/02/15/avoiding-duplicate-suffixes-in-ext-js4-mvc/comment-page-1#comment-103676</link>
		<dc:creator>Nono Carballo Escalona</dc:creator>
		<pubDate>Thu, 16 Feb 2012 14:11:46 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1356#comment-103676</guid>
		<description>Is possible to publish the slides of the event for those who would like to attend but can&#039;t do it (like me for example)

WBR

Nono</description>
		<content:encoded><![CDATA[<p>Is possible to publish the slides of the event for those who would like to attend but can&#8217;t do it (like me for example)</p>
<p>WBR</p>
<p>Nono</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading another funny document by Adobe by Marvin Froeder</title>
		<link>http://flexblog.faratasystems.com/2012/02/16/reading-another-funny-document-by-adobe/comment-page-1#comment-103675</link>
		<dc:creator>Marvin Froeder</dc:creator>
		<pubDate>Thu, 16 Feb 2012 13:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1423#comment-103675</guid>
		<description>Sadly I must agree that the impression is not good.</description>
		<content:encoded><![CDATA[<p>Sadly I must agree that the impression is not good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enterprise Development: Flex or HTML5? by J. Dallas</title>
		<link>http://flexblog.faratasystems.com/2012/01/27/enterprise-development-flex-or-html5/comment-page-1#comment-103667</link>
		<dc:creator>J. Dallas</dc:creator>
		<pubDate>Tue, 31 Jan 2012 19:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1330#comment-103667</guid>
		<description>I am on the same page as you all with reference to the feeling I get from the JS ecosystem.  After hearing about the demise of Flex, I began exploring the JS world for an alternative.  I was looking for something similar to Flex, UI components, MVC-able, and good documentation.  At first I was stunned by the zoo of JS frameworks out there, then I decided to do my pet project in Sencha Touch which is produced by the same company that makes Ext JS.

What really struck me was the lack of I guess &quot;engineering progression&quot; in the HTML/JS/CSS world with respect to RIA&#039;s.  Components allow for quick production of mockups and decrease application development time, MVC structures allow for loose coupling and help increase code quality, tooling such as test and IDE&#039;s allow for total developmental control.  When you go and look at most JS frameworks you get none of the above and that is very disheartening because you can end up feeling like you are solving a problem that doesn&#039;t need to be solved.

MS and Adobe both pulled out of the RIA market by killing both their projects.  While Adobe didn&#039;t outright kill Flex, its PR stunt has added so much uncertainty, that it will be awhile before people feel its politically prudent to suggest starting and maintaining Flex projects.  I hope that MS or Adobe (especially Adobe) take note of the development gap in creating RIAs with JS and create some kind of library and tooling to do so.</description>
		<content:encoded><![CDATA[<p>I am on the same page as you all with reference to the feeling I get from the JS ecosystem.  After hearing about the demise of Flex, I began exploring the JS world for an alternative.  I was looking for something similar to Flex, UI components, MVC-able, and good documentation.  At first I was stunned by the zoo of JS frameworks out there, then I decided to do my pet project in Sencha Touch which is produced by the same company that makes Ext JS.</p>
<p>What really struck me was the lack of I guess &#8220;engineering progression&#8221; in the HTML/JS/CSS world with respect to RIA&#8217;s.  Components allow for quick production of mockups and decrease application development time, MVC structures allow for loose coupling and help increase code quality, tooling such as test and IDE&#8217;s allow for total developmental control.  When you go and look at most JS frameworks you get none of the above and that is very disheartening because you can end up feeling like you are solving a problem that doesn&#8217;t need to be solved.</p>
<p>MS and Adobe both pulled out of the RIA market by killing both their projects.  While Adobe didn&#8217;t outright kill Flex, its PR stunt has added so much uncertainty, that it will be awhile before people feel its politically prudent to suggest starting and maintaining Flex projects.  I hope that MS or Adobe (especially Adobe) take note of the development gap in creating RIAs with JS and create some kind of library and tooling to do so.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Immersing into JavaScript Frameworks by Yakov Fain</title>
		<link>http://flexblog.faratasystems.com/2012/01/10/immersing-into-javascript-frameworks-2/comment-page-1#comment-103643</link>
		<dc:creator>Yakov Fain</dc:creator>
		<pubDate>Sun, 15 Jan 2012 16:29:29 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1325#comment-103643</guid>
		<description>Nice writeup. Finished one third :) 
Preparing even longer post now.</description>
		<content:encoded><![CDATA[<p>Nice writeup. Finished one third <img src='http://flexblog.faratasystems.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Preparing even longer post now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Immersing into JavaScript Frameworks by João Saleiro</title>
		<link>http://flexblog.faratasystems.com/2012/01/10/immersing-into-javascript-frameworks-2/comment-page-1#comment-103641</link>
		<dc:creator>João Saleiro</dc:creator>
		<pubDate>Fri, 13 Jan 2012 13:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1325#comment-103641</guid>
		<description>Yakov, you might enjoy this reading: &quot;After 6 years doing Flex, am I moving to HTML5?&quot; - https://plus.google.com/109047477151984864676/posts/CVGJKLMMehs</description>
		<content:encoded><![CDATA[<p>Yakov, you might enjoy this reading: &#8220;After 6 years doing Flex, am I moving to HTML5?&#8221; &#8211; <a href="https://plus.google.com/109047477151984864676/posts/CVGJKLMMehs" rel="nofollow">https://plus.google.com/109047477151984864676/posts/CVGJKLMMehs</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Immersing into JavaScript Frameworks by Anatole</title>
		<link>http://flexblog.faratasystems.com/2012/01/10/immersing-into-javascript-frameworks-2/comment-page-1#comment-103640</link>
		<dc:creator>Anatole</dc:creator>
		<pubDate>Fri, 13 Jan 2012 05:37:10 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1325#comment-103640</guid>
		<description>Yakov, it is kind of ironic considering the very first blog entry on this site in 6 years ago: http://flexblog.faratasystems.com/2005/12 . 

ash, there is no need to develop anything over light libraries or say we adopt them - you just use them when necessary - but low level libraries solve the problems they are created for and should not be used for anything else unless it is natural fit.   
Sincerely,
Anatole</description>
		<content:encoded><![CDATA[<p>Yakov, it is kind of ironic considering the very first blog entry on this site in 6 years ago: <a href="http://flexblog.faratasystems.com/2005/12" rel="nofollow">http://flexblog.faratasystems.com/2005/12</a> . </p>
<p>ash, there is no need to develop anything over light libraries or say we adopt them &#8211; you just use them when necessary &#8211; but low level libraries solve the problems they are created for and should not be used for anything else unless it is natural fit.<br />
Sincerely,<br />
Anatole</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Immersing into JavaScript Frameworks by Handi</title>
		<link>http://flexblog.faratasystems.com/2012/01/10/immersing-into-javascript-frameworks-2/comment-page-1#comment-103639</link>
		<dc:creator>Handi</dc:creator>
		<pubDate>Fri, 13 Jan 2012 03:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1325#comment-103639</guid>
		<description>Hi Yakov,

Thank you for sharing your thoughts.
I am assuming you have looked at YUI.
From what I know, YUI is on par with what Ext JS offers at least from the UI scope but I am sure that
there are other differences that made Farata to lean towards Ext JS.
So I was wondering if you could share your thoughts on that?

Again thank you!</description>
		<content:encoded><![CDATA[<p>Hi Yakov,</p>
<p>Thank you for sharing your thoughts.<br />
I am assuming you have looked at YUI.<br />
From what I know, YUI is on par with what Ext JS offers at least from the UI scope but I am sure that<br />
there are other differences that made Farata to lean towards Ext JS.<br />
So I was wondering if you could share your thoughts on that?</p>
<p>Again thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Immersing into JavaScript Frameworks by ash</title>
		<link>http://flexblog.faratasystems.com/2012/01/10/immersing-into-javascript-frameworks-2/comment-page-1#comment-103638</link>
		<dc:creator>ash</dc:creator>
		<pubDate>Thu, 12 Jan 2012 20:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1325#comment-103638</guid>
		<description>Rather than Sencha, I&#039;d love to see Farata throw its weight behind up-and-coming stacks, like Node.js + Express + Mongodb.</description>
		<content:encoded><![CDATA[<p>Rather than Sencha, I&#8217;d love to see Farata throw its weight behind up-and-coming stacks, like Node.js + Express + Mongodb.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Immersing into JavaScript Frameworks by guest</title>
		<link>http://flexblog.faratasystems.com/2012/01/10/immersing-into-javascript-frameworks-2/comment-page-1#comment-103636</link>
		<dc:creator>guest</dc:creator>
		<pubDate>Thu, 12 Jan 2012 02:23:48 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=1325#comment-103636</guid>
		<description>Any reason you did not pick  Dojo instead of Ext? 
It seems very much suited for enterprise-scale apps. Good list of sponsoring companies as well.
http://dojofoundation.org/about/sponsor</description>
		<content:encoded><![CDATA[<p>Any reason you did not pick  Dojo instead of Ext?<br />
It seems very much suited for enterprise-scale apps. Good list of sponsoring companies as well.<br />
<a href="http://dojofoundation.org/about/sponsor" rel="nofollow">http://dojofoundation.org/about/sponsor</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

