<?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 Pervasive Code</title>
	<atom:link href="http://www.pervasivecode.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pervasivecode.com/blog</link>
	<description>Jamie Flournoy's Software Development Blog</description>
	<lastBuildDate>Wed, 02 Nov 2011 15:50:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Leopard GUI Crashes &#8211; Not Parallels but Canon? by john</title>
		<link>http://www.pervasivecode.com/blog/2008/02/22/leopard-gui-crashes-not-parallels-but-canon/comment-page-1/#comment-64725</link>
		<dc:creator>john</dc:creator>
		<pubDate>Wed, 02 Nov 2011 15:50:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.pervasivecode.com/blog/2008/02/22/leopard-gui-crashes-not-parallels-but-canon/#comment-64725</guid>
		<description>BJ in BJUSB probably = Bubble Jet. Had the same problems....and just deleted the kext files.</description>
		<content:encoded><![CDATA[<p>BJ in BJUSB probably = Bubble Jet. Had the same problems&#8230;.and just deleted the kext files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU Screen and my screenrc by artickl</title>
		<link>http://www.pervasivecode.com/blog/2007/06/12/gnu-screen-and-my-screenrc/comment-page-1/#comment-61268</link>
		<dc:creator>artickl</dc:creator>
		<pubDate>Tue, 04 Oct 2011 16:40:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.pervasivecode.com/blog/2007/06/12/gnu-screen-and-my-screenrc/#comment-61268</guid>
		<description>Some times it&#039;s nice to split windows:

you can make it by:

screen -t &quot;Screen 1&quot;
stuff &quot;some command^M&quot;
split
focus
screen -t &quot;Screen 2&quot;
stuff &quot;Some command^M&quot;
split
focus
screen -t &quot;Screen 3&quot;
stuff &quot;Some command^M&quot;
split
focus
screen -t &quot;Screen 4&quot;
stuff &quot;Some command^M&quot;</description>
		<content:encoded><![CDATA[<p>Some times it&#8217;s nice to split windows:</p>
<p>you can make it by:</p>
<p>screen -t &#8220;Screen 1&#8243;<br />
stuff &#8220;some command^M&#8221;<br />
split<br />
focus<br />
screen -t &#8220;Screen 2&#8243;<br />
stuff &#8220;Some command^M&#8221;<br />
split<br />
focus<br />
screen -t &#8220;Screen 3&#8243;<br />
stuff &#8220;Some command^M&#8221;<br />
split<br />
focus<br />
screen -t &#8220;Screen 4&#8243;<br />
stuff &#8220;Some command^M&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silencing pointless reverse DNS warnings from OpenSSH by Ravi</title>
		<link>http://www.pervasivecode.com/blog/2008/05/22/silencing-pointless-reverse-dns-warnings-from-openssh/comment-page-1/#comment-60317</link>
		<dc:creator>Ravi</dc:creator>
		<pubDate>Fri, 23 Sep 2011 01:11:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.pervasivecode.com/blog/2008/05/22/silencing-pointless-reverse-dns-warnings-from-openssh/#comment-60317</guid>
		<description>Comment &quot;UsePAM no&quot; in sshd_conf. It works</description>
		<content:encoded><![CDATA[<p>Comment &#8220;UsePAM no&#8221; in sshd_conf. It works</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unix tip: kill -STOP and kill -CONT by Robert Harder</title>
		<link>http://www.pervasivecode.com/blog/2010/04/03/unix-tip-kill-stop-and-kill-cont/comment-page-1/#comment-57037</link>
		<dc:creator>Robert Harder</dc:creator>
		<pubDate>Mon, 08 Aug 2011 17:27:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.pervasivecode.com/blog/?p=194#comment-57037</guid>
		<description>Gotta love STOP and CONT! I made some &lt;a href=&quot;http://blog.iharder.net/2011/03/17/bash-profile-sharing-and-useful-scripts/trackback/&quot; rel=&quot;nofollow&quot;&gt;simple bash functions&lt;/a&gt; to help me out, so I can type something like &quot;stop firefox&quot; at the prompt.

&lt;pre&gt;
# &quot;stop&quot; a process
stop(){
  if [ $# -ne 1 ]; then
          echo 1&gt;&amp;2 Usage: stop process
  else
    PROCESS=$1
    echo &quot;Stopping processes with the word ${tGreen}$1${tReset}&quot;
    ps axw &#124; grep -i $1 &#124; awk -v PROC=&quot;$1&quot; &#039;{print $1}&#039; &#124; xargs kill -STOP
  fi
}

# &quot;cont&quot;inue a process
cont(){
  if [ $# -ne 1 ]; then
          echo 1&gt;&amp;2 Usage: cont process
  else
    PROCESS=$1
    echo &quot;Continuing processes with the word ${tGreen}$1${tReset}&quot;
    ps axw &#124; grep -i $1 &#124; awk -v PROC=&quot;$1&quot; &#039;{print $1}&#039; &#124; xargs kill -CONT
  fi
}&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>Gotta love STOP and CONT! I made some <a href="http://blog.iharder.net/2011/03/17/bash-profile-sharing-and-useful-scripts/trackback/" rel="nofollow">simple bash functions</a> to help me out, so I can type something like &#8220;stop firefox&#8221; at the prompt.</p>
<pre>
# "stop" a process
stop(){
  if [ $# -ne 1 ]; then
          echo 1&gt;&amp;2 Usage: stop process
  else
    PROCESS=$1
    echo "Stopping processes with the word ${tGreen}$1${tReset}"
    ps axw | grep -i $1 | awk -v PROC="$1" '{print $1}' | xargs kill -STOP
  fi
}

# "cont"inue a process
cont(){
  if [ $# -ne 1 ]; then
          echo 1&gt;&amp;2 Usage: cont process
  else
    PROCESS=$1
    echo "Continuing processes with the word ${tGreen}$1${tReset}"
    ps axw | grep -i $1 | awk -v PROC="$1" '{print $1}' | xargs kill -CONT
  fi
}</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking rake:stats to get gross LOC by wargo</title>
		<link>http://www.pervasivecode.com/blog/2007/06/28/hacking-rakestats-to-get-gross-loc/comment-page-1/#comment-53027</link>
		<dc:creator>wargo</dc:creator>
		<pubDate>Thu, 23 Jun 2011 13:22:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.pervasivecode.com/blog/2007/06/28/hacking-rakestats-to-get-gross-loc/#comment-53027</guid>
		<description>Thanks for this post!! 

For solve this problem:
such file to load — code_statistics

You need:
require &#039;rails/code_statistics&#039;

Or you can use: 
https://github.com/rails/rails/blob/master/railties/lib/rails/tasks/statistics.rake</description>
		<content:encoded><![CDATA[<p>Thanks for this post!! </p>
<p>For solve this problem:<br />
such file to load — code_statistics</p>
<p>You need:<br />
require &#8216;rails/code_statistics&#8217;</p>
<p>Or you can use:<br />
<a href="https://github.com/rails/rails/blob/master/railties/lib/rails/tasks/statistics.rake" rel="nofollow">https://github.com/rails/rails/blob/master/railties/lib/rails/tasks/statistics.rake</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to make Machinist and Autotest coexist by Ivan</title>
		<link>http://www.pervasivecode.com/blog/2010/03/23/how-to-make-machinist-and-autotest-coexis/comment-page-1/#comment-49422</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Fri, 13 May 2011 20:04:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.pervasivecode.com/blog/?p=189#comment-49422</guid>
		<description>Thanks a lot :) That helped me out.</description>
		<content:encoded><![CDATA[<p>Thanks a lot :) That helped me out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recommended mount options for ext3 by language parallax &#187; Blog Archive &#187; Reporting with MongoDB</title>
		<link>http://www.pervasivecode.com/blog/2008/05/15/recommended-mount-options-for-ext3/comment-page-1/#comment-48864</link>
		<dc:creator>language parallax &#187; Blog Archive &#187; Reporting with MongoDB</dc:creator>
		<pubDate>Mon, 02 May 2011 05:37:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.pervasivecode.com/blog/2008/05/15/recommended-mount-options-for-ext3/#comment-48864</guid>
		<description>[...] today I turned off atime updates on the ebs volume that I had run the load test on. This was purely loads &#8212; no mapreduce was [...]</description>
		<content:encoded><![CDATA[<p>[...] today I turned off atime updates on the ebs volume that I had run the load test on. This was purely loads &#8212; no mapreduce was [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making Rcov measure your whole Rails app, even if tests miss entire source files by Correcting your rcov report for untested code &#124; theAdmin</title>
		<link>http://www.pervasivecode.com/blog/2008/05/16/making-rcov-measure-your-whole-rails-app-even-if-tests-miss-entire-source-files/comment-page-1/#comment-48585</link>
		<dc:creator>Correcting your rcov report for untested code &#124; theAdmin</dc:creator>
		<pubDate>Tue, 26 Apr 2011 23:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.pervasivecode.com/blog/2008/05/16/making-rcov-measure-your-whole-rails-app-even-if-tests-miss-entire-source-files/#comment-48585</guid>
		<description>[...] searching, I&#8217;ve found a post by Jamie Flournoy that had a simple chunk of code to require all Ruby files when rcov is run. I&#8217;ve adapted it [...]</description>
		<content:encoded><![CDATA[<p>[...] searching, I&#8217;ve found a post by Jamie Flournoy that had a simple chunk of code to require all Ruby files when rcov is run. I&#8217;ve adapted it [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking rake:stats to get gross LOC by Jamie Flournoy</title>
		<link>http://www.pervasivecode.com/blog/2007/06/28/hacking-rakestats-to-get-gross-loc/comment-page-1/#comment-43988</link>
		<dc:creator>Jamie Flournoy</dc:creator>
		<pubDate>Fri, 11 Feb 2011 12:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.pervasivecode.com/blog/2007/06/28/hacking-rakestats-to-get-gross-loc/#comment-43988</guid>
		<description>CodeStatistics is part of Rails so it&#039;s probably a matter of &quot;require&quot;-ing the right stuff in the top of your Rakefile. Mine looks like this:
&lt;code&gt;require &#039;rake&#039;
require &#039;rake/testtask&#039;
require &#039;rake/rdoctask&#039;
require &#039;tasks/rails&#039;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>CodeStatistics is part of Rails so it&#8217;s probably a matter of &#8220;require&#8221;-ing the right stuff in the top of your Rakefile. Mine looks like this:<br />
<code>require 'rake'<br />
require 'rake/testtask'<br />
require 'rake/rdoctask'<br />
require 'tasks/rails'</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making SELinux allow a nonstandard MySQL port number on Centos 5.1 by Duc Ng</title>
		<link>http://www.pervasivecode.com/blog/2008/03/29/making-selinux-allow-a-nonstandard-mysql-port-number-on-centos-51/comment-page-1/#comment-43878</link>
		<dc:creator>Duc Ng</dc:creator>
		<pubDate>Thu, 10 Feb 2011 06:03:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.pervasivecode.com/blog/2008/03/29/making-selinux-allow-a-nonstandard-mysql-port-number-on-centos-51/#comment-43878</guid>
		<description>Thanks a lot. You saved me hours :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot. You saved me hours :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

