<?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>Jason Filley - SnakeLegs &#187; Main</title>
	<atom:link href="http://www.snakelegs.org/category/main/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.snakelegs.org</link>
	<description>Upon thy belly shalt thou go....</description>
	<lastBuildDate>Fri, 09 Jul 2010 22:02:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Schrodinger&#8217;s Cat Ate My Homework</title>
		<link>http://www.snakelegs.org/2010/07/09/schrodingers-cat-ate-my-homework/</link>
		<comments>http://www.snakelegs.org/2010/07/09/schrodingers-cat-ate-my-homework/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 22:01:21 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=410</guid>
		<description><![CDATA[Schrodinger&#8217;s cat ate my homework.]]></description>
			<content:encoded><![CDATA[<p>Schrodinger&#8217;s cat ate my homework.</p>
<p><a href="http://www.snakelegs.org/wp-content/uploads/2010/07/schrodinger_printer.png"><img class="aligncenter size-full wp-image-411" title="Schrodinger's Cat Ate My Homework" src="http://www.snakelegs.org/wp-content/uploads/2010/07/schrodinger_printer.png" alt="" width="515" height="248" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2010/07/09/schrodingers-cat-ate-my-homework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Embedded Standard Partial Updates with IGEL Thin Clients</title>
		<link>http://www.snakelegs.org/2010/06/29/windows-embedded-standard-partial-updates-with-igel-thin-clients/</link>
		<comments>http://www.snakelegs.org/2010/06/29/windows-embedded-standard-partial-updates-with-igel-thin-clients/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 16:29:46 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=395</guid>
		<description><![CDATA[Windows Embedded Standard Partial Updates with IGEL Thin Clients Assemble your tools: Download the Partial Update manual, the LUNA Reference Guide, and the catalog sample from the Manuals. Download samples from the Hotfixes and Samples pages. If you don&#8217;t have a suitable text editor, try Notepad++, which has syntax highlighting for Lua scripts.  Lua for [...]]]></description>
			<content:encoded><![CDATA[<p><em><a href="http://www.microsoft.com/windowsembedded/">Windows Embedded Standard</a> Partial Updates with <a href="http://www.igel.com/">IGEL Thin Clients</a></em></p>
<p>Assemble your tools:</p>
<ol>
<li>Download the <em>Partial Update</em> manual, the LUNA Reference Guide, and the catalog sample from the <a href="http://www.myigel.com/index.php?filepath=PREVIOUS_SERIES/xppartialupdate/Samples/Manual/&amp;webpath=/ftp/PREVIOUS_SERIES/xppartialupdate/Samples/Manual/&amp;rc=emea">Manuals</a>.</li>
<li>Download samples from the <a href="http://www.myigel.com/index.php?filepath=wespartialupdate/Hotfixes/&amp;webpath=/ftp/wespartialupdate/Hotfixes/&amp;rc=emea">Hotfixes</a> and <a href="http://www.myigel.com/index.php?filepath=PREVIOUS_SERIES/xppartialupdate/Samples/">Samples</a> pages.</li>
<li>If you don&#8217;t have a suitable text editor, try <a href="http://notepad-plus-plus.org/">Notepad++</a>, which has syntax highlighting for Lua scripts.  Lua for Windows (below) includes the IDE SciTE, as well [and switch it to a monospace font...].</li>
<li>Visit the <a href="http://www.lua.org/">Lua scripting language main website</a> and download <a href="http://code.google.com/p/luaforwindows/">Lua for Windows</a>.</li>
<li>Order &#8220;<a href="http://www.amazon.com/exec/obidos/ASIN/8590379825/lua-home-20">Programming in Lua (2nd Edition)</a>.&#8221;  It may be overkill, but there&#8217;s no sense being half-assed about it.</li>
<li>Download <a href="http://www.slproweb.com/products/Win32OpenSSL.html">OpenSSL for Windows</a> to compute your MD5 hashes required for file copies.</li>
</ol>
<p><span id="more-395"></span>Example script to install Flash 10.1, slightly modified from sample scripts:</p>
<pre>-- IGEL WES partial update to install Flash 10.1.53.64

-- Check OS-Version [OS_CHECK]
product_version = setup.get("product.version")
if product_version == nil then
 error("Cannot get product version")
end

os_version = string.sub(product_version, 1, 2)

if os_version ~= "2." and os_version ~= "02" then
 error("Update cannot be applied. OS-Version must be WES")
end

-- Create the Filetable [CF]
files = {
{src="install_flash_player_10_active_x.msi",
dest="C:\\Temp\\Flash_10_1_53_64\\install_flash_player_10_active_x.msi",
digest="9f1c0833befc49cdf7d4f3156a56d1bf",
size=3574}}

-- Check if Partial Update Package matches to the Thin-Client space at all [SP]
NeededSize = fs.usage(files)
AvailableSize = sys.diskfree("C:")
if AvailableSize &lt; NeededSize then
 error("Not enough space on CF to install Partial Update: Flash_10_1_53_64")
end

-- Install the files from the table [IF]
for FilePos, t in ipairs(files) do
 PKG:install(t.src, t.dest, t.digest)
end

-- Silent install of MSI-File [MSI]
sys.exec("C:\\Windows\\System32\\msiexec.exe /i C:\\Temp\\Flash_10_1_53_64\\install_flash_player_10_active_x.msi /passive")
fs.remove("C:\\Temp\\Flash_10_1_53_64")

-- If demanded, force a reboot [FRB]
if fs.pending() then
 sys.reboot()
end
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2010/06/29/windows-embedded-standard-partial-updates-with-igel-thin-clients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Determine your local and long distance phone provider</title>
		<link>http://www.snakelegs.org/2010/01/20/determine-your-local-and-long-distance-phone-provider/</link>
		<comments>http://www.snakelegs.org/2010/01/20/determine-your-local-and-long-distance-phone-provider/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 17:09:18 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=328</guid>
		<description><![CDATA[To determine your local phone carrier: Dial 00 To determine your long distance carrier: Dial 1-700-555-4141]]></description>
			<content:encoded><![CDATA[<p>To determine your local phone carrier:<br />
Dial 00</p>
<p>To determine your long distance carrier:<br />
Dial 1-700-555-4141</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2010/01/20/determine-your-local-and-long-distance-phone-provider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jerome&#8217;s Office-Winning Chili</title>
		<link>http://www.snakelegs.org/2010/01/02/jeromes-office-winning-chili/</link>
		<comments>http://www.snakelegs.org/2010/01/02/jeromes-office-winning-chili/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 01:20:55 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Recipes]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=323</guid>
		<description><![CDATA[Ingredients 1 1/2 lbs ground beef 1 onion chopped 2 Tsp sugar 3/4 Tsp black pepper 1/2 cup chopped green bell pepper 1/2 cup chopped red bell pepper 4 Tlb chili powder 2 Tsp garlic powder 1 15oz diced tomato with green chiles 1 15oz can crushed tomatoes 5 15oz can chili beans 1 package [...]]]></description>
			<content:encoded><![CDATA[<p>Ingredients</p>
<ul>
<li>1 1/2 lbs ground beef</li>
<li>1 onion chopped</li>
<li>2 Tsp sugar</li>
<li>3/4 Tsp black pepper</li>
<li>1/2 cup chopped green bell pepper</li>
<li>1/2 cup chopped red bell pepper</li>
<li>4 Tlb chili powder</li>
<li>2 Tsp garlic powder</li>
<li>1 15oz diced tomato with green chiles</li>
<li>1 15oz can crushed tomatoes</li>
<li>5 15oz can chili beans</li>
<li>1 package chili mix</li>
</ul>
<p> Directions</p>
<p>Cook ground beef with onions, peppers, garlic powder, pepper and season salt (mystery ingredient?).</p>
<p>Drain and add dash of chili powder.</p>
<p>Add chili mix with beans and warm on low heat.  Add sugar and pepper.  Cook 10 minutes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2010/01/02/jeromes-office-winning-chili/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can Satan Map Underwater?</title>
		<link>http://www.snakelegs.org/2009/12/16/can-satan-map-underwater/</link>
		<comments>http://www.snakelegs.org/2009/12/16/can-satan-map-underwater/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 22:54:33 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=314</guid>
		<description><![CDATA[I began typing &#8220;Can satellites map underwater&#8221; in the Google search window.  Google auto-suggests searches based on popularity, and by the time I got to &#8220;can sat&#8221; the number one suggested search was &#8220;can satan read our thoughts.&#8221;  Why the hell would you expect Google to know that?]]></description>
			<content:encoded><![CDATA[<p>I began typing &#8220;Can satellites map underwater&#8221; in the Google search window.  Google auto-suggests searches based on popularity, and by the time I got to &#8220;can sat&#8221; the number one suggested search was &#8220;can satan read our thoughts.&#8221;  Why the hell would you expect Google to know that?</p>
<p><img class="aligncenter size-full wp-image-315" title="Can Satan read our thoughts?" src="http://www.snakelegs.org/wp-content/uploads/2009/12/can_satan_read_our_thoughts.png" alt="Can Satan read our thoughts?" width="486" height="302" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/12/16/can-satan-map-underwater/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>William Shatner Says</title>
		<link>http://www.snakelegs.org/2009/12/15/william-shatner-says/</link>
		<comments>http://www.snakelegs.org/2009/12/15/william-shatner-says/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 16:56:18 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=312</guid>
		<description><![CDATA[Dumping ground for future items for William Shatner poetry readings: After Kernel upgrade CALL_FUNCTION error After a few hours, you will see that your name will fade away and be replaced by the word guest &#8230;  You will see the same happening to &#8220;barry brown&#8221;&#8230;. You can then continue your conversation and cheating the points [...]]]></description>
			<content:encoded><![CDATA[<p>Dumping ground for future items for William Shatner poetry readings:</p>
<p><a href="https://forums.sdn.sap.com/message.jspa?messageID=6443765"><span>After Kernel upgrade CALL_FUNCTION error</span></a></p>
<blockquote><p>After a few hours, you will see that your name will fade away and be replaced by the word <em>guest</em> &#8230;  You will see the same happening to &#8220;barry brown&#8221;&#8230;. You can then continue your conversation and cheating the points system in <em>Guestland</em>&#8230;</p></blockquote>
<p><span>=====</span></p>
<p><span>Charter phone sales online:<br />
</span></p>
<p>TTM Bryan : I am not the website. You can place an order through the website and everything can be done for.</p>
<p>=====</p>
<p>Firmware release note for Zebra printer:<br />
&#8220;The Head Cold warning is now disabled by default.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/12/15/william-shatner-says/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sort Merge Join</title>
		<link>http://www.snakelegs.org/2009/12/03/sort-merge-join/</link>
		<comments>http://www.snakelegs.org/2009/12/03/sort-merge-join/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 23:57:33 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=310</guid>
		<description><![CDATA[Try saying that 5 times quickly.]]></description>
			<content:encoded><![CDATA[<p>Try saying <em>that</em> 5 times quickly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/12/03/sort-merge-join/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert SOA RNAME to standard email format</title>
		<link>http://www.snakelegs.org/2009/12/03/convert-soa-rname-to-standard-email-format/</link>
		<comments>http://www.snakelegs.org/2009/12/03/convert-soa-rname-to-standard-email-format/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 16:22:56 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=307</guid>
		<description><![CDATA[#!/usr/bin/perl -T # RFC 1035 3.3.13 # http://www.faqs.org/rfcs/rfc1035.html # The rname of a DNS SOA response gives "domain-name which specifies \ # the mailbox of the person responsible for this zone" use strict; use warnings; #use Email::Valid; if you wish # example - "noc.example.com" is "noc@example.com" # replace first non-escaped period with an @ symbol [...]]]></description>
			<content:encoded><![CDATA[<pre>#!/usr/bin/perl -T
# RFC 1035 3.3.13
# http://www.faqs.org/rfcs/rfc1035.html
# The rname of a DNS SOA response gives "domain-name which specifies \
#       the mailbox of the person responsible for this zone"

use strict;
use warnings;
#use Email::Valid; if you wish

# example - "noc.example.com" is "noc@example.com"
# replace first non-escaped period with an @ symbol
&amp;mailstrip("noc.example.com");

# and remove escapes
#&amp;mailstrip('some\.user.example.com');

sub mailstrip {
 my $emailaddress = shift;

 # replace first non-escaped period with an @ symbol
 # my $brain-&gt;hurts();
 $emailaddress =~ s/(?&lt;!\\)(?=\.)/\@/;
 $emailaddress =~ s/\@\./\@/;
 $emailaddress =~ s/\\(.)/$1/g;

 print "$emailaddress\n";
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/12/03/convert-soa-rname-to-standard-email-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filtering note on Postfix and HylaFAX</title>
		<link>http://www.snakelegs.org/2009/11/20/filtering-note-on-postfix-and-hylafax/</link>
		<comments>http://www.snakelegs.org/2009/11/20/filtering-note-on-postfix-and-hylafax/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 17:54:41 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=305</guid>
		<description><![CDATA[Quick note: if you want a Postfix-&#62;HylaFAX email-to-fax gateway with an incoming format like aaabbbcccc@&#60;hostname&#62;, use regexes to allow the recipient, and also to route to a different transport. main.cf: local_recipient_maps = proxy:unix:passwd.byname $alias_maps $fax_recipients fax_recipients = regexp:/etc/postfix/fax_recipients fax_destination_recipient_limit = 1 fax_recipients: /[0-9]{10}@.*/ OK transport.regex: /[0-9]{10}@.*/ fax:localhost master.cf: fax unix - n n - 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Quick note: if you want a Postfix-&gt;HylaFAX email-to-fax gateway with an incoming format like aaabbbcccc@&lt;hostname&gt;, use regexes to allow the recipient, and also to route to a different transport.</p>
<pre>
main.cf:
local_recipient_maps = proxy:unix:passwd.byname $alias_maps $fax_recipients
fax_recipients = regexp:/etc/postfix/fax_recipients
fax_destination_recipient_limit = 1

fax_recipients:
/[0-9]{10}@.*/  OK

transport.regex:
/[0-9]{10}@.*/  fax:localhost

master.cf:
fax     unix    -       n       n       -       1       pipe
    flags= user=uucp argv=/usr/bin/faxmail -d -n ${user}</pre>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">
main.cf:<br />
local_recipient_maps = proxy:unix:passwd.byname $alias_maps $fax_recipients<br />
fax_recipients = regexp:/etc/postfix/fax_recipients<br />
fax_destination_recipient_limit = 1</p>
<p>fax_recipients:<br />
/[0-9]{10}@.*/  OK</p>
<p>transport.regex:<br />
/[0-9]{10}@.*/  fax:localhost</p>
<p>master.cf:<br />
fax     unix    -       n       n       -       1       pipe<br />
flags= user=uucp argv=/usr/bin/faxmail -d -n ${user}</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/11/20/filtering-note-on-postfix-and-hylafax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Superstition</title>
		<link>http://www.snakelegs.org/2009/11/11/superstition/</link>
		<comments>http://www.snakelegs.org/2009/11/11/superstition/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 19:22:27 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=303</guid>
		<description><![CDATA[A fortune cookie&#8217;s message has no impact on your life.  At all.  It&#8217;s a stupid superstition, people.  If the fortune cookie says you&#8217;re going to inherit a lot of money, your chances of inheriting money don&#8217;t change at all.  No impact. However, if you eat the cookie but don&#8217;t read your fortune at all, you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>A fortune cookie&#8217;s message has no impact on your life.  At all.  It&#8217;s a stupid superstition, people.  If the fortune cookie says you&#8217;re going to inherit a lot of money, your chances of inheriting money don&#8217;t change at all.  No impact.</p>
<p>However, if you eat the cookie <em>but don&#8217;t read your fortune at all</em>, you&#8217;ll be dead within three days.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/11/11/superstition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
