<?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 on: The march to a more client-centric Web; Will the mobile Web, HTML5, and Chrome Web Apps be the tipping point?</title>
	<atom:link href="http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:55:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: Joeri</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284244</link>
		<dc:creator>Joeri</dc:creator>
		<pubDate>Tue, 22 Jun 2010 15:18:02 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284244</guid>
		<description>I still don&#039;t see the problem with replicating tableview in javascript. You can use the same &quot;load+render data subsets on demand&quot; trick there. The ExtJS live grid component does this: http://www.ext-livegrid.com/
.
My point is simply that there is nothing &quot;magical&quot; about native code. Any design trick to offer better performance that is available to you in native code is also available to you in managed code.</description>
		<content:encoded><![CDATA[<p>I still don&#8217;t see the problem with replicating tableview in javascript. You can use the same &#8220;load+render data subsets on demand&#8221; trick there. The ExtJS live grid component does this: <a href="http://www.ext-livegrid.com/" rel="nofollow">http://www.ext-livegrid.com/</a><br />
.<br />
My point is simply that there is nothing &#8220;magical&#8221; about native code. Any design trick to offer better performance that is available to you in native code is also available to you in managed code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BgSimple</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284241</link>
		<dc:creator>BgSimple</dc:creator>
		<pubDate>Tue, 22 Jun 2010 09:19:50 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284241</guid>
		<description>@joeri : The problem with tableview is not only a matter of updating the graphical parts, it&#039;s a matter of memory management. You can&#039;t load data for all the cells of the table at the same time because you&#039;re memory constrained and have no memory &quot;swapping&quot;, so you&#039;ll have to create those cells &quot;on the fly&quot;. But then you&#039;re faced to memory allocation being extremely slow on those devices. Cocoa provides a very carefully designed API to let you reuse cells, optimize image loading into memory, etc... Memory management is one of the reason why videogames are still programmed using low-level languages. It&#039;s a pre-requisite whenever you&#039;re dealing with advanced UI. 

Yet, I completely agree with you when you say that it&#039;s just a matter of time until those mobile devices become powerful enough to handle the overhead of modern programming languages features. My original post talked about apps ruling for the next 2 years, not forever.

PS : objective-c does support garbage collection, but only on the MacOSX API, so I think it has nothing to do with the language. They do provide what they call &quot;autorelease pools&quot; on the iphone sdk, but they warn developers against using it all the time, since this has a cost.</description>
		<content:encoded><![CDATA[<p>@joeri : The problem with tableview is not only a matter of updating the graphical parts, it&#8217;s a matter of memory management. You can&#8217;t load data for all the cells of the table at the same time because you&#8217;re memory constrained and have no memory &#8220;swapping&#8221;, so you&#8217;ll have to create those cells &#8220;on the fly&#8221;. But then you&#8217;re faced to memory allocation being extremely slow on those devices. Cocoa provides a very carefully designed API to let you reuse cells, optimize image loading into memory, etc&#8230; Memory management is one of the reason why videogames are still programmed using low-level languages. It&#8217;s a pre-requisite whenever you&#8217;re dealing with advanced UI. </p>
<p>Yet, I completely agree with you when you say that it&#8217;s just a matter of time until those mobile devices become powerful enough to handle the overhead of modern programming languages features. My original post talked about apps ruling for the next 2 years, not forever.</p>
<p>PS : objective-c does support garbage collection, but only on the MacOSX API, so I think it has nothing to do with the language. They do provide what they call &#8220;autorelease pools&#8221; on the iphone sdk, but they warn developers against using it all the time, since this has a cost.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joeri</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284231</link>
		<dc:creator>Joeri</dc:creator>
		<pubDate>Mon, 21 Jun 2010 21:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284231</guid>
		<description>@BgSimple: Phones are a different discussion. I was talking about the desktop. Even then, phones are catching up fast to desktops in hardware. The newer crop are all 1 ghz devices with 512 mb ram. That&#039;s fast enough for a VM.
.
Fluid scrolling has _nothing_ to do with being native code. It&#039;s a matter of offering an API to hardware-accelerate panning a surface within a clipping region, which is exactly what the iphone does with css animations. For example, here&#039;s a fancy javascript demo that&#039;s not painfully slow: http://vimeo.com/12459719
.
Apple doesn&#039;t add garbage collection to the iphone&#039;s sdk because the way it was added to objective-c isn&#039;t all that useful. Objective-c was designed a quarter of a century ago, and allowing a garbage collector wasn&#039;t part of its design parameters. The best they could do after the fact was refcounting, which is a close facsimile but not the same thing.</description>
		<content:encoded><![CDATA[<p>@BgSimple: Phones are a different discussion. I was talking about the desktop. Even then, phones are catching up fast to desktops in hardware. The newer crop are all 1 ghz devices with 512 mb ram. That&#8217;s fast enough for a VM.<br />
.<br />
Fluid scrolling has _nothing_ to do with being native code. It&#8217;s a matter of offering an API to hardware-accelerate panning a surface within a clipping region, which is exactly what the iphone does with css animations. For example, here&#8217;s a fancy javascript demo that&#8217;s not painfully slow: <a href="http://vimeo.com/12459719" rel="nofollow">http://vimeo.com/12459719</a><br />
.<br />
Apple doesn&#8217;t add garbage collection to the iphone&#8217;s sdk because the way it was added to objective-c isn&#8217;t all that useful. Objective-c was designed a quarter of a century ago, and allowing a garbage collector wasn&#8217;t part of its design parameters. The best they could do after the fact was refcounting, which is a close facsimile but not the same thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BgSimple</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284226</link>
		<dc:creator>BgSimple</dc:creator>
		<pubDate>Mon, 21 Jun 2010 13:36:10 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284226</guid>
		<description>@Joeri : PHP don&#039;t run real-time UI on a ARM 7 processor with 256 Megabytes of RAM and no virtual memory. I&#039;m sorry, but VM include very useful and convenient programming features at a cost.
  
One example : iPhone&#039;s most well-known UI component is the table view, fluidly scrolling rich graphical elements when the user slide his finger on top of it. Tell me how would something like that be able to run using today&#039;s HTML / javascript on the same kind of slow hardware with the same kind of fluidity. Once again, every fancy GUI javascript demo i&#039;ve seen is painfully slow on mobile devices.  

VM, and especially garbage collection is also why, in my opinion, you don&#039;t see the same fluidity on Android Java apps as in iPhone. Another hint toward that is that Apple didn&#039;t include garbage collection in iphone&#039;s sdk (only manual reference counter), although it is present in MacOS X. That must be for a reason.</description>
		<content:encoded><![CDATA[<p>@Joeri : PHP don&#8217;t run real-time UI on a ARM 7 processor with 256 Megabytes of RAM and no virtual memory. I&#8217;m sorry, but VM include very useful and convenient programming features at a cost.</p>
<p>One example : iPhone&#8217;s most well-known UI component is the table view, fluidly scrolling rich graphical elements when the user slide his finger on top of it. Tell me how would something like that be able to run using today&#8217;s HTML / javascript on the same kind of slow hardware with the same kind of fluidity. Once again, every fancy GUI javascript demo i&#8217;ve seen is painfully slow on mobile devices.  </p>
<p>VM, and especially garbage collection is also why, in my opinion, you don&#8217;t see the same fluidity on Android Java apps as in iPhone. Another hint toward that is that Apple didn&#8217;t include garbage collection in iphone&#8217;s sdk (only manual reference counter), although it is present in MacOS X. That must be for a reason.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kram</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284202</link>
		<dc:creator>kram</dc:creator>
		<pubDate>Sat, 19 Jun 2010 07:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284202</guid>
		<description>Nice Article. 
How about a slightly related post on the topic of scaling JS Frameworks? I know  HTML5 can do wonders for that, but in the meanwhile, for the rest of the world? For instance, if one has to scale extjs (I love extjs - but just using that as an example), the markup and the css are so intertwined that creating an over-sized button / tab requires hand stands :)</description>
		<content:encoded><![CDATA[<p>Nice Article.<br />
How about a slightly related post on the topic of scaling JS Frameworks? I know  HTML5 can do wonders for that, but in the meanwhile, for the rest of the world? For instance, if one has to scale extjs (I love extjs &#8211; but just using that as an example), the markup and the css are so intertwined that creating an over-sized button / tab requires hand stands :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andyidsinga</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284195</link>
		<dc:creator>andyidsinga</dc:creator>
		<pubDate>Fri, 18 Jun 2010 22:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284195</guid>
		<description>Good post. I&#039;m a big fan of web apps taking full advantage of the client platform with js and the various DOM exposed browser features. Our web apis project at work (Intel) is in this area..

I&#039;m fascinated by the direction of things like the Chrome web store, installable web apps, NPAPI::Pepper etc. Some of it is packaging - but the right kind IMHO. Some of it is better functionality and security.

Re: the post&#039;s title - I don&#039;t think we&#039;re going to move to a &quot;client centric&quot; web though. These technologies are just bringing much better client support back to the web app. At work, I&#039;m always chatting to folks about how web apps run &quot;on the web&quot; ..not just a client or server :)

Joeri++ from me too - especially on the webgl side. I can&#039;t wait to start messing with webgl.</description>
		<content:encoded><![CDATA[<p>Good post. I&#8217;m a big fan of web apps taking full advantage of the client platform with js and the various DOM exposed browser features. Our web apis project at work (Intel) is in this area..</p>
<p>I&#8217;m fascinated by the direction of things like the Chrome web store, installable web apps, NPAPI::Pepper etc. Some of it is packaging &#8211; but the right kind IMHO. Some of it is better functionality and security.</p>
<p>Re: the post&#8217;s title &#8211; I don&#8217;t think we&#8217;re going to move to a &#8220;client centric&#8221; web though. These technologies are just bringing much better client support back to the web app. At work, I&#8217;m always chatting to folks about how web apps run &#8220;on the web&#8221; ..not just a client or server :)</p>
<p>Joeri++ from me too &#8211; especially on the webgl side. I can&#8217;t wait to start messing with webgl.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joeri</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284190</link>
		<dc:creator>Joeri</dc:creator>
		<pubDate>Fri, 18 Jun 2010 17:28:52 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284190</guid>
		<description>@BgSimple: that&#039;s the miracle of JIT compilation. There&#039;s no technical reason why &quot;dog slow&quot; javascript running on top of &quot;poorly designed&quot; HTML can&#039;t be just as fast as hand-coded C, or even faster. I also see a lot of potential in accelerated graphics, like IE9&#039;s accelerated DOM, and webgl. Once they get OpenCL running in the browser, and I suspect it&#039;s only a matter of time before they do, I guarantee you we&#039;re going to see a javascript client for Seti@Home.
.
Besides, javascript is faster than PHP, and PHP is what the world&#039;s most used application runs on (facebook). Performance matters, but not that much. Some parts have to be native, and for that google is working on native client, but 99% of source code is perfectly fine on a dynamic language, even interpreted.</description>
		<content:encoded><![CDATA[<p>@BgSimple: that&#8217;s the miracle of JIT compilation. There&#8217;s no technical reason why &#8220;dog slow&#8221; javascript running on top of &#8220;poorly designed&#8221; HTML can&#8217;t be just as fast as hand-coded C, or even faster. I also see a lot of potential in accelerated graphics, like IE9&#8242;s accelerated DOM, and webgl. Once they get OpenCL running in the browser, and I suspect it&#8217;s only a matter of time before they do, I guarantee you we&#8217;re going to see a javascript client for Seti@Home.<br />
.<br />
Besides, javascript is faster than PHP, and PHP is what the world&#8217;s most used application runs on (facebook). Performance matters, but not that much. Some parts have to be native, and for that google is working on native client, but 99% of source code is perfectly fine on a dynamic language, even interpreted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ThomasHansen</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284188</link>
		<dc:creator>ThomasHansen</dc:creator>
		<pubDate>Fri, 18 Jun 2010 16:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284188</guid>
		<description>Hi Dion, nice post, although I obviously insanely disagree with your main thesis. About the &#039;offline problem&#039;, I think 37signals and David sums that up better than I would be able to do if I spent my entire life explaining it; http://37signals.com/svn/posts/347-youre-not-on-a-fucking-plane-and-if-you-are-it-doesnt-matter
.
Now back to your main thesis about client-driven apps. Most &#039;Ajax guys&#039; today thinks that &#039;JavaScript is difficult&#039;. So they try to &#039;make JS easier to develop in&#039;. Without realizing that they&#039;re effectively moving away from the original problem, which you actually hints towards in your post, which is; &#039;how do we create rich internet applications&#039;...
.
...right...?
.
People are still wanting to create apps, or...?
.
When you ask yourself this questions, meaning; &#039;how do we create rich internet applications&#039;, obviously using *web* and not ActiveX2.0, then the answers and possible solutions changes drastically. Sometimes I feel like a kinder-garden uncle, stuck in a kinder-garden, gone completely wild, where no one wants to listen to the &#039;grown ups&#039;. Obviously I am not alone in this position, but the majority are instead of asking themselves; &#039;how do we easier create web apps&#039;, asking themselves; &#039;how do we make it easier to develop in JavaScript on the client&#039; ...
.
Quite ironic indeed ...!
.
... &#039;when will they ever learn&#039; ...
 -- Bob Dylan!</description>
		<content:encoded><![CDATA[<p>Hi Dion, nice post, although I obviously insanely disagree with your main thesis. About the &#8216;offline problem&#8217;, I think 37signals and David sums that up better than I would be able to do if I spent my entire life explaining it; <a href="http://37signals.com/svn/posts/347-youre-not-on-a-fucking-plane-and-if-you-are-it-doesnt-matter" rel="nofollow">http://37signals.com/svn/posts/347-youre-not-on-a-fucking-plane-and-if-you-are-it-doesnt-matter</a><br />
.<br />
Now back to your main thesis about client-driven apps. Most &#8216;Ajax guys&#8217; today thinks that &#8216;JavaScript is difficult&#8217;. So they try to &#8216;make JS easier to develop in&#8217;. Without realizing that they&#8217;re effectively moving away from the original problem, which you actually hints towards in your post, which is; &#8216;how do we create rich internet applications&#8217;&#8230;<br />
.<br />
&#8230;right&#8230;?<br />
.<br />
People are still wanting to create apps, or&#8230;?<br />
.<br />
When you ask yourself this questions, meaning; &#8216;how do we create rich internet applications&#8217;, obviously using *web* and not ActiveX2.0, then the answers and possible solutions changes drastically. Sometimes I feel like a kinder-garden uncle, stuck in a kinder-garden, gone completely wild, where no one wants to listen to the &#8216;grown ups&#8217;. Obviously I am not alone in this position, but the majority are instead of asking themselves; &#8216;how do we easier create web apps&#8217;, asking themselves; &#8216;how do we make it easier to develop in JavaScript on the client&#8217; &#8230;<br />
.<br />
Quite ironic indeed &#8230;!<br />
.<br />
&#8230; &#8216;when will they ever learn&#8217; &#8230;<br />
 &#8212; Bob Dylan!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BgSimple</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284183</link>
		<dc:creator>BgSimple</dc:creator>
		<pubDate>Fri, 18 Jun 2010 12:10:17 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284183</guid>
		<description>it seems like the web is definitely going down against apps in the next 2 years, then maybe it will raise again after that cold winter.
As you&#039;re perfectly mentioned, we&#039;re facing challenges and I think that the web simply can&#039;t address them : 
1/ top graphics with many animations UIs running on slow devices (don&#039;t talk to me about modern JS framework that try to build full UI toolkits and run dog slow. Sproutcore basic demos don&#039;t even run on an iPad, and never will). You can&#039;t compare native speed on a carefully crafted and optimized framework (Cocoa) with something running on top of a virtual machine assembling poorly designed HTML elements to try and build a descent UI. 

2/ Offline support, meaning the full MVC on the client-side : to address this, the web would need perfectly standardized browsers, and I don&#039;t mean &quot;common default values for obscure css properties&quot;, I mean common offline database implementation, with similar performances,  common behaviors related to security,  error management, etc. We would also need a heavy framework and IDE capable of dealing with complex data structures, screen logic, and business logic. 
Javascript is a nice plastic toy, but it&#039;s not typed, not safe, and doesn&#039;t have (to my knowledge) any IDE capable of descent auto-completion. That is what developpers are used to when they develop for server-side, for flash, for objective-C, or for android. Everything the &quot;web&quot; tries to compete with.</description>
		<content:encoded><![CDATA[<p>it seems like the web is definitely going down against apps in the next 2 years, then maybe it will raise again after that cold winter.<br />
As you&#8217;re perfectly mentioned, we&#8217;re facing challenges and I think that the web simply can&#8217;t address them :<br />
1/ top graphics with many animations UIs running on slow devices (don&#8217;t talk to me about modern JS framework that try to build full UI toolkits and run dog slow. Sproutcore basic demos don&#8217;t even run on an iPad, and never will). You can&#8217;t compare native speed on a carefully crafted and optimized framework (Cocoa) with something running on top of a virtual machine assembling poorly designed HTML elements to try and build a descent UI. </p>
<p>2/ Offline support, meaning the full MVC on the client-side : to address this, the web would need perfectly standardized browsers, and I don&#8217;t mean &#8220;common default values for obscure css properties&#8221;, I mean common offline database implementation, with similar performances,  common behaviors related to security,  error management, etc. We would also need a heavy framework and IDE capable of dealing with complex data structures, screen logic, and business logic.<br />
Javascript is a nice plastic toy, but it&#8217;s not typed, not safe, and doesn&#8217;t have (to my knowledge) any IDE capable of descent auto-completion. That is what developpers are used to when they develop for server-side, for flash, for objective-C, or for android. Everything the &#8220;web&#8221; tries to compete with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sixtyseconds</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284180</link>
		<dc:creator>sixtyseconds</dc:creator>
		<pubDate>Fri, 18 Jun 2010 06:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284180</guid>
		<description>Joeri++;</description>
		<content:encoded><![CDATA[<p>Joeri++;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joeri</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284177</link>
		<dc:creator>Joeri</dc:creator>
		<pubDate>Thu, 17 Jun 2010 21:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284177</guid>
		<description>&lt;cite&gt;Many developers didn’t see the value proposition. Do they REALLY care about the offline use case? Getting some performance improvements by taking out latency is nice (hit cache first etc) but is that worth the rework?&lt;/cite&gt;
.
The reason I chose such an architecture (ExtJS on JSON-RPC) had little to do with offline, and nothing at all to do with mobile. The biggest reason for me was that the server became free to implement an API that isn&#039;t heavily tied to the UI. This allows client/server API&#039;s that are clean and sparse, which makes them easy to maintain and easy to secure. Since maintenance (and web app security) is the majority of the project cost, this saves real money. Since the API is clean enough, it can actually be used as a foundation for other apps (e.g. native iphone apps). The switch from PHP-centric development to ExtJS-centric was worth it, even if the learning curve was steep.
.
Maybe we also need to review the &quot;why&quot; behind progressive enhancement. It&#039;s no longer needed for accessibility, and no longer needed for widespread browser compatibility. It basically assumes that HTML is a given, and javascript is optional. That&#039;s no longer the web of today. In today&#039;s web, javascript is a given. So, why is it still necessary?</description>
		<content:encoded><![CDATA[<p><cite>Many developers didn’t see the value proposition. Do they REALLY care about the offline use case? Getting some performance improvements by taking out latency is nice (hit cache first etc) but is that worth the rework?</cite><br />
.<br />
The reason I chose such an architecture (ExtJS on JSON-RPC) had little to do with offline, and nothing at all to do with mobile. The biggest reason for me was that the server became free to implement an API that isn&#8217;t heavily tied to the UI. This allows client/server API&#8217;s that are clean and sparse, which makes them easy to maintain and easy to secure. Since maintenance (and web app security) is the majority of the project cost, this saves real money. Since the API is clean enough, it can actually be used as a foundation for other apps (e.g. native iphone apps). The switch from PHP-centric development to ExtJS-centric was worth it, even if the learning curve was steep.<br />
.<br />
Maybe we also need to review the &#8220;why&#8221; behind progressive enhancement. It&#8217;s no longer needed for accessibility, and no longer needed for widespread browser compatibility. It basically assumes that HTML is a given, and javascript is optional. That&#8217;s no longer the web of today. In today&#8217;s web, javascript is a given. So, why is it still necessary?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CR4</title>
		<link>http://ajaxian.com/archives/the-march-to-a-more-client-centric-web-will-the-mobile-web-html5-and-chrome-web-apps-be-the-tipping-point/comment-page-1#comment-284176</link>
		<dc:creator>CR4</dc:creator>
		<pubDate>Thu, 17 Jun 2010 20:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=9631#comment-284176</guid>
		<description>Yes.  In general, I think you&#039;ve summed up the current transition-in-waiting quite well.

The thing that&#039;s driving me nuts right now is the &quot;when&quot; of it all.

The product/application I work on (Flex/Flash RIA) is getting heavy pressure to be built &quot;for&quot; the iPad.  I have no interest in maintaining two code-bases - so converting to a truly cross-environment (device?) codebase is the right move.  So I cobbled a JS/CSS library of iPad-esque features and merged them with my custom app functionality as a proof of concept.

Then comes Sencha-touch.  And in my 10 minute preview, I can see it does more than my cobbled-together code will ever likely do.  So that&#039;s great!  But what&#039;s coming out tomorrow?

It makes me want to jump into the future - even just 6 months.

How does a developer who is working on an application with a 2,3,4+ year lifespan move forward today?  Sencha-touch?  Maybe, but tomorrow Apple, Google, somebody could release it&#039;s own library that is even better.

It&#039;s a tough time to be making long-term decisions.

That being said - the direction feels right.  So I guess I&#039;m willing to struggle through this transition period (is that what this is...?)</description>
		<content:encoded><![CDATA[<p>Yes.  In general, I think you&#8217;ve summed up the current transition-in-waiting quite well.</p>
<p>The thing that&#8217;s driving me nuts right now is the &#8220;when&#8221; of it all.</p>
<p>The product/application I work on (Flex/Flash RIA) is getting heavy pressure to be built &#8220;for&#8221; the iPad.  I have no interest in maintaining two code-bases &#8211; so converting to a truly cross-environment (device?) codebase is the right move.  So I cobbled a JS/CSS library of iPad-esque features and merged them with my custom app functionality as a proof of concept.</p>
<p>Then comes Sencha-touch.  And in my 10 minute preview, I can see it does more than my cobbled-together code will ever likely do.  So that&#8217;s great!  But what&#8217;s coming out tomorrow?</p>
<p>It makes me want to jump into the future &#8211; even just 6 months.</p>
<p>How does a developer who is working on an application with a 2,3,4+ year lifespan move forward today?  Sencha-touch?  Maybe, but tomorrow Apple, Google, somebody could release it&#8217;s own library that is even better.</p>
<p>It&#8217;s a tough time to be making long-term decisions.</p>
<p>That being said &#8211; the direction feels right.  So I guess I&#8217;m willing to struggle through this transition period (is that what this is&#8230;?)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

