<?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 Over It.</title>
	<atom:link href="http://jason.diamond.name/weblog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jason.diamond.name/weblog</link>
	<description>(a Weblog by Jason Diamond)</description>
	<lastBuildDate>Fri, 28 May 2010 18:56:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Selecting element content with Vim by Jason Diamond</title>
		<link>http://jason.diamond.name/weblog/2010/05/27/selecting-element-content-with-vim/comment-page-1/#comment-336</link>
		<dc:creator>Jason Diamond</dc:creator>
		<pubDate>Fri, 28 May 2010 18:56:29 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=99#comment-336</guid>
		<description>Hi Jan. After I posted my tip, I found myself using ci&#039; and ci(. Don&#039;t know how I lived withot them before.

I just skimmed through the first dozen slides of the talk you linked and I can tell I&#039;ll learn a lot from it. Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Jan. After I posted my tip, I found myself using ci&#8217; and ci(. Don&#8217;t know how I lived withot them before.</p>
<p>I just skimmed through the first dozen slides of the talk you linked and I can tell I&#8217;ll learn a lot from it. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Selecting element content with Vim by Jan!</title>
		<link>http://jason.diamond.name/weblog/2010/05/27/selecting-element-content-with-vim/comment-page-1/#comment-335</link>
		<dc:creator>Jan!</dc:creator>
		<pubDate>Fri, 28 May 2010 09:28:10 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=99#comment-335</guid>
		<description>Ah, yes. Good old inner/outer motions. As a quick reminder, use &lt;code&gt;cat&lt;/code&gt; to change everything including the opening and closing tag (&quot;outerHTML&quot;, anyone?), &lt;code&gt;vit&lt;/code&gt; to select the inner contents, &lt;code&gt;yit&lt;/code&gt; to copy the contents, etc.

The motions also work for quotes (&lt;code&gt;ci&quot;&lt;/code&gt;) and the like.

I learned a lot from &quot;VIM for PHP programers&quot;: http://zmievski.org/2007/02/vim-for-php-programmers-slides-and-resources – it is not limited to PHP.</description>
		<content:encoded><![CDATA[<p>Ah, yes. Good old inner/outer motions. As a quick reminder, use <code>cat</code> to change everything including the opening and closing tag (&#8220;outerHTML&#8221;, anyone?), <code>vit</code> to select the inner contents, <code>yit</code> to copy the contents, etc.</p>
<p>The motions also work for quotes (<code>ci"</code>) and the like.</p>
<p>I learned a lot from &#8220;VIM for PHP programers&#8221;: <a href="http://zmievski.org/2007/02/vim-for-php-programmers-slides-and-resources" rel="nofollow">http://zmievski.org/2007/02/vim-for-php-programmers-slides-and-resources</a> – it is not limited to PHP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Verifying JavaScript with JSLint and Visual Studio by Andrew Johns</title>
		<link>http://jason.diamond.name/weblog/2008/08/09/verifying-javascript-with-jslint-and-visual-studio/comment-page-1/#comment-332</link>
		<dc:creator>Andrew Johns</dc:creator>
		<pubDate>Thu, 15 Apr 2010 12:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=55#comment-332</guid>
		<description>Have you seen the JSLint.VS addin for VS2008?

it provides a dialog window for settings, and can integrate with the build process, but unfortunately it&#039;s not very stable and not being supported by the developer any more.

It&#039;s a shame because it can run the tool against multiple files by combining them all into one temp file before  pushing it to jslint, which can identify errors that might creep in when attempting to combine and minify your js, so well worth it.</description>
		<content:encoded><![CDATA[<p>Have you seen the JSLint.VS addin for VS2008?</p>
<p>it provides a dialog window for settings, and can integrate with the build process, but unfortunately it&#8217;s not very stable and not being supported by the developer any more.</p>
<p>It&#8217;s a shame because it can run the tool against multiple files by combining them all into one temp file before  pushing it to jslint, which can identify errors that might creep in when attempting to combine and minify your js, so well worth it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resurrecting Old Posts by otakucode</title>
		<link>http://jason.diamond.name/weblog/2009/09/09/resurrecting-old-posts/comment-page-1/#comment-330</link>
		<dc:creator>otakucode</dc:creator>
		<pubDate>Sat, 10 Apr 2010 03:53:27 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=58#comment-330</guid>
		<description>Actually, I stumbled across your site because I was searching to see if anyone had any code out there, preferably in C#, that involved parsing the IMDB data files they make available on their FTP site.  It seems that you indeed had an article about this awhile back, using LINQ to do it.  I&#039;m interested to see how you used LINQ and how you dealt with some of the files with horrendous formatting (movies.list is giving me a headache trying to come up with a regex that fits the dozens of different formats they mash all together).

The original URL for the entry was apparently:
http://jason.diamond.name/weblog/2008/09/07/processing-text-files-with-linq</description>
		<content:encoded><![CDATA[<p>Actually, I stumbled across your site because I was searching to see if anyone had any code out there, preferably in C#, that involved parsing the IMDB data files they make available on their FTP site.  It seems that you indeed had an article about this awhile back, using LINQ to do it.  I&#8217;m interested to see how you used LINQ and how you dealt with some of the files with horrendous formatting (movies.list is giving me a headache trying to come up with a regex that fits the dozens of different formats they mash all together).</p>
<p>The original URL for the entry was apparently:<br />
<a href="http://jason.diamond.name/weblog/2008/09/07/processing-text-files-with-linq" rel="nofollow">http://jason.diamond.name/weblog/2008/09/07/processing-text-files-with-linq</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RogueSharp by Jim Lehmer</title>
		<link>http://jason.diamond.name/weblog/2010/02/15/roguesharp/comment-page-1/#comment-320</link>
		<dc:creator>Jim Lehmer</dc:creator>
		<pubDate>Fri, 12 Mar 2010 18:27:33 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=86#comment-320</guid>
		<description>That makes me want to port Colossal Cave Adventure (the original adventure game - http://en.wikipedia.org/wiki/Adventure_(computer_game). Lots of ports for it (http://www.wurb.com/if/game/1), but none in C#! :o)</description>
		<content:encoded><![CDATA[<p>That makes me want to port Colossal Cave Adventure (the original adventure game &#8211; <a href="http://en.wikipedia.org/wiki/Adventure_(computer_game)" rel="nofollow">http://en.wikipedia.org/wiki/Adventure_(computer_game)</a>. Lots of ports for it (<a href="http://www.wurb.com/if/game/1" rel="nofollow">http://www.wurb.com/if/game/1</a>), but none in C#! <img src='http://jason.diamond.name/weblog/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One-line lazy initialization by Eber</title>
		<link>http://jason.diamond.name/weblog/2010/02/23/one-line-lazy-initialization/comment-page-1/#comment-309</link>
		<dc:creator>Eber</dc:creator>
		<pubDate>Thu, 25 Feb 2010 16:50:57 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=91#comment-309</guid>
		<description>I use that all the time, even for non-expensive objects</description>
		<content:encoded><![CDATA[<p>I use that all the time, even for non-expensive objects</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One-line lazy initialization by Jan!</title>
		<link>http://jason.diamond.name/weblog/2010/02/23/one-line-lazy-initialization/comment-page-1/#comment-308</link>
		<dc:creator>Jan!</dc:creator>
		<pubDate>Wed, 24 Feb 2010 07:24:54 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=91#comment-308</guid>
		<description>No, seems perfectly clear to me.</description>
		<content:encoded><![CDATA[<p>No, seems perfectly clear to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Splitting CamelCase With Regular Expressions by James Smith</title>
		<link>http://jason.diamond.name/weblog/2009/08/15/splitting-camelcase-with-regular-expressions/comment-page-1/#comment-289</link>
		<dc:creator>James Smith</dc:creator>
		<pubDate>Wed, 04 Nov 2009 15:48:56 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=27#comment-289</guid>
		<description>Your thinking about camelCasing and PascalCasing is correct.  If Wikipedia (the mother of non-authoritative sources) contradicts that, then, QED, it&#039;s incorrect.  See Microsoft for official definitions (camelCase/PascalCasing).

Please do not corrupt the world by waffling.  camelCase is camelCase and PascalCase is PascalCase.</description>
		<content:encoded><![CDATA[<p>Your thinking about camelCasing and PascalCasing is correct.  If Wikipedia (the mother of non-authoritative sources) contradicts that, then, QED, it&#8217;s incorrect.  See Microsoft for official definitions (camelCase/PascalCasing).</p>
<p>Please do not corrupt the world by waffling.  camelCase is camelCase and PascalCase is PascalCase.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Verifying JavaScript with JSLint and Visual Studio by Ranjith Venkatesh</title>
		<link>http://jason.diamond.name/weblog/2008/08/09/verifying-javascript-with-jslint-and-visual-studio/comment-page-1/#comment-288</link>
		<dc:creator>Ranjith Venkatesh</dc:creator>
		<pubDate>Mon, 02 Nov 2009 16:48:35 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=55#comment-288</guid>
		<description>I was able to run it with one file. Once I open another file, it does pick up the new file but gives the results for the first file. Anything I am missing here?</description>
		<content:encoded><![CDATA[<p>I was able to run it with one file. Once I open another file, it does pick up the new file but gives the results for the first file. Anything I am missing here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AutoRunner by Jason Diamond</title>
		<link>http://jason.diamond.name/weblog/2009/09/27/autorunner/comment-page-1/#comment-199</link>
		<dc:creator>Jason Diamond</dc:creator>
		<pubDate>Tue, 29 Sep 2009 04:14:57 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=66#comment-199</guid>
		<description>Thanks Brian. Hope it&#039;s useful to you!</description>
		<content:encoded><![CDATA[<p>Thanks Brian. Hope it&#8217;s useful to you!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
