<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>i, rouble</title>
	<atom:link href="http://irouble.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://irouble.com</link>
	<description></description>
	<pubDate>Mon, 11 Aug 2008 21:03:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>in the summer time&#8230;</title>
		<link>http://irouble.com/2008/07/23/in-the-summer-time/</link>
		<comments>http://irouble.com/2008/07/23/in-the-summer-time/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 21:01:26 +0000</pubDate>
		<dc:creator>rouble</dc:creator>
		
		<category><![CDATA[chat]]></category>

		<guid isPermaLink="false">http://irouble.com/?p=7</guid>
		<description><![CDATA[Chatting with my little cousin
rouble: do you have summer holidays right now?
~*T: no
rouble:  when do you have summer holidays?
~*T: in summer
~*T: lolzzzzz
]]></description>
			<content:encoded><![CDATA[<p>Chatting with my little cousin</p>
<p><strong>rouble:</strong> do you have summer holidays right now?<br />
<strong>~*T:</strong> no<br />
<strong>rouble: </strong> when do you have summer holidays?<br />
<strong>~*T:</strong> in summer<br />
<strong>~*T:</strong> lolzzzzz</p>
]]></content:encoded>
			<wfw:commentRss>http://irouble.com/2008/07/23/in-the-summer-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>broken pipe</title>
		<link>http://irouble.com/2008/05/06/broken-pipe/</link>
		<comments>http://irouble.com/2008/05/06/broken-pipe/#comments</comments>
		<pubDate>Tue, 06 May 2008 18:36:57 +0000</pubDate>
		<dc:creator>rouble</dc:creator>
		
		<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://irouble.com/?p=6</guid>
		<description><![CDATA[if you try to send() (or sendto()) on a unix/linux socket that has been closed from the remote side, your application will get a SIGPIPE. if you do not explicitly handle a SIGPIPE, your application will exit, and you may see &#8216;Broken Pipe&#8217; printed to STDERR.
You can add code to handle (read: ignore) a SIGPIPE [...]]]></description>
			<content:encoded><![CDATA[<p>if you try to send() (or sendto()) on a unix/linux socket that has been closed from the remote side, your application will get a SIGPIPE. if you do not explicitly handle a SIGPIPE, your application will exit, and you may see &#8216;Broken Pipe&#8217; printed to STDERR.</p>
<p>You can add code to handle (read: ignore) a SIGPIPE as follows:</p>
<p><code><br />
if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) {<br />
    perror("sigpipe error");<br />
    exit(0);<br />
}</code></p>
<p>Now, when you send() (or sendto()) on a socket that has been remotely closed you should get a -1 return, with errno set to 32 (EPIPE).</p>
]]></content:encoded>
			<wfw:commentRss>http://irouble.com/2008/05/06/broken-pipe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>no core generated</title>
		<link>http://irouble.com/2008/05/02/no-core-generated/</link>
		<comments>http://irouble.com/2008/05/02/no-core-generated/#comments</comments>
		<pubDate>Fri, 02 May 2008 15:52:11 +0000</pubDate>
		<dc:creator>rouble</dc:creator>
		
		<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://irouble.com/?p=5</guid>
		<description><![CDATA[Your /etc/profile might have a line like this:
# No core files by default
ulimit -S -c 0 &#62; /dev/null 2>&#038;1
&#8216;-c 0&#8242; means that core file are to be of size 0. that is, there will be no core files.
This can be fixed by typing:
$ulimit -c unlimited
Note that this fix only works for the terminal that line [...]]]></description>
			<content:encoded><![CDATA[<p>Your /etc/profile might have a line like this:</p>
<p><code># No core files by default<br />
ulimit -S -c 0 &gt; /dev/null 2>&#038;1</code></p>
<p>&#8216;-c 0&#8242; means that core file are to be of size 0. that is, there will be no core files.</p>
<p>This can be fixed by typing:</p>
<p><code>$ulimit -c unlimited</code></p>
<p>Note that this fix only works for the terminal that line is typed in.</p>
]]></content:encoded>
			<wfw:commentRss>http://irouble.com/2008/05/02/no-core-generated/feed/</wfw:commentRss>
		</item>
		<item>
		<title>removing a file descriptor from a poll set</title>
		<link>http://irouble.com/2008/05/02/removing-a-file-descriptor-from-a-poll-set/</link>
		<comments>http://irouble.com/2008/05/02/removing-a-file-descriptor-from-a-poll-set/#comments</comments>
		<pubDate>Fri, 02 May 2008 15:38:00 +0000</pubDate>
		<dc:creator>rouble</dc:creator>
		
		<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://irouble.com/?p=4</guid>
		<description><![CDATA[If the fd member of a struct pollfd in the array passed to poll() is set to −1, it will be ignored.
]]></description>
			<content:encoded><![CDATA[<p>If the fd member of a struct pollfd in the array passed to poll() is set to −1, it will be ignored.</p>
]]></content:encoded>
			<wfw:commentRss>http://irouble.com/2008/05/02/removing-a-file-descriptor-from-a-poll-set/feed/</wfw:commentRss>
		</item>
		<item>
		<title>unlimited bash history</title>
		<link>http://irouble.com/2008/04/23/unlimited-bash-history/</link>
		<comments>http://irouble.com/2008/04/23/unlimited-bash-history/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 22:05:28 +0000</pubDate>
		<dc:creator>rouble</dc:creator>
		
		<category><![CDATA[geek]]></category>

		<category><![CDATA[bash geek]]></category>

		<guid isPermaLink="false">http://irouble.com/?p=3</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://irouble.com/2008/04/23/unlimited-bash-history/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
