<?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 Nate&#039;s Code Vault</title>
	<atom:link href="http://natescodevault.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://natescodevault.com</link>
	<description>from the dark recesses of an anxious mind</description>
	<lastBuildDate>Fri, 09 Dec 2011 13:47:33 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on D3.js Data Visualizations by Nate</title>
		<link>http://natescodevault.com/2011/11/28/d3-js-data-visualizations/comment-page-1/#comment-2379</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Wed, 30 Nov 2011 04:21:43 +0000</pubDate>
		<guid isPermaLink="false">http://natescodevault.com/?p=349#comment-2379</guid>
		<description>I noticed that as well when trying it on my iOS device and I agree with you about keeping mobile in mind.  This particular chart is really heavy on animations on purpose.  I was trying to demonstrate how great D3 is at handling lots of complex animations at one time.  Like you noticed however, lots of complex animations don&#039;t work very well on mobile devices, not because of D3, but because of the device&#039;s inability to process so many moving SVG nodes at one time.  Firefox also has similar issues because it isn&#039;t able to render SVG as quickly as Chrome, Safari, or even IE 9.

In the future try a few different options to speed this up:

1.  Fall back to a less animation-heavy version of the chart if I detect mobile browsers hitting the site.
2.  Reduce my data set so there are fewer moving SVG nodes.
3.  Allow users to toggle animations on/off
3.  Turn animations off altogether for mobile browsers.</description>
		<content:encoded><![CDATA[<p>I noticed that as well when trying it on my iOS device and I agree with you about keeping mobile in mind.  This particular chart is really heavy on animations on purpose.  I was trying to demonstrate how great D3 is at handling lots of complex animations at one time.  Like you noticed however, lots of complex animations don&#8217;t work very well on mobile devices, not because of D3, but because of the device&#8217;s inability to process so many moving SVG nodes at one time.  Firefox also has similar issues because it isn&#8217;t able to render SVG as quickly as Chrome, Safari, or even IE 9.</p>
<p>In the future try a few different options to speed this up:</p>
<p>1.  Fall back to a less animation-heavy version of the chart if I detect mobile browsers hitting the site.<br />
2.  Reduce my data set so there are fewer moving SVG nodes.<br />
3.  Allow users to toggle animations on/off<br />
3.  Turn animations off altogether for mobile browsers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on D3.js Data Visualizations by Teerasej Jiraphatchandej</title>
		<link>http://natescodevault.com/2011/11/28/d3-js-data-visualizations/comment-page-1/#comment-2378</link>
		<dc:creator>Teerasej Jiraphatchandej</dc:creator>
		<pubDate>Wed, 30 Nov 2011 01:29:21 +0000</pubDate>
		<guid isPermaLink="false">http://natescodevault.com/?p=349#comment-2378</guid>
		<description>Thank you for sharing this library. But after I tried with iOS and Android. The chart appears but the transition couldn&#039;t render (just swap to new data).

I think good Javascript virtualization today should support transition on mobile browser. This is a feature it must have!</description>
		<content:encoded><![CDATA[<p>Thank you for sharing this library. But after I tried with iOS and Android. The chart appears but the transition couldn&#8217;t render (just swap to new data).</p>
<p>I think good Javascript virtualization today should support transition on mobile browser. This is a feature it must have!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on D3.js Data Visualizations by Nate</title>
		<link>http://natescodevault.com/2011/11/28/d3-js-data-visualizations/comment-page-1/#comment-2376</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Tue, 29 Nov 2011 07:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://natescodevault.com/?p=349#comment-2376</guid>
		<description>Agreed.  Luckily Android gets SVG support in Honeycomb.  Granted it will still take some time to weed out the non-compliant Android browsers, but adoption happens so much quicker in the mobile world than the PC world.

Personally, &lt;IE9 doesn&#039;t concern me as much as it used to.  It&#039;s unfortunate that Windows 7 is required to get IE9, but I think most users have more than one browser installed and can use FF or Chrome if needs be.

If you have a server-side solution to generate images like &lt;a href=&quot;http://www.phantomjs.org/&quot; rel=&quot;nofollow&quot;&gt;PhantomJS&lt;/a&gt; (for example), you could serve up static images to non-compliant browsers along with a message to upgrade to a modern browser all while using the same code base.

At some point I think you have to draw a line in the sand if the technology is worth it :)</description>
		<content:encoded><![CDATA[<p>Agreed.  Luckily Android gets SVG support in Honeycomb.  Granted it will still take some time to weed out the non-compliant Android browsers, but adoption happens so much quicker in the mobile world than the PC world.</p>
<p>Personally, &lt;IE9 doesn&#8217;t concern me as much as it used to.  It&#8217;s unfortunate that Windows 7 is required to get IE9, but I think most users have more than one browser installed and can use FF or Chrome if needs be.</p>
<p>If you have a server-side solution to generate images like <a href="http://www.phantomjs.org/" rel="nofollow">PhantomJS</a> (for example), you could serve up static images to non-compliant browsers along with a message to upgrade to a modern browser all while using the same code base.</p>
<p>At some point I think you have to draw a line in the sand if the technology is worth it <img src='http://natescodevault.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on D3.js Data Visualizations by Kyle Mathews</title>
		<link>http://natescodevault.com/2011/11/28/d3-js-data-visualizations/comment-page-1/#comment-2375</link>
		<dc:creator>Kyle Mathews</dc:creator>
		<pubDate>Tue, 29 Nov 2011 06:57:01 +0000</pubDate>
		<guid isPermaLink="false">http://natescodevault.com/?p=349#comment-2375</guid>
		<description>Nifty stuff!

I&#039;d love to get into D3 more but I&#039;m a bit leery given its SVG dependency. Android is out + older IE browsers.</description>
		<content:encoded><![CDATA[<p>Nifty stuff!</p>
<p>I&#8217;d love to get into D3 more but I&#8217;m a bit leery given its SVG dependency. Android is out + older IE browsers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AMFDateConverter &#8211; Convert PHP AMF to Flex Date Class by Albulescu Cosmin</title>
		<link>http://natescodevault.com/2008/11/28/amfdateconverter-convert-php-amf-to-flex-date-class/comment-page-1/#comment-2353</link>
		<dc:creator>Albulescu Cosmin</dc:creator>
		<pubDate>Fri, 07 Oct 2011 11:34:34 +0000</pubDate>
		<guid isPermaLink="false">http://nateross.wordpress.com/?p=90#comment-2353</guid>
		<description>This is second time when i read your blog. This post is very nice.
Check also my blog about web development on http://albulescu.com

Regards,
Albulescu Cosmin</description>
		<content:encoded><![CDATA[<p>This is second time when i read your blog. This post is very nice.<br />
Check also my blog about web development on <a href="http://albulescu.com" rel="nofollow">http://albulescu.com</a></p>
<p>Regards,<br />
Albulescu Cosmin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Preventing the TabNavigator from changing tabs when one is clicked. by @manuelgaytan</title>
		<link>http://natescodevault.com/2008/09/30/preventing-the-tabnavigator-from-changing-tabs-when-one-is-clicked/comment-page-1/#comment-2352</link>
		<dc:creator>@manuelgaytan</dc:creator>
		<pubDate>Tue, 04 Oct 2011 22:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://nateross.wordpress.com/?p=43#comment-2352</guid>
		<description>Great! I&#039;ve lost a couple of hours before apply your implementation.</description>
		<content:encoded><![CDATA[<p>Great! I&#8217;ve lost a couple of hours before apply your implementation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Preventing the TabNavigator from changing tabs when one is clicked. by Henry Rabinowitz</title>
		<link>http://natescodevault.com/2008/09/30/preventing-the-tabnavigator-from-changing-tabs-when-one-is-clicked/comment-page-1/#comment-2255</link>
		<dc:creator>Henry Rabinowitz</dc:creator>
		<pubDate>Wed, 03 Aug 2011 23:39:55 +0000</pubDate>
		<guid isPermaLink="false">http://nateross.wordpress.com/?p=43#comment-2255</guid>
		<description>Thanks. This is very helpful.</description>
		<content:encoded><![CDATA[<p>Thanks. This is very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transmission &#8211; AIR 2 to Java Communication Layer by vikram bhatla</title>
		<link>http://natescodevault.com/2010/08/23/transmission-air-2-to-java-communication-layer/comment-page-1/#comment-2227</link>
		<dc:creator>vikram bhatla</dc:creator>
		<pubDate>Tue, 19 Jul 2011 22:57:27 +0000</pubDate>
		<guid isPermaLink="false">http://natescodevault.com/?p=258#comment-2227</guid>
		<description>Hi Nate,

Awesome Implementation. I am loving it. I have converted merapi project into Transmission project and it just took me few mins to do it.
It works like a gem.

Thanks
Vikram Bhatla</description>
		<content:encoded><![CDATA[<p>Hi Nate,</p>
<p>Awesome Implementation. I am loving it. I have converted merapi project into Transmission project and it just took me few mins to do it.<br />
It works like a gem.</p>
<p>Thanks<br />
Vikram Bhatla</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transmission &#8211; AIR 2 to Java Communication Layer by Nate</title>
		<link>http://natescodevault.com/2010/08/23/transmission-air-2-to-java-communication-layer/comment-page-1/#comment-2223</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Sat, 16 Jul 2011 04:24:22 +0000</pubDate>
		<guid isPermaLink="false">http://natescodevault.com/?p=258#comment-2223</guid>
		<description>Hi vikram, yes you can. Transmission uses the same AMF serialization libraries as Merapi, BlazeDS, etc.</description>
		<content:encoded><![CDATA[<p>Hi vikram, yes you can. Transmission uses the same AMF serialization libraries as Merapi, BlazeDS, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transmission &#8211; AIR 2 to Java Communication Layer by vikram bhatla</title>
		<link>http://natescodevault.com/2010/08/23/transmission-air-2-to-java-communication-layer/comment-page-1/#comment-2221</link>
		<dc:creator>vikram bhatla</dc:creator>
		<pubDate>Sat, 16 Jul 2011 00:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://natescodevault.com/?p=258#comment-2221</guid>
		<description>Can we do remote aliasing like we can do in Merapi.
Something like this: 
[RemoteClass(alias=&quot;com.greenplum.messages.ConfigMessage&quot; )]</description>
		<content:encoded><![CDATA[<p>Can we do remote aliasing like we can do in Merapi.<br />
Something like this:<br />
[RemoteClass(alias="com.greenplum.messages.ConfigMessage" )]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

