<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>node.to</title>
	<atom:link href="http://node.to/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://node.to/wordpress</link>
	<description>work outside the frame</description>
	<lastBuildDate>Mon, 19 Sep 2011 14:12:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A simple example to help understand Python decorators</title>
		<link>http://node.to/wordpress/2011/09/19/a-simple-example-to-help-understand-python-decorators/</link>
		<comments>http://node.to/wordpress/2011/09/19/a-simple-example-to-help-understand-python-decorators/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 14:10:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://node.to/wordpress/?p=48</guid>
		<description><![CDATA[I thought this might help people better visualize what happens where and when in Python decorators.
Note: for some reason pastie.org adds an extra &#8220;@&#8221; for the @decorator_name syntax. Don&#8217;t know what to do about it.

]]></description>
			<content:encoded><![CDATA[<p>I thought this might help people better visualize what happens where and when in Python decorators.<br />
Note: for some reason pastie.org adds an extra &#8220;@&#8221; for the @decorator_name syntax. Don&#8217;t know what to do about it.</p>
<p><script src='http://pastie.org/2557702.js'></script></p>
]]></content:encoded>
			<wfw:commentRss>http://node.to/wordpress/2011/09/19/a-simple-example-to-help-understand-python-decorators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google voice comedy</title>
		<link>http://node.to/wordpress/2010/08/18/google-voice-comedy/</link>
		<comments>http://node.to/wordpress/2010/08/18/google-voice-comedy/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 13:31:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://node.to/wordpress/?p=43</guid>
		<description><![CDATA[Yea for Google Voice transcription:
Another funny one (2010-11-17 from Jeld-Wen window company):
&#8220;&#8221;"
Hello 3, hey baby, but. Hello. Hey, you do require that. Yeah for the walmart, hey HI This is. The three fifths that okay bye to drive or what 60. Drive, Hi, Thomas. Hello.
&#8220;&#8221;"
Hmm, that was supposed to be about scheduling a technicians visit.
&#8220;&#8221;"
Hey [...]]]></description>
			<content:encoded><![CDATA[<p>Yea for Google Voice transcription:<br />
Another funny one (2010-11-17 from Jeld-Wen window company):<br />
&#8220;&#8221;"<br />
Hello 3, hey baby, but. Hello. Hey, you do require that. Yeah for the walmart, hey HI This is. The three fifths that okay bye to drive or what 60. Drive, Hi, Thomas. Hello.<br />
&#8220;&#8221;"<br />
Hmm, that was supposed to be about scheduling a technicians visit.</p>
<p>&#8220;&#8221;"<br />
Hey Matt, I was gonna miss you get a real i guess it up. Maybe tomorrow. This letter tiny bit on hold because al bridge. Uncle in law, so awful ever while helping him do some work at the house yesterday and apparently, so I signed my resume but he said he&#8217;s totally OK, and the valve Richard worry about it anymore. But I&#8217;ll put shows what&#8217;s up, so short, we&#8217;re probably still gonna go and officially you&#8217;re You&#8217;re welcome. And because this is. That&#8217;s my fault for we&#8217;ll see you bye.<br />
&#8220;&#8221;"</p>
]]></content:encoded>
			<wfw:commentRss>http://node.to/wordpress/2010/08/18/google-voice-comedy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shell trick: track new tcp connections per second in Linux</title>
		<link>http://node.to/wordpress/2010/02/11/shell-trick-track-new-tcp-connections-per-second-in-linux/</link>
		<comments>http://node.to/wordpress/2010/02/11/shell-trick-track-new-tcp-connections-per-second-in-linux/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 02:35:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code or systems]]></category>
		<category><![CDATA[migrated from old]]></category>

		<guid isPermaLink="false">http://node.to/wordpress/2010/02/11/shell-trick-track-new-tcp-connections-per-second-in-linux/</guid>
		<description><![CDATA[
This little snippet is for when you want to see new active connections per second, not concurrent established, as most tools show you:


C=0; while true; do echo "new connections: $C"; c1=`netstat -s -t&#124;grep "active connections openings"&#124;awk '{print $1;}'`; sleep 1; c2=`netstat -s -t&#124;grep "active connections openings"&#124;awk '{print $1;}'`; C=`expr $c2 - $c1` ; done

Enjoy!
]]></description>
			<content:encoded><![CDATA[<p>
This little snippet is for when you want to see <b>new</b> active connections per second, not concurrent established, as most tools show you:
</p>
<p><code><br />
C=0; while true; do echo "new connections: $C"; c1=`netstat -s -t|grep "active connections openings"|awk '{print $1;}'`; sleep 1; c2=`netstat -s -t|grep "active connections openings"|awk '{print $1;}'`; C=`expr $c2 - $c1` ; done<br />
</code></p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://node.to/wordpress/2010/02/11/shell-trick-track-new-tcp-connections-per-second-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

