<?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 The Original Jelani Harris</title>
	<atom:link href="http://jelaniharris.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jelaniharris.com</link>
	<description>The original website of Jelani Harris the original of course</description>
	<lastBuildDate>Tue, 10 Apr 2012 22:25:04 +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 Adding a delay to JQuery Functions by Francisco A.</title>
		<link>http://jelaniharris.com/2008/adding-a-delay-to-jquery-functions/comment-page-1/#comment-472</link>
		<dc:creator>Francisco A.</dc:creator>
		<pubDate>Tue, 10 Apr 2012 22:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://jelaniharris.com/?p=14#comment-472</guid>
		<description>Excellent, worked like a charm!</description>
		<content:encoded><![CDATA[<p>Excellent, worked like a charm!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding a delay to JQuery Functions by Harry R</title>
		<link>http://jelaniharris.com/2008/adding-a-delay-to-jquery-functions/comment-page-1/#comment-444</link>
		<dc:creator>Harry R</dc:creator>
		<pubDate>Mon, 12 Mar 2012 17:13:22 +0000</pubDate>
		<guid isPermaLink="false">http://jelaniharris.com/?p=14#comment-444</guid>
		<description>Thank you for this - it sure helped a ton, and I appreciate your making it available.

HLR</description>
		<content:encoded><![CDATA[<p>Thank you for this &#8211; it sure helped a ton, and I appreciate your making it available.</p>
<p>HLR</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to install Paperclip in Rails 3 by Richard Lewis</title>
		<link>http://jelaniharris.com/2011/how-to-install-paperclip-in-rails-3/comment-page-1/#comment-430</link>
		<dc:creator>Richard Lewis</dc:creator>
		<pubDate>Tue, 28 Feb 2012 21:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://jelaniharris.com/?p=210#comment-430</guid>
		<description>hi again

I have got the browse icon to appear and can select a file to upload, but how do i actually upload this? there is no action to upload this file to the database???</description>
		<content:encoded><![CDATA[<p>hi again</p>
<p>I have got the browse icon to appear and can select a file to upload, but how do i actually upload this? there is no action to upload this file to the database???</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to install Paperclip in Rails 3 by Richard Lewis</title>
		<link>http://jelaniharris.com/2011/how-to-install-paperclip-in-rails-3/comment-page-1/#comment-429</link>
		<dc:creator>Richard Lewis</dc:creator>
		<pubDate>Tue, 28 Feb 2012 20:30:37 +0000</pubDate>
		<guid isPermaLink="false">http://jelaniharris.com/?p=210#comment-429</guid>
		<description>Hi

Nice tutorial, was wondering if you could help me. My model is called upload so have changed the form_for &#039;author&#039; to &#039;upload&#039;... However the form does not show on the page... Any ideas?

Also when putting in the code for image_tag i get undefined method avatar? Any help greatly appreciated</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Nice tutorial, was wondering if you could help me. My model is called upload so have changed the form_for &#8216;author&#8217; to &#8216;upload&#8217;&#8230; However the form does not show on the page&#8230; Any ideas?</p>
<p>Also when putting in the code for image_tag i get undefined method avatar? Any help greatly appreciated</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Jquery to disable the enter key by Rafael Albani</title>
		<link>http://jelaniharris.com/2010/using-jquery-to-disable-the-enter-key/comment-page-1/#comment-423</link>
		<dc:creator>Rafael Albani</dc:creator>
		<pubDate>Wed, 08 Feb 2012 16:37:15 +0000</pubDate>
		<guid isPermaLink="false">http://jelaniharris.com/?p=38#comment-423</guid>
		<description>Thank you, i searching for a long time for this.</description>
		<content:encoded><![CDATA[<p>Thank you, i searching for a long time for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Jquery to disable the enter key by David</title>
		<link>http://jelaniharris.com/2010/using-jquery-to-disable-the-enter-key/comment-page-1/#comment-419</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 01 Feb 2012 12:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://jelaniharris.com/?p=38#comment-419</guid>
		<description>Thanks, that was driving me nuts trying to solve.</description>
		<content:encoded><![CDATA[<p>Thanks, that was driving me nuts trying to solve.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Case-insensitive replaceAll in Java by tchrist</title>
		<link>http://jelaniharris.com/2009/case-insensitive-replaceall-in-java/comment-page-1/#comment-397</link>
		<dc:creator>tchrist</dc:creator>
		<pubDate>Sun, 06 Nov 2011 16:07:08 +0000</pubDate>
		<guid isPermaLink="false">http://jelaniharris.com/?p=67#comment-397</guid>
		<description>Incredible thought it may seem, Java defaults to only understanding ASCII; it ignores its own native charcter set. So you always need to add &quot;(?u)&quot; to make case insensitivity work on normal Java text, which is Unicode not ASCII.  

Also, if you expect things like \w to work on regular Java text, you need to add &quot;(?U)&quot;, which isn&#039;t even supported until Java J.

 In short, you normally want &quot;(?iu)&quot; for case insensitivity, and you want &quot;(?U)&quot; for the UNICODE_CHARCLASSES flag. 

Note that this is still only the simplistic kind of case insensitivity as provided by the Character class, not full casemappings such as provided by the String class. That will be ok for Spanish and Portuguese, but not for German or Greek.</description>
		<content:encoded><![CDATA[<p>Incredible thought it may seem, Java defaults to only understanding ASCII; it ignores its own native charcter set. So you always need to add &#8220;(?u)&#8221; to make case insensitivity work on normal Java text, which is Unicode not ASCII.  </p>
<p>Also, if you expect things like \w to work on regular Java text, you need to add &#8220;(?U)&#8221;, which isn&#8217;t even supported until Java J.</p>
<p> In short, you normally want &#8220;(?iu)&#8221; for case insensitivity, and you want &#8220;(?U)&#8221; for the UNICODE_CHARCLASSES flag. </p>
<p>Note that this is still only the simplistic kind of case insensitivity as provided by the Character class, not full casemappings such as provided by the String class. That will be ok for Spanish and Portuguese, but not for German or Greek.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Ruby on Rails 3 in Windows by kalyan</title>
		<link>http://jelaniharris.com/2011/installing-ruby-on-rails-3-in-windows/comment-page-1/#comment-380</link>
		<dc:creator>kalyan</dc:creator>
		<pubDate>Thu, 15 Sep 2011 06:38:19 +0000</pubDate>
		<guid isPermaLink="false">http://jelaniharris.com/?p=189#comment-380</guid>
		<description>Thank u very much it helped me a lot .</description>
		<content:encoded><![CDATA[<p>Thank u very much it helped me a lot .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Jquery to disable the enter key by Niko</title>
		<link>http://jelaniharris.com/2010/using-jquery-to-disable-the-enter-key/comment-page-1/#comment-376</link>
		<dc:creator>Niko</dc:creator>
		<pubDate>Tue, 30 Aug 2011 11:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://jelaniharris.com/?p=38#comment-376</guid>
		<description>Just what I was looking for. Thank you!</description>
		<content:encoded><![CDATA[<p>Just what I was looking for. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Case-insensitive replaceAll in Java by deb</title>
		<link>http://jelaniharris.com/2009/case-insensitive-replaceall-in-java/comment-page-1/#comment-366</link>
		<dc:creator>deb</dc:creator>
		<pubDate>Tue, 26 Jul 2011 09:53:52 +0000</pubDate>
		<guid isPermaLink="false">http://jelaniharris.com/?p=67#comment-366</guid>
		<description>Thanks buddy, 
it was a great help to me. Searching for something like that 
for many hours. Finally ur site helps.

Thanks again, keep up the good work.</description>
		<content:encoded><![CDATA[<p>Thanks buddy,<br />
it was a great help to me. Searching for something like that<br />
for many hours. Finally ur site helps.</p>
<p>Thanks again, keep up the good work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

