<?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 try all your chance</title>
	<atom:link href="http://blog.pclewis.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pclewis.com</link>
	<description>nerdy stuff about computers and hacking</description>
	<lastBuildDate>Wed, 01 May 2013 22:12:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Analysis of Gemini Cybernetics CDS by The Facts About Copybot In Second Life &#124; Krypton Radio</title>
		<link>http://blog.pclewis.com/2010/03/analysis-of-gemini-cybernetics-cds/comment-page-1/#comment-28471</link>
		<dc:creator>The Facts About Copybot In Second Life &#124; Krypton Radio</dc:creator>
		<pubDate>Wed, 01 May 2013 22:12:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pclewis.com/?p=260#comment-28471</guid>
		<description><![CDATA[[...] must digress for a moment to mention Gemini Cybernetics&#8217; CDS, or &#8217; Client Detection Service &#8216;.  This acts as a shared ban pool for users detected by the system to be using known [...]]]></description>
		<content:encoded><![CDATA[<p>[...] must digress for a moment to mention Gemini Cybernetics&#8217; CDS, or &#8217; Client Detection Service &#8216;.  This acts as a shared ban pool for users detected by the system to be using known [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Analysis of Gemini Cybernetics CDS by Gemini CDS Ban Relay: Conclusions &#124; Mona Eberhardt</title>
		<link>http://blog.pclewis.com/2010/03/analysis-of-gemini-cybernetics-cds/comment-page-1/#comment-28447</link>
		<dc:creator>Gemini CDS Ban Relay: Conclusions &#124; Mona Eberhardt</dc:creator>
		<pubDate>Wed, 01 May 2013 10:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pclewis.com/?p=260#comment-28447</guid>
		<description><![CDATA[[...] isn&#8217;t &#8220;private&#8221;. Then comes an issue mentioned in the post you gave me with the technical analysis of what the Gemini CDS Ban Relay does. It [...]]]></description>
		<content:encoded><![CDATA[<p>[...] isn&#8217;t &#8220;private&#8221;. Then comes an issue mentioned in the post you gave me with the technical analysis of what the Gemini CDS Ban Relay does. It [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Streaming Nokia N900 Camera to VLC by B3bis</title>
		<link>http://blog.pclewis.com/2010/02/streaming-nokia-n900-camera-to-vlc/comment-page-1/#comment-25366</link>
		<dc:creator>B3bis</dc:creator>
		<pubDate>Thu, 07 Mar 2013 00:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pclewis.com/?p=244#comment-25366</guid>
		<description><![CDATA[From all the codecs which would be the best quality. I cannot manage to get mp4v working. Only the h264.]]></description>
		<content:encoded><![CDATA[<p>From all the codecs which would be the best quality. I cannot manage to get mp4v working. Only the h264.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Analysis of Gemini Cybernetics CDS by slutrix</title>
		<link>http://blog.pclewis.com/2010/03/analysis-of-gemini-cybernetics-cds/comment-page-1/#comment-24136</link>
		<dc:creator>slutrix</dc:creator>
		<pubDate>Mon, 11 Feb 2013 10:31:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pclewis.com/?p=260#comment-24136</guid>
		<description><![CDATA[The developer of the Gemini CDS Ban Relay was involved in the Emerald viewer scandal.]]></description>
		<content:encoded><![CDATA[<p>The developer of the Gemini CDS Ban Relay was involved in the Emerald viewer scandal.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TIP: Make bash tab completion ignore .svn directories by pcl</title>
		<link>http://blog.pclewis.com/2010/03/tip-make-bash-tab-completion-ignore-svn-directories/comment-page-1/#comment-22366</link>
		<dc:creator>pcl</dc:creator>
		<pubDate>Fri, 11 Jan 2013 22:45:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pclewis.com/?p=253#comment-22366</guid>
		<description><![CDATA[I noticed a Stack Overflow post where some other people were seeing a similar discrepancy (http://stackoverflow.com/questions/2225976/ignore-a-path-entry-with-bash-tab-completion), so I glanced at the source and I think I see the source of the confusion:

[c firstline=&quot;2533&quot; wraplines=&quot;false&quot; title=&quot;bashline.c&quot;]static int
name_is_acceptable (name)
     const char *name;
{
  struct ign *p;
  int nlen;

  for (nlen = strlen (name), p = fignore.ignores; p-&gt;val; p++)
    {
      if (nlen &gt; p-&gt;len &amp;&amp; p-&gt;len &gt; 0 &amp;&amp; STREQ (p-&gt;val, &amp;name[nlen - p-&gt;len]))
        return (0);
    }

  return (1);
}[/c]

Note that the length of the path being checked must be greater than the length of the item in FIGNORE. So FIGNORE=.svn will not reject an entry that is just .svn

The catch is that leading path components are considered as part of the name. Example:
&lt;code&gt;% ls &lt;tab&gt;
Breakpoint 1, name_is_acceptable (name=0x71d510 &quot;.svn&quot;) at bashline.c:2536&lt;/code&gt;

&lt;code&gt;% ls ./&lt;tab&gt;
Breakpoint 1, name_is_acceptable (name=0x73dcb0 &quot;./.svn&quot;) at bashline.c:2536&lt;/code&gt;

So, FIGNORE=.svn will only ignore the directory .svn when there are leading path components.]]></description>
		<content:encoded><![CDATA[<p>I noticed a Stack Overflow post where some other people were seeing a similar discrepancy (<a href="http://stackoverflow.com/questions/2225976/ignore-a-path-entry-with-bash-tab-completion" rel="nofollow">http://stackoverflow.com/questions/2225976/ignore-a-path-entry-with-bash-tab-completion</a>), so I glanced at the source and I think I see the source of the confusion:</p>
<pre class="brush: cpp; first-line: 2533; title: bashline.c; wrap-lines: false; notranslate">static int
name_is_acceptable (name)
     const char *name;
{
  struct ign *p;
  int nlen;

  for (nlen = strlen (name), p = fignore.ignores; p-&gt;val; p++)
    {
      if (nlen &gt; p-&gt;len &amp;&amp; p-&gt;len &gt; 0 &amp;&amp; STREQ (p-&gt;val, &amp;name[nlen - p-&gt;len]))
        return (0);
    }

  return (1);
}</pre>
<p>Note that the length of the path being checked must be greater than the length of the item in FIGNORE. So FIGNORE=.svn will not reject an entry that is just .svn</p>
<p>The catch is that leading path components are considered as part of the name. Example:<br />
<code>% ls &lt;tab&gt;<br />
Breakpoint 1, name_is_acceptable (name=0x71d510 ".svn") at bashline.c:2536</code></p>
<p><code>% ls ./&lt;tab&gt;<br />
Breakpoint 1, name_is_acceptable (name=0x73dcb0 "./.svn") at bashline.c:2536</code></p>
<p>So, FIGNORE=.svn will only ignore the directory .svn when there are leading path components.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TIP: Make bash tab completion ignore .svn directories by pcl</title>
		<link>http://blog.pclewis.com/2010/03/tip-make-bash-tab-completion-ignore-svn-directories/comment-page-1/#comment-22351</link>
		<dc:creator>pcl</dc:creator>
		<pubDate>Fri, 11 Jan 2013 16:47:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pclewis.com/?p=253#comment-22351</guid>
		<description><![CDATA[If you leave the dot off it will ignore anything that ends with svn.
&lt;code&gt;% ls ./&lt;tab&gt;
hisvn/    svn/      .svn/     svn-test/ test/     test-svn/

% export FIGNORE=svn 
% ls ./&lt;tab&gt;
svn-test/ test/
&lt;/code&gt;
]]></description>
		<content:encoded><![CDATA[<p>If you leave the dot off it will ignore anything that ends with svn.<br />
<code>% ls ./&lt;tab&gt;<br />
hisvn/    svn/      .svn/     svn-test/ test/     test-svn/</p>
<p>% export FIGNORE=svn<br />
% ls ./&lt;tab&gt;<br />
svn-test/ test/<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TIP: Make bash tab completion ignore .svn directories by Tim</title>
		<link>http://blog.pclewis.com/2010/03/tip-make-bash-tab-completion-ignore-svn-directories/comment-page-1/#comment-22350</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 11 Jan 2013 16:32:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pclewis.com/?p=253#comment-22350</guid>
		<description><![CDATA[Actually it should be export FIGNORE=svn (the dot is already implied)]]></description>
		<content:encoded><![CDATA[<p>Actually it should be export FIGNORE=svn (the dot is already implied)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Analysis of Gemini Cybernetics CDS by Gemini CDS Ban Relay: Conclusions &#124; slutrix&#039;s Virtual World of Desires</title>
		<link>http://blog.pclewis.com/2010/03/analysis-of-gemini-cybernetics-cds/comment-page-1/#comment-20643</link>
		<dc:creator>Gemini CDS Ban Relay: Conclusions &#124; slutrix&#039;s Virtual World of Desires</dc:creator>
		<pubDate>Mon, 03 Dec 2012 13:07:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pclewis.com/?p=260#comment-20643</guid>
		<description><![CDATA[[...] isn&#8217;t &#8220;private&#8221;. Then comes an issue mentioned in the post you gave me with the technical analysis of what the Gemini CDS Ban Relay does. It [...]]]></description>
		<content:encoded><![CDATA[<p>[...] isn&#8217;t &#8220;private&#8221;. Then comes an issue mentioned in the post you gave me with the technical analysis of what the Gemini CDS Ban Relay does. It [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Dangers of Shared Hosting by Confidential F-Visa communities &#124; F-Pats</title>
		<link>http://blog.pclewis.com/2010/01/the-dangers-of-shared-hosting/comment-page-1/#comment-13471</link>
		<dc:creator>Confidential F-Visa communities &#124; F-Pats</dc:creator>
		<pubDate>Mon, 18 Jun 2012 02:12:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pclewis.com/?p=95#comment-13471</guid>
		<description><![CDATA[[...] For the record, shared is bad. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] For the record, shared is bad. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TIP: Make bash tab completion ignore .svn directories by Tomek</title>
		<link>http://blog.pclewis.com/2010/03/tip-make-bash-tab-completion-ignore-svn-directories/comment-page-1/#comment-10163</link>
		<dc:creator>Tomek</dc:creator>
		<pubDate>Wed, 11 Apr 2012 10:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pclewis.com/?p=253#comment-10163</guid>
		<description><![CDATA[thanks! this makes my life much easier]]></description>
		<content:encoded><![CDATA[<p>thanks! this makes my life much easier</p>
]]></content:encoded>
	</item>
</channel>
</rss>
