<?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 StaticNAT</title>
	<atom:link href="http://www.staticnat.com/WP/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.staticnat.com/WP</link>
	<description>static (INSIDE,OUTSIDE) 127.0.01 127.0.0.1 netmask 255.255.255.255</description>
	<lastBuildDate>Thu, 17 Nov 2011 23:44:31 -0500</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Storage Wars the Epic Battle Rages On by Josh</title>
		<link>http://www.staticnat.com/WP/2011/07/03/storage-wars-the-epic-battle-rages-on/comment-page-1/#comment-27615</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Thu, 17 Nov 2011 23:44:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.staticnat.com/WP/?p=479#comment-27615</guid>
		<description>As far as I am concerned that is the problem.  IT &quot;professionals&quot; impede the uptake of new better technology and keep legacy tech festering in organizations long after it should have died.  This type of IT fails everyone especially the people paying the bills.  Zealots have a huge impact but very little real value.</description>
		<content:encoded><![CDATA[<p>As far as I am concerned that is the problem.  IT &#8220;professionals&#8221; impede the uptake of new better technology and keep legacy tech festering in organizations long after it should have died.  This type of IT fails everyone especially the people paying the bills.  Zealots have a huge impact but very little real value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storage Wars the Epic Battle Rages On by John Martin</title>
		<link>http://www.staticnat.com/WP/2011/07/03/storage-wars-the-epic-battle-rages-on/comment-page-1/#comment-27572</link>
		<dc:creator>John Martin</dc:creator>
		<pubDate>Sun, 13 Nov 2011 06:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.staticnat.com/WP/?p=479#comment-27572</guid>
		<description>

From a storage weenie&#039;s perspective, one of the things that FCoE has that&#039;s attractive is that it allows you to keep at least a small portion of the network away from the so called &quot;Network team&quot;, none of whom actually understand the absolute requirement for a massively overengineered non-blocking interconnect with no oversubscription and completely lossless layer-2 without which the world of the storage administrator as we know it will ultimately end.

You will pry the last Fibre Channel switch away from the storage team from their cold dead hands.

</description>
		<content:encoded><![CDATA[<p>From a storage weenie&#8217;s perspective, one of the things that FCoE has that&#8217;s attractive is that it allows you to keep at least a small portion of the network away from the so called &#8220;Network team&#8221;, none of whom actually understand the absolute requirement for a massively overengineered non-blocking interconnect with no oversubscription and completely lossless layer-2 without which the world of the storage administrator as we know it will ultimately end.</p>
<p>You will pry the last Fibre Channel switch away from the storage team from their cold dead hands.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cacti on Ubuntu 7.04, 8 steps to the a flexible and functional setup. by www.interflu.net &#187; ubuntu 8.04 Server Üzerine cacti kurulumu</title>
		<link>http://www.staticnat.com/WP/2007/05/09/cacti-on-ubuntu-704-8-steps-to-the-a-flexible-and-functional-setup/comment-page-1/#comment-27103</link>
		<dc:creator>www.interflu.net &#187; ubuntu 8.04 Server Üzerine cacti kurulumu</dc:creator>
		<pubDate>Tue, 02 Aug 2011 07:28:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.staticnat.com/WP/2007/05/09/cacti-on-ubuntu-704-8-steps-to-the-a-flexible-and-functional-setup/#comment-27103</guid>
		<description>[...] http://www.staticnat.com/WP/2007/05/09/cacti-on-ubuntu-704-8-steps-to-the-a-flexible-and-functional-... [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.staticnat.com/WP/2007/05/09/cacti-on-ubuntu-704-8-steps-to-the-a-flexible-and-functional-.." rel="nofollow">http://www.staticnat.com/WP/2007/05/09/cacti-on-ubuntu-704-8-steps-to-the-a-flexible-and-functional-..</a>. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Having an EPOCH time with Cisco CDR. by Robert Thomson</title>
		<link>http://www.staticnat.com/WP/2011/06/16/having-an-epoch-time-with-cisco-cdr/comment-page-1/#comment-27058</link>
		<dc:creator>Robert Thomson</dc:creator>
		<pubDate>Thu, 16 Jun 2011 23:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.staticnat.com/WP/?p=459#comment-27058</guid>
		<description>A more portable solution between mac&#039;s and PC&#039;s may be to use a VBA macro and take advantage of the dateadd function to create a custom epochconvert that you can use in a cell formula. Taking advantage of the inbuilt functions removes the need for magic constants and allows you to specify a UTC offset to match your timezone.  I&#039;ve pasted the code below but in case it gets mangled you can find it at http://networknerd.wordpress.com/2011/03/26/converting-unix-epoch-times-with-excel/.  Alas, I don&#039;t have a mac but if someone could test it and post results I would be grateful

Regards
Rob

Private Const SecondsPerHour = 3600Private Const EpochStart = &quot;1/1/1970&quot; &#039;1 Jan 1970 00:00:00 UTCFunction epochconvert(epochtime, Optional UTCOffset)    If IsMissing(UTCOffset) Then        epochconvert = DateAdd(&quot;s&quot;, epochtime, EpochStart)    Else        epochconvert = DateAdd(&quot;s&quot;, epochtime + SecondsPerHour * UTCOffset, EpochStart)    End IfEnd Function
Function ToEpoch(dtDate, Optional UTCOffset)    If IsMissing(UTCOffset) Then        ToEpoch = DateDiff(&quot;s&quot;, dtDate, EpochStart)    Else        ToEpoch = DateDiff(&quot;s&quot;, EpochStart, dtDate) - SecondsPerHour * UTCOffset    End IfEnd Function</description>
		<content:encoded><![CDATA[<p>A more portable solution between mac&#8217;s and PC&#8217;s may be to use a VBA macro and take advantage of the dateadd function to create a custom epochconvert that you can use in a cell formula. Taking advantage of the inbuilt functions removes the need for magic constants and allows you to specify a UTC offset to match your timezone.  I&#8217;ve pasted the code below but in case it gets mangled you can find it at <a href="http://networknerd.wordpress.com/2011/03/26/converting-unix-epoch-times-with-excel/. " rel="nofollow">http://networknerd.wordpress.com/2011/03/26/converting-unix-epoch-times-with-excel/. </a> Alas, I don&#8217;t have a mac but if someone could test it and post results I would be grateful</p>
<p>Regards<br />
Rob</p>
<p>Private Const SecondsPerHour = 3600Private Const EpochStart = &#8220;1/1/1970&#8243; &#8217;1 Jan 1970 00:00:00 UTCFunction epochconvert(epochtime, Optional UTCOffset)    If IsMissing(UTCOffset) Then        epochconvert = DateAdd(&#8220;s&#8221;, epochtime, EpochStart)    Else        epochconvert = DateAdd(&#8220;s&#8221;, epochtime + SecondsPerHour * UTCOffset, EpochStart)    End IfEnd Function<br />
Function ToEpoch(dtDate, Optional UTCOffset)    If IsMissing(UTCOffset) Then        ToEpoch = DateDiff(&#8220;s&#8221;, dtDate, EpochStart)    Else        ToEpoch = DateDiff(&#8220;s&#8221;, EpochStart, dtDate) &#8211; SecondsPerHour * UTCOffset    End IfEnd Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick and Dirty&#8230;Ooohhhh&#8230;.Yeahhhh by Charles Hill</title>
		<link>http://www.staticnat.com/WP/2010/12/09/quick-and-dirty-ooohhhh-yeahhhh/comment-page-1/#comment-26615</link>
		<dc:creator>Charles Hill</dc:creator>
		<pubDate>Thu, 13 Jan 2011 13:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.staticnat.com/WP/?p=440#comment-26615</guid>
		<description>I prefer &quot;format flash:&quot;</description>
		<content:encoded><![CDATA[<p>I prefer &#8220;format flash:&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Always Flush when your done!!! by StaticNAT &#187; Blog Archive &#187; Welcome to the HP Dream world where reality does not apply.</title>
		<link>http://www.staticnat.com/WP/2007/09/07/always-flush-when-your-done/comment-page-1/#comment-26498</link>
		<dc:creator>StaticNAT &#187; Blog Archive &#187; Welcome to the HP Dream world where reality does not apply.</dc:creator>
		<pubDate>Sun, 12 Dec 2010 07:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.staticnat.com/WP/2007/09/07/always-flush-when-your-done/#comment-26498</guid>
		<description>[...] Related posts:Always Flush when your done!!! [...]</description>
		<content:encoded><![CDATA[<p>[...] Related posts:Always Flush when your done!!! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA LDAP Auth the nice and easy way. by StaticNAT &#187; Blog Archive &#187; Get Your ACS in Order!</title>
		<link>http://www.staticnat.com/WP/2007/08/10/asa-ldap-auth-the-nice-and-easy-way/comment-page-1/#comment-26497</link>
		<dc:creator>StaticNAT &#187; Blog Archive &#187; Get Your ACS in Order!</dc:creator>
		<pubDate>Sun, 12 Dec 2010 07:25:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.staticnat.com/WP/2007/08/10/asa-ldap-auth-the-nice-and-easy-way/#comment-26497</guid>
		<description>[...] ASA LDAP Auth the nice and easy way.     This entry was posted on Tuesday, October 26th, 2010 at 10:43 pm and is filed under Cisco, Hardware, On the Job. You can follow any responses to this entry through the RSS 2.0 feed.You can leave a response, or trackback from your own site.         blog comments powered by Disqus  /* [...]</description>
		<content:encoded><![CDATA[<p>[...] ASA LDAP Auth the nice and easy way.     This entry was posted on Tuesday, October 26th, 2010 at 10:43 pm and is filed under Cisco, Hardware, On the Job. You can follow any responses to this entry through the RSS 2.0 feed.You can leave a response, or trackback from your own site.         blog comments powered by Disqus  /* [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Always Flush when your done!!! by StaticNAT &#187; Blog Archive &#187; Josh&#8217;s Rules on Selling Solutions</title>
		<link>http://www.staticnat.com/WP/2007/09/07/always-flush-when-your-done/comment-page-1/#comment-26496</link>
		<dc:creator>StaticNAT &#187; Blog Archive &#187; Josh&#8217;s Rules on Selling Solutions</dc:creator>
		<pubDate>Sun, 12 Dec 2010 07:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.staticnat.com/WP/2007/09/07/always-flush-when-your-done/#comment-26496</guid>
		<description>[...] Always Flush when your done!!!     This entry was posted on Tuesday, November 23rd, 2010 at 3:18 am and is filed under Consulting, Design Strategy, Home Networking, On the Job. You can follow any responses to this entry through the RSS 2.0 feed.You can leave a response, or trackback from your own site. [...]</description>
		<content:encoded><![CDATA[<p>[...] Always Flush when your done!!!     This entry was posted on Tuesday, November 23rd, 2010 at 3:18 am and is filed under Consulting, Design Strategy, Home Networking, On the Job. You can follow any responses to this entry through the RSS 2.0 feed.You can leave a response, or trackback from your own site. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

