<?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 &#187; migrated from old</title>
	<atom:link href="http://node.to/wordpress/category/migrated-from-old/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>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>
		<item>
		<title>Introducing: Business Engineering, the evolution of Business Intelligence</title>
		<link>http://node.to/wordpress/2010/02/11/introducing-business-engineering-the-evolution-of-business-intelligence/</link>
		<comments>http://node.to/wordpress/2010/02/11/introducing-business-engineering-the-evolution-of-business-intelligence/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 02:33:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[migrated from old]]></category>

		<guid isPermaLink="false">http://node.to/wordpress/?p=27</guid>
		<description><![CDATA[Define intelligence:

Intelligence is a characteristic of thinking, but it is also a thing to be acquired. This substance is different than information. Intelligence is information that has been discovered, processed, and presented in a way that encourages its other definition: disciplined, insightful thinking.
Define engineering:

Engineering is the deliberate, analytical, scientific application of intelligence to the design [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Define intelligence:<br />
</strong><br />
Intelligence is a characteristic of thinking, but it is also a thing to be acquired. This substance is different than information. Intelligence is information that has been discovered, processed, and presented in a way that encourages its other definition: disciplined, insightful thinking.</p>
<p><strong>Define engineering:<br />
</strong><br />
Engineering is the deliberate, analytical, scientific application of intelligence to the design or modification of a system.</p>
<p>Most data floated as Business Intelligence is more accurately labeled business information. It becomes the substance Business Intelligence when superior tools expose patterns and trends that are actionable.</p>
<p>Business Engineering is the practice of managing decisions based on critical analysis of  intelligence about internal and external factors influencing the business.</p>
<p>RescueTime allows businesses to tweak the previously hidden algorithms that drive productivity of workforces. Data is scientifically gathered, and innovatively processed and presented in real time.</p>
<p>Businesses can re-balance work loads, uncover inefficiencies, and identify stalled or unusually successful projects while they are happening. Smart managers can introduce a measure of science into management itself: easily visualized historical information exposes trends one week to the next. Try several workflow processes, prove which one works best for each team.</p>
]]></content:encoded>
			<wfw:commentRss>http://node.to/wordpress/2010/02/11/introducing-business-engineering-the-evolution-of-business-intelligence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby for are these chars in this string&#8230;</title>
		<link>http://node.to/wordpress/2010/02/11/ruby-for-are-these-chars-in-this-string/</link>
		<comments>http://node.to/wordpress/2010/02/11/ruby-for-are-these-chars-in-this-string/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 02:32:57 +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/?p=25</guid>
		<description><![CDATA[I find myself wanting to know if the characters in one string are in another.
For example, if you have a key space for a string key name, making sure the provided key is valid.

  require 'set'
  def chars_subset_of? checkme, inme
    checkme.split(//).to_set.subset? inme.split(//).to_set
  end

You could also toss this inside class [...]]]></description>
			<content:encoded><![CDATA[<p>I find myself wanting to know if the characters in one string are in another.<br />
For example, if you have a key space for a string key name, making sure the provided key is valid.</p>
<p><code><br />
  require 'set'<br />
  def chars_subset_of? checkme, inme<br />
    checkme.split(//).to_set.subset? inme.split(//).to_set<br />
  end<br />
</code></p>
<p>You could also toss this inside class String to dynamically add the method</p>
<p><code><br />
  require 'set'<br />
  def chars_subset_of? other_string<br />
    if other_string.class == String<br />
      self.split(//).to_set.subset? other_string.split(//).to_set<br />
    else # just try<br />
      self.split(//).to_set.subset? other_string.to_set<br />
    end<br />
  end<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://node.to/wordpress/2010/02/11/ruby-for-are-these-chars-in-this-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

