<?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 Paul Raff</title>
	<atom:link href="http://www.myraff.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.myraff.com</link>
	<description>The Possibilities Are Infinite</description>
	<lastBuildDate>Wed, 17 Mar 2010 20:35:07 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Publications by Alok</title>
		<link>http://www.myraff.com/about-me/publications/comment-page-1#comment-186</link>
		<dc:creator>Alok</dc:creator>
		<pubDate>Wed, 17 Mar 2010 20:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.myraff.com/?page_id=153#comment-186</guid>
		<description>Hi Paul,

I saw your presentation on fantasy basketball at the MIT Conference a couple weekends ago.  I was wondering if you have a research paper for that presentation, and if so, where I could possibly get a hold of it.  If it hasn&#039;t been written up as a formal paper, is there a chance I could get a copy of the presentation that was delivered?  I would really appreciate anything you could share with me.

Thanks,
Alok</description>
		<content:encoded><![CDATA[<p>Hi Paul,</p>
<p>I saw your presentation on fantasy basketball at the MIT Conference a couple weekends ago.  I was wondering if you have a research paper for that presentation, and if so, where I could possibly get a hold of it.  If it hasn&#8217;t been written up as a formal paper, is there a chance I could get a copy of the presentation that was delivered?  I would really appreciate anything you could share with me.</p>
<p>Thanks,<br />
Alok</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calculus Teaching Mistake: The &#8220;Generalized Chain Rule&#8221; by Jon Rogawski</title>
		<link>http://www.myraff.com/uncategorized/calculus-teaching-mistake-the-generalized-chain-rule/comment-page-1#comment-185</link>
		<dc:creator>Jon Rogawski</dc:creator>
		<pubDate>Wed, 17 Mar 2010 03:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.myraff.com/?p=166#comment-185</guid>
		<description>Paul - I agree that simpler is better, so I thought about this quite a bit. In the end, I felt it was important for students to learn to apply the Chain Rule by pure reflex for those special cases that come up repeatedly - after all, developing the right pavlovian reflexes is also part of learning mathematics. But there are no absolutes in pedagogy, and I certainly acknowledge your point (BTW, for the 2nd Edition currently in progress, I did reduce this slightly).</description>
		<content:encoded><![CDATA[<p>Paul &#8211; I agree that simpler is better, so I thought about this quite a bit. In the end, I felt it was important for students to learn to apply the Chain Rule by pure reflex for those special cases that come up repeatedly &#8211; after all, developing the right pavlovian reflexes is also part of learning mathematics. But there are no absolutes in pedagogy, and I certainly acknowledge your point (BTW, for the 2nd Edition currently in progress, I did reduce this slightly).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on When Good Websites Go Bad by Sam</title>
		<link>http://www.myraff.com/uncategorized/when-good-websites-go-bad/comment-page-1#comment-168</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 17 Feb 2010 15:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.myraff.com/?p=155#comment-168</guid>
		<description>Well Pete and Tiffany won&#039;t notice the difference!

I was kind of imagining Riff and Tiff or something like that, but I think you made better choices. Congrats again!</description>
		<content:encoded><![CDATA[<p>Well Pete and Tiffany won&#8217;t notice the difference!</p>
<p>I was kind of imagining Riff and Tiff or something like that, but I think you made better choices. Congrats again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code I always use, part 2 by Sam</title>
		<link>http://www.myraff.com/code/code-i-always-use-part-ii/comment-page-1#comment-135</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Sun, 27 Dec 2009 00:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.myraff.com/?p=133#comment-135</guid>
		<description>// CODE THAT *I* ALWAYS USE

function add_class_to_item ( class_name, item ) {
  var patt = new RegExp( &quot;\\b&quot; + class_name + &quot;\\b&quot; );
  if ( ! item.className.match( patt ) ) {
    item.className += item.className? &quot; &quot;+class_name : class_name;
  }
}
function remove_class_from_item ( class_name, item ) {
  var patt = new RegExp( &quot;\\b&quot; + class_name + &quot;\\b&quot;, &#039;g&#039; );
  item.className = item.className.replace( patt, &quot;&quot; )
    .replace( /(^\s+)&#124;(\s+$)/g, &quot;&quot; )
    .replace( /\s\s+/g, &quot; &quot; );
}</description>
		<content:encoded><![CDATA[<p>// CODE THAT *I* ALWAYS USE</p>
<p>function add_class_to_item ( class_name, item ) {<br />
  var patt = new RegExp( &#8220;\\b&#8221; + class_name + &#8220;\\b&#8221; );<br />
  if ( ! item.className.match( patt ) ) {<br />
    item.className += item.className? &#8221; &#8220;+class_name : class_name;<br />
  }<br />
}<br />
function remove_class_from_item ( class_name, item ) {<br />
  var patt = new RegExp( &#8220;\\b&#8221; + class_name + &#8220;\\b&#8221;, &#8216;g&#8217; );<br />
  item.className = item.className.replace( patt, &#8220;&#8221; )<br />
    .replace( /(^\s+)|(\s+$)/g, &#8220;&#8221; )<br />
    .replace( /\s\s+/g, &#8221; &#8221; );<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code I always use, part 2 by samuel Coskey</title>
		<link>http://www.myraff.com/code/code-i-always-use-part-ii/comment-page-1#comment-87</link>
		<dc:creator>samuel Coskey</dc:creator>
		<pubDate>Sun, 04 Oct 2009 17:24:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.myraff.com/?p=133#comment-87</guid>
		<description>I dare you to say that to my face.</description>
		<content:encoded><![CDATA[<p>I dare you to say that to my face.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code I always use, part 2 by ownbig.ru</title>
		<link>http://www.myraff.com/code/code-i-always-use-part-ii/comment-page-1#comment-85</link>
		<dc:creator>ownbig.ru</dc:creator>
		<pubDate>Wed, 30 Sep 2009 12:07:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.myraff.com/?p=133#comment-85</guid>
		<description>karate means empty hand which means to use karate only in self defence.</description>
		<content:encoded><![CDATA[<p>karate means empty hand which means to use karate only in self defence.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code I always use, part 1 by samuel Coskey</title>
		<link>http://www.myraff.com/uncategorized/code-i-always-use-part-1/comment-page-1#comment-56</link>
		<dc:creator>samuel Coskey</dc:creator>
		<pubDate>Wed, 16 Sep 2009 18:58:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.myraff.com/?p=130#comment-56</guid>
		<description>dude, i check your web site more than you do.

have you considered ditching the blog and just using the static content pages?  you could just have a page for &quot;code i always use&quot; and people could see which pages have been updated recently.</description>
		<content:encoded><![CDATA[<p>dude, i check your web site more than you do.</p>
<p>have you considered ditching the blog and just using the static content pages?  you could just have a page for &#8220;code i always use&#8221; and people could see which pages have been updated recently.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code I always use, part 1 by Sam</title>
		<link>http://www.myraff.com/uncategorized/code-i-always-use-part-1/comment-page-1#comment-52</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Thu, 10 Sep 2009 15:13:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.myraff.com/?p=130#comment-52</guid>
		<description>Also, is there some intentional irony in the fact that your motto is the same as Fujitsu&#039;s?</description>
		<content:encoded><![CDATA[<p>Also, is there some intentional irony in the fact that your motto is the same as Fujitsu&#8217;s?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code I always use, part 1 by Sam</title>
		<link>http://www.myraff.com/uncategorized/code-i-always-use-part-1/comment-page-1#comment-51</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Thu, 10 Sep 2009 15:12:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.myraff.com/?p=130#comment-51</guid>
		<description>Can you give an example of it in action?</description>
		<content:encoded><![CDATA[<p>Can you give an example of it in action?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Watch out, Billy Ver by Sam</title>
		<link>http://www.myraff.com/uncategorized/watch-out-billy-ver/comment-page-1#comment-43</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 25 Aug 2009 19:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.myraff.com/?p=124#comment-43</guid>
		<description>A different kind of crime.  A different kind of punishment.

None.

It happens a lot these days!  Good you are watching out.</description>
		<content:encoded><![CDATA[<p>A different kind of crime.  A different kind of punishment.</p>
<p>None.</p>
<p>It happens a lot these days!  Good you are watching out.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
