<?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 Niall's Weblog</title>
	<atom:link href="http://niallohiggins.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://niallohiggins.com</link>
	<description>The website of Niall O'Higgins: A few, immature words</description>
	<lastBuildDate>Tue, 09 Mar 2010 12:15:30 +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 Python and poor documentation &#8211; urllib2.urlopen() exception layering problems by Mridang Agarwalla</title>
		<link>http://niallohiggins.com/2008/04/05/python-and-poor-documentation-urllib2urlopen-exception-layering-problems/comment-page-1/#comment-903</link>
		<dc:creator>Mridang Agarwalla</dc:creator>
		<pubDate>Tue, 09 Mar 2010 12:15:30 +0000</pubDate>
		<guid isPermaLink="false">http://niallohiggins.com/2008/04/05/python-and-poor-documentation-urllib2urlopen-exception-layering-problems/#comment-903</guid>
		<description>I&#039;m facing the same problem. I could only find the URLError and the HTTPError in the urllib2 documentation. They should add more exlicit instructions.</description>
		<content:encoded><![CDATA[<p>I&#8217;m facing the same problem. I could only find the URLError and the HTTPError in the urllib2 documentation. They should add more exlicit instructions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook apps in Python and Pylons part 2 by Colin</title>
		<link>http://niallohiggins.com/2008/11/22/facebook-apps-in-python-and-pylons-part-2/comment-page-1/#comment-897</link>
		<dc:creator>Colin</dc:creator>
		<pubDate>Thu, 25 Feb 2010 12:06:55 +0000</pubDate>
		<guid isPermaLink="false">http://niallohiggins.com/?p=178#comment-897</guid>
		<description>I replaced the &quot;if not fb.check_session(request)...&quot; line with:

    if not fb.check_session(request):
        if not fb.auth_token:

I don&#039;t know why that works and the other doesn&#039;t - perhaps there&#039;s something lazy going on as it evaluates the &#039;or&#039;.</description>
		<content:encoded><![CDATA[<p>I replaced the &#8220;if not fb.check_session(request)&#8230;&#8221; line with:</p>
<p>    if not fb.check_session(request):<br />
        if not fb.auth_token:</p>
<p>I don&#8217;t know why that works and the other doesn&#8217;t &#8211; perhaps there&#8217;s something lazy going on as it evaluates the &#8216;or&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tmux, a BSD alternative to GNU Screen by Jim</title>
		<link>http://niallohiggins.com/2009/06/04/tmux-a-bsd-alternative-to-gnu-screen/comment-page-1/#comment-896</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Wed, 24 Feb 2010 23:57:30 +0000</pubDate>
		<guid isPermaLink="false">http://niallohiggins.com/?p=543#comment-896</guid>
		<description>Second the use of C-z for prefix key (C-z z is easy to type) and I also use C-q and C-s at times (flow control is practically useless these days).

Plus, if you&#039;re using job control that much, you&#039;re doing it wrong.  That&#039;s what screen/tmux is for!</description>
		<content:encoded><![CDATA[<p>Second the use of C-z for prefix key (C-z z is easy to type) and I also use C-q and C-s at times (flow control is practically useless these days).</p>
<p>Plus, if you&#8217;re using job control that much, you&#8217;re doing it wrong.  That&#8217;s what screen/tmux is for!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tmux, a BSD alternative to GNU Screen by Vedat</title>
		<link>http://niallohiggins.com/2009/06/04/tmux-a-bsd-alternative-to-gnu-screen/comment-page-1/#comment-895</link>
		<dc:creator>Vedat</dc:creator>
		<pubDate>Thu, 18 Feb 2010 12:26:09 +0000</pubDate>
		<guid isPermaLink="false">http://niallohiggins.com/?p=543#comment-895</guid>
		<description>I&#039;ve also spent quite a bit of time trying to choose an unused and easily accessible escape key. My final choice is Ctrl-l. The only time I use it is when my screen is messed up, and I want to redraw it, but it doesn&#039;t occur often enough, so pressing &quot;ctrl-l l&quot; is not a big problem for me.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve also spent quite a bit of time trying to choose an unused and easily accessible escape key. My final choice is Ctrl-l. The only time I use it is when my screen is messed up, and I want to redraw it, but it doesn&#8217;t occur often enough, so pressing &#8220;ctrl-l l&#8221; is not a big problem for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tmux, a BSD alternative to GNU Screen by Paul</title>
		<link>http://niallohiggins.com/2009/06/04/tmux-a-bsd-alternative-to-gnu-screen/comment-page-1/#comment-884</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 12 Feb 2010 02:30:48 +0000</pubDate>
		<guid isPermaLink="false">http://niallohiggins.com/?p=543#comment-884</guid>
		<description>Vince: Like Ramkumar, I use C-z as my escape.  I make heavy use of job control, but haven&#039;t found that hitting &#039;C-z z&#039; is particularly more inconvenient than a plain &#039;C-z&#039;.  (Unlike C-a, which is flat-out awful if one is used to emacs-style navigation.)</description>
		<content:encoded><![CDATA[<p>Vince: Like Ramkumar, I use C-z as my escape.  I make heavy use of job control, but haven&#8217;t found that hitting &#8216;C-z z&#8217; is particularly more inconvenient than a plain &#8216;C-z&#8217;.  (Unlike C-a, which is flat-out awful if one is used to emacs-style navigation.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tmux, a BSD alternative to GNU Screen by Vincent Stemen</title>
		<link>http://niallohiggins.com/2009/06/04/tmux-a-bsd-alternative-to-gnu-screen/comment-page-1/#comment-883</link>
		<dc:creator>Vincent Stemen</dc:creator>
		<pubDate>Thu, 11 Feb 2010 18:55:07 +0000</pubDate>
		<guid isPermaLink="false">http://niallohiggins.com/?p=543#comment-883</guid>
		<description>Arghh!  I specified ctrl with angle brackets and
it stripped them out as tags.  
I meant C-p and C-n.</description>
		<content:encoded><![CDATA[<p>Arghh!  I specified ctrl with angle brackets and<br />
it stripped them out as tags.<br />
I meant C-p and C-n.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tmux, a BSD alternative to GNU Screen by Vincent Stemen</title>
		<link>http://niallohiggins.com/2009/06/04/tmux-a-bsd-alternative-to-gnu-screen/comment-page-1/#comment-882</link>
		<dc:creator>Vincent Stemen</dc:creator>
		<pubDate>Thu, 11 Feb 2010 18:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://niallohiggins.com/?p=543#comment-882</guid>
		<description>Nope.  p and n are used extensively.
They go to the previous and next line in both emacs
and in normal mode in vi, they go forward and 
backward in the history in emacs editing mode of the
shell, and, most importantly, they perform string 
completion in insert mode (similar to  in bash 
and zsh) in vim for matching strings before or after
the current cursor position.</description>
		<content:encoded><![CDATA[<p>Nope.  p and n are used extensively.<br />
They go to the previous and next line in both emacs<br />
and in normal mode in vi, they go forward and<br />
backward in the history in emacs editing mode of the<br />
shell, and, most importantly, they perform string<br />
completion in insert mode (similar to  in bash<br />
and zsh) in vim for matching strings before or after<br />
the current cursor position.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tmux, a BSD alternative to GNU Screen by mark bill</title>
		<link>http://niallohiggins.com/2009/06/04/tmux-a-bsd-alternative-to-gnu-screen/comment-page-1/#comment-880</link>
		<dc:creator>mark bill</dc:creator>
		<pubDate>Thu, 11 Feb 2010 13:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://niallohiggins.com/?p=543#comment-880</guid>
		<description>ctrl-P

easy to press and AFAIK unassigned anywhere.</description>
		<content:encoded><![CDATA[<p>ctrl-P</p>
<p>easy to press and AFAIK unassigned anywhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using OpenBSD&#8217;s OpenSMTPd for Email by LIAR</title>
		<link>http://niallohiggins.com/2009/10/31/using-openbsds-opensmtpd-for-email/comment-page-1/#comment-874</link>
		<dc:creator>LIAR</dc:creator>
		<pubDate>Fri, 29 Jan 2010 09:03:08 +0000</pubDate>
		<guid isPermaLink="false">http://niallohiggins.com/?p=635#comment-874</guid>
		<description>Olá,

Thanks for the post, it helped me understanding the basics of OpenSMTPd works (even if the man pages already are very explicit).

I&#039;ve just a little question about you sentence: 
&quot;My ISP (sonic.net) doesn’t let me use port 25, so I have to relay to their SMTP server to send mail&quot;

In my case, it is exactly the converse: I can&#039;t use anything else than port 25. It seems that OpenSMTPd cannot be configured to use no crypto. Am I right?</description>
		<content:encoded><![CDATA[<p>Olá,</p>
<p>Thanks for the post, it helped me understanding the basics of OpenSMTPd works (even if the man pages already are very explicit).</p>
<p>I&#8217;ve just a little question about you sentence:<br />
&#8220;My ISP (sonic.net) doesn’t let me use port 25, so I have to relay to their SMTP server to send mail&#8221;</p>
<p>In my case, it is exactly the converse: I can&#8217;t use anything else than port 25. It seems that OpenSMTPd cannot be configured to use no crypto. Am I right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tmux, a BSD alternative to GNU Screen by Vince</title>
		<link>http://niallohiggins.com/2009/06/04/tmux-a-bsd-alternative-to-gnu-screen/comment-page-1/#comment-812</link>
		<dc:creator>Vince</dc:creator>
		<pubDate>Wed, 30 Dec 2009 00:30:59 +0000</pubDate>
		<guid isPermaLink="false">http://niallohiggins.com/?p=543#comment-812</guid>
		<description>C-z is a terrible choice.  Apparently you never use Berkeley
job control.  I use C-z *all the time* to suspend my current
process, do something else, and then &quot;fg&quot; to resume.  The
problem is that most of the control keys are used by one
application or another.  I have been using screen on BSD and
am about to try tmux.  C-a has been a minor inconvenience,
because of it being the emacs beginning of line command,
although I am primarily a vim user.  C-b is the emacs
command to move the cursor back one character and the vi
command to go scroll back a page.  Although, there are
alternatives, such as the arrow keys for those functions, so
C-b probably would be less of an inconvenience for me than
C-a has been. 


Perhaps an ALT key, such as M-s (s for screen controls),
M-a, or M-b would be a good choice.</description>
		<content:encoded><![CDATA[<p>C-z is a terrible choice.  Apparently you never use Berkeley<br />
job control.  I use C-z *all the time* to suspend my current<br />
process, do something else, and then &#8220;fg&#8221; to resume.  The<br />
problem is that most of the control keys are used by one<br />
application or another.  I have been using screen on BSD and<br />
am about to try tmux.  C-a has been a minor inconvenience,<br />
because of it being the emacs beginning of line command,<br />
although I am primarily a vim user.  C-b is the emacs<br />
command to move the cursor back one character and the vi<br />
command to go scroll back a page.  Although, there are<br />
alternatives, such as the arrow keys for those functions, so<br />
C-b probably would be less of an inconvenience for me than<br />
C-a has been. </p>
<p>Perhaps an ALT key, such as M-s (s for screen controls),<br />
M-a, or M-b would be a good choice.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
