<?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 Jeff dePascale</title>
	<atom:link href="http://www.jeffdepascale.com/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeffdepascale.com</link>
	<description>Blogging on and developing web and mobile technologies</description>
	<lastBuildDate>Tue, 06 Dec 2011 13:20:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>Comment on HTML5 manifest mime type in grails by Thomas Ferris Nicolaisen</title>
		<link>http://www.jeffdepascale.com/index.php/general/html5-manifest-mime-type-in-grails/comment-page-1/#comment-389</link>
		<dc:creator>Thomas Ferris Nicolaisen</dc:creator>
		<pubDate>Tue, 06 Dec 2011 13:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=569#comment-389</guid>
		<description>Thanks for the tip! Really annoying how Grails just ignores that mime-type setting..</description>
		<content:encoded><![CDATA[<p>Thanks for the tip! Really annoying how Grails just ignores that mime-type setting..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dispatching custom events between child SWFs in AS3 by Andrea</title>
		<link>http://www.jeffdepascale.com/index.php/flash/dispatching-custom-events-between-child-swfs-in-as3/comment-page-1/#comment-384</link>
		<dc:creator>Andrea</dc:creator>
		<pubDate>Tue, 20 Sep 2011 18:27:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=147#comment-384</guid>
		<description>you have 2 swf. parent swf and child swf. Parent swf import your CustomEvent class, and child import CustomEvent class. When the two swf create a new istance of CustomEvent to dispatch Event, the CustomEvent class for the parent swf is not the CustomEvent class of the Child... even those look the same.

when the parent swf load the child, parent must load child CustomEvent class definition inside the loader.loaderinfo.getDefinition(CustomEvent class) , so the parent swf will dispatch custom event of the REAL CustomEvent class of the child.</description>
		<content:encoded><![CDATA[<p>you have 2 swf. parent swf and child swf. Parent swf import your CustomEvent class, and child import CustomEvent class. When the two swf create a new istance of CustomEvent to dispatch Event, the CustomEvent class for the parent swf is not the CustomEvent class of the Child&#8230; even those look the same.</p>
<p>when the parent swf load the child, parent must load child CustomEvent class definition inside the loader.loaderinfo.getDefinition(CustomEvent class) , so the parent swf will dispatch custom event of the REAL CustomEvent class of the child.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 manifest mime type in grails by rockhowse</title>
		<link>http://www.jeffdepascale.com/index.php/general/html5-manifest-mime-type-in-grails/comment-page-1/#comment-383</link>
		<dc:creator>rockhowse</dc:creator>
		<pubDate>Wed, 14 Sep 2011 19:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=569#comment-383</guid>
		<description>One more time with feeling!

&lt;mime-mapping&gt;
  &lt;extension&gt;manifest&lt;/extension&gt;
  &lt;mime-type&gt;text/cache-manifest&lt;/mime-type&gt;
&lt;/mime-mapping&gt;</description>
		<content:encoded><![CDATA[<p>One more time with feeling!</p>
<p><mime -mapping><br />
  <extension>manifest</extension><br />
  </mime><mime -type>text/cache-manifest</mime></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 manifest mime type in grails by rockhowse</title>
		<link>http://www.jeffdepascale.com/index.php/general/html5-manifest-mime-type-in-grails/comment-page-1/#comment-382</link>
		<dc:creator>rockhowse</dc:creator>
		<pubDate>Wed, 14 Sep 2011 19:51:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=569#comment-382</guid>
		<description>Hmmm formatting stripped out my tag characters... trying again:

	&lt;mime-mapping&gt; 
	    &lt;extension&gt;manifest&amp;glt;/extension&gt;
	    &lt;mime-type&gt;text/cache-manifest&lt;/mime-type&gt; 
	&lt;/mime-mapping&gt;</description>
		<content:encoded><![CDATA[<p>Hmmm formatting stripped out my tag characters&#8230; trying again:</p>
<p>	<mime -mapping><br />
	    <extension>manifest&glt;/extension><br />
	    <mime -type>text/cache-manifest</mime><br />
	</extension></mime></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 manifest mime type in grails by rockhowse</title>
		<link>http://www.jeffdepascale.com/index.php/general/html5-manifest-mime-type-in-grails/comment-page-1/#comment-381</link>
		<dc:creator>rockhowse</dc:creator>
		<pubDate>Wed, 14 Sep 2011 19:49:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=569#comment-381</guid>
		<description>I actually figured out a way to do this without having to set grails.mime.file.extensions to false

If you add the following:

	 
	    manifest
	    text/cache-manifest 
	

To the 

src/war/web.xml</description>
		<content:encoded><![CDATA[<p>I actually figured out a way to do this without having to set grails.mime.file.extensions to false</p>
<p>If you add the following:</p>
<p>	    manifest<br />
	    text/cache-manifest </p>
<p>To the </p>
<p>src/war/web.xml</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 manifest mime type in grails by rockhowse</title>
		<link>http://www.jeffdepascale.com/index.php/general/html5-manifest-mime-type-in-grails/comment-page-1/#comment-380</link>
		<dc:creator>rockhowse</dc:creator>
		<pubDate>Wed, 14 Sep 2011 18:20:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=569#comment-380</guid>
		<description>Awesome this helped greatly! The grails.mime.types setting didn&#039;t work for me either &gt;.&lt;</description>
		<content:encoded><![CDATA[<p>Awesome this helped greatly! The grails.mime.types setting didn&#8217;t work for me either >.<</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Time format from seconds in AS3 by AS3 Flash Counter Using the Timer Class and Formatting Time in Minutes &#124; Ali Qureshi&#039;s Blog</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-376</link>
		<dc:creator>AS3 Flash Counter Using the Timer Class and Formatting Time in Minutes &#124; Ali Qureshi&#039;s Blog</dc:creator>
		<pubDate>Fri, 08 Jul 2011 14:46:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-376</guid>
		<description>[...] count the seconds, I used AS3 Timer class and for formatting I found this formatTime function of Jeff Depascale and put together following Flash counter using the Timer [...]</description>
		<content:encoded><![CDATA[<p>[...] count the seconds, I used AS3 Timer class and for formatting I found this formatTime function of Jeff Depascale and put together following Flash counter using the Timer [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why the iPad&#8217;s user agent string presents a problem by Arun</title>
		<link>http://www.jeffdepascale.com/index.php/general/why-the-ipads-user-agent-string-presents-a-problem/comment-page-1/#comment-371</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Fri, 10 Jun 2011 05:10:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=452#comment-371</guid>
		<description>Well right now it doesn&#039;t much impress me since I can go full screen with Opera and it seems to be a lot quicker at the moment, although once they get this whole thing off the ground it might shoot on past much of the competition. No idea but looks very interesting.</description>
		<content:encoded><![CDATA[<p>Well right now it doesn&#8217;t much impress me since I can go full screen with Opera and it seems to be a lot quicker at the moment, although once they get this whole thing off the ground it might shoot on past much of the competition. No idea but looks very interesting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Time format from seconds in AS3 by Jeff dePascale</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-369</link>
		<dc:creator>Jeff dePascale</dc:creator>
		<pubDate>Mon, 23 May 2011 22:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-369</guid>
		<description>@jermbo:

We are working with seconds, so 3600 is equivalent to 1 hour in total seconds (60 seconds per minute * 60 minutes).

% is the modulo operator, better described here:

http://en.wikipedia.org/wiki/Modulo_operation

basically you get the remainder of a calculation. So 5%2 would be 1, since 5 divided by 2 is 2 with a remainder of 1. Hope that helps :)</description>
		<content:encoded><![CDATA[<p>@jermbo:</p>
<p>We are working with seconds, so 3600 is equivalent to 1 hour in total seconds (60 seconds per minute * 60 minutes).</p>
<p>% is the modulo operator, better described here:</p>
<p><a href="http://en.wikipedia.org/wiki/Modulo_operation" rel="nofollow">http://en.wikipedia.org/wiki/Modulo_operation</a></p>
<p>basically you get the remainder of a calculation. So 5%2 would be 1, since 5 divided by 2 is 2 with a remainder of 1. Hope that helps <img src='http://www.jeffdepascale.com/news/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Time format from seconds in AS3 by jermbo</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-368</link>
		<dc:creator>jermbo</dc:creator>
		<pubDate>Mon, 23 May 2011 20:54:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-368</guid>
		<description>this is exactly what i needed. Thank you!!

for my own understanding can you explain why you are dividing and multiplying by 3600. And what does the % do in terms of math functions.

Thank your for your time!</description>
		<content:encoded><![CDATA[<p>this is exactly what i needed. Thank you!!</p>
<p>for my own understanding can you explain why you are dividing and multiplying by 3600. And what does the % do in terms of math functions.</p>
<p>Thank your for your time!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

