<?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 FlexOOP</title>
	<atom:link href="http://flexoop.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexoop.com</link>
	<description>Flex, AIR, ColdFusion, and everything in between</description>
	<lastBuildDate>Tue, 16 Jun 2009 04:05:10 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Flex Date Utils &#8211; daysInYear, isLeapYear by Junaid Abbasi</title>
		<link>http://flexoop.com/2009/01/flex-date-utils-daysinyear-isleapyear/comment-page-1/#comment-640</link>
		<dc:creator>Junaid Abbasi</dc:creator>
		<pubDate>Tue, 16 Jun 2009 04:05:10 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=129#comment-640</guid>
		<description>Hi Gareth,

In your DateUtils.dateDiff(&quot;date&quot;, startDate, endDate) method, it returns -1 if startDate has a time component &gt; endDate&#039;s time component. It should return 0 if startDate is greater by &lt; 24 hrs.

-Junaid.</description>
		<content:encoded><![CDATA[<p>Hi Gareth,</p>
<p>In your DateUtils.dateDiff(&#8221;date&#8221;, startDate, endDate) method, it returns -1 if startDate has a time component &gt; endDate&#8217;s time component. It should return 0 if startDate is greater by &lt; 24 hrs.</p>
<p>-Junaid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dedupe ArrayCollection Component by Austin</title>
		<link>http://flexoop.com/2008/11/dedupe-arraycollection-component/comment-page-1/#comment-637</link>
		<dc:creator>Austin</dc:creator>
		<pubDate>Sun, 14 Jun 2009 18:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://flexfusion.archfamily.com/?p=52#comment-637</guid>
		<description>Thanks a lot for this post. Works great.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this post. Works great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Subclipse 1.6 changes highlight and comment colors in CFEclipse by Traesw</title>
		<link>http://flexoop.com/2009/04/subclipse-16-changes-highlight-and-comment-colors-in-cfeclipse/comment-page-1/#comment-632</link>
		<dc:creator>Traesw</dc:creator>
		<pubDate>Sat, 13 Jun 2009 03:03:23 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=164#comment-632</guid>
		<description>Thanks for the tip!!! This was driving me nuts as well.</description>
		<content:encoded><![CDATA[<p>Thanks for the tip!!! This was driving me nuts as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dedupe ArrayCollection Component by Derrick Anderson</title>
		<link>http://flexoop.com/2008/11/dedupe-arraycollection-component/comment-page-1/#comment-627</link>
		<dc:creator>Derrick Anderson</dc:creator>
		<pubDate>Thu, 11 Jun 2009 14:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://flexfusion.archfamily.com/?p=52#comment-627</guid>
		<description>very handy function, well done!</description>
		<content:encoded><![CDATA[<p>very handy function, well done!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex Date Utils &#8211; daysInYear, isLeapYear by Gareth</title>
		<link>http://flexoop.com/2009/01/flex-date-utils-daysinyear-isleapyear/comment-page-1/#comment-623</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Wed, 10 Jun 2009 19:43:10 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=129#comment-623</guid>
		<description>Actually, there is a standard for this which I did not know about.  After doing a little more research, I will be updating this to use the standard (which appears to be documented very well &lt;a href=&quot;http://en.wikipedia.org/wiki/ISO_week_date&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;).  Thanks for bringing this to my attention.  I&#039;ll make an blog update when I&#039;ve made the changes.</description>
		<content:encoded><![CDATA[<p>Actually, there is a standard for this which I did not know about.  After doing a little more research, I will be updating this to use the standard (which appears to be documented very well <a href="http://en.wikipedia.org/wiki/ISO_week_date" target="_blank" rel="nofollow">here</a>).  Thanks for bringing this to my attention.  I&#8217;ll make an blog update when I&#8217;ve made the changes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex Date Utils &#8211; daysInYear, isLeapYear by Tom</title>
		<link>http://flexoop.com/2009/01/flex-date-utils-daysinyear-isleapyear/comment-page-1/#comment-621</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Tue, 09 Jun 2009 09:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=129#comment-621</guid>
		<description>Just downloaded your sources, which sadly don&#039;t work for me. Your implementation for weekOfYear is too simplistic. You can&#039;t just divide the day of the year by 7 and return that as the week.

A proper implementation would use something like a &#039;minimal-days-in-first-week&#039; value (which is four in Germany) to figure out when the first week of the year starts, and when the last week ends. 

For example, the 29-Dec-2008 is in week 01/2009, and the 29-Dec-2009 is in week 53/2009. Note the year difference in the first example.

Cheers
Tom</description>
		<content:encoded><![CDATA[<p>Just downloaded your sources, which sadly don&#8217;t work for me. Your implementation for weekOfYear is too simplistic. You can&#8217;t just divide the day of the year by 7 and return that as the week.</p>
<p>A proper implementation would use something like a &#8216;minimal-days-in-first-week&#8217; value (which is four in Germany) to figure out when the first week of the year starts, and when the last week ends. </p>
<p>For example, the 29-Dec-2008 is in week 01/2009, and the 29-Dec-2009 is in week 53/2009. Note the year difference in the first example.</p>
<p>Cheers<br />
Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Subclipse 1.6 changes highlight and comment colors in CFEclipse by Byron Sorrells</title>
		<link>http://flexoop.com/2009/04/subclipse-16-changes-highlight-and-comment-colors-in-cfeclipse/comment-page-1/#comment-620</link>
		<dc:creator>Byron Sorrells</dc:creator>
		<pubDate>Tue, 02 Jun 2009 14:15:35 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=164#comment-620</guid>
		<description>Thanks.  I&#039;m also OCD and it was driving me nuts.</description>
		<content:encoded><![CDATA[<p>Thanks.  I&#8217;m also OCD and it was driving me nuts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Little Background by Gareth</title>
		<link>http://flexoop.com/2008/04/a-little-background/comment-page-1/#comment-604</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Tue, 05 May 2009 02:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://flexability.archfamily.com/?p=3#comment-604</guid>
		<description>Thank you for your comments and for reading the blog.  It&#039;s definitely difficult to respond to your post when you don&#039;t leave a valid e-mail address or name though.  Any comments that are posted come through to my e-mail address, so I do get notification that you have posted something.  I will certainly consider adding a &quot;contact me&quot; section to allow people to send me e-mail through regular methods though.

I created this blog as a means for people to get assistance with problems they may have, and for helping me to remember instances where I was having difficulties, and did not (and really &lt;em&gt;still&lt;/em&gt; do not) see a huge reason for posting my resume online.  I&#039;m hoping that the code I post is helpful to others and perhaps, if I did need to search for a job, would be helpful in allowing employers to determine my skill level rather than relying solely on a resume.  My name (Gareth Arch) is added to each comment I post.

Once again, thanks for reading, and feel free to add your e-mail address next time...I won&#039;t spam you I promise :)</description>
		<content:encoded><![CDATA[<p>Thank you for your comments and for reading the blog.  It&#8217;s definitely difficult to respond to your post when you don&#8217;t leave a valid e-mail address or name though.  Any comments that are posted come through to my e-mail address, so I do get notification that you have posted something.  I will certainly consider adding a &#8220;contact me&#8221; section to allow people to send me e-mail through regular methods though.</p>
<p>I created this blog as a means for people to get assistance with problems they may have, and for helping me to remember instances where I was having difficulties, and did not (and really <em>still</em> do not) see a huge reason for posting my resume online.  I&#8217;m hoping that the code I post is helpful to others and perhaps, if I did need to search for a job, would be helpful in allowing employers to determine my skill level rather than relying solely on a resume.  My name (Gareth Arch) is added to each comment I post.</p>
<p>Once again, thanks for reading, and feel free to add your e-mail address next time&#8230;I won&#8217;t spam you I promise <img src='http://flexoop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Little Background by mysterious like you</title>
		<link>http://flexoop.com/2008/04/a-little-background/comment-page-1/#comment-603</link>
		<dc:creator>mysterious like you</dc:creator>
		<pubDate>Mon, 04 May 2009 22:47:54 +0000</pubDate>
		<guid isPermaLink="false">http://flexability.archfamily.com/?p=3#comment-603</guid>
		<description>Are you leaving your resume and your name off these pages on purpose? I like reading your blog but it&#039;s kind of a bummer when you don&#039;t know the persons name.</description>
		<content:encoded><![CDATA[<p>Are you leaving your resume and your name off these pages on purpose? I like reading your blog but it&#8217;s kind of a bummer when you don&#8217;t know the persons name.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex Date Utils &#8211; DateDiff fix by Prabh Singh</title>
		<link>http://flexoop.com/2008/12/flex-date-utils-datediff-fix/comment-page-1/#comment-602</link>
		<dc:creator>Prabh Singh</dc:creator>
		<pubDate>Mon, 04 May 2009 15:33:58 +0000</pubDate>
		<guid isPermaLink="false">http://flexoop.com/?p=110#comment-602</guid>
		<description>Oh, ok that explains it. Thanks for the reply and the awesome util. Makes life so much simpler. :)</description>
		<content:encoded><![CDATA[<p>Oh, ok that explains it. Thanks for the reply and the awesome util. Makes life so much simpler. <img src='http://flexoop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
