<?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 Steven's weblog</title>
	<atom:link href="http://www.ourada.org/blog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ourada.org/blog</link>
	<description></description>
	<lastBuildDate>Thu, 07 Jan 2010 10:43:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on pdftk by Churchill</title>
		<link>http://www.ourada.org/blog/archives/15/comment-page-1#comment-25755</link>
		<dc:creator>Churchill</dc:creator>
		<pubDate>Thu, 07 Jan 2010 10:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/archives/15#comment-25755</guid>
		<description>Same as Hotte !
Thank you.</description>
		<content:encoded><![CDATA[<p>Same as Hotte !<br />
Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Digit frequency in pi by Nicholas Gaul</title>
		<link>http://www.ourada.org/blog/archives/397/comment-page-1#comment-25718</link>
		<dc:creator>Nicholas Gaul</dc:creator>
		<pubDate>Mon, 14 Dec 2009 20:21:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=397#comment-25718</guid>
		<description>Sad to say, this is an instance where scientific intuition will simply fail you.  There is a reason for this strange distribution--somewhere out there, someone is playing a role-playing or strategy game, either online or physically, and they meant to tap these number streams in place of clumsy rolls of the dice or other pseudo-random number generators.  But the random number gods are not so easily fooled.

The graph has the bumps it does because that distribution was necessary to punish the ambitions of some poor geek somewhere.</description>
		<content:encoded><![CDATA[<p>Sad to say, this is an instance where scientific intuition will simply fail you.  There is a reason for this strange distribution&#8211;somewhere out there, someone is playing a role-playing or strategy game, either online or physically, and they meant to tap these number streams in place of clumsy rolls of the dice or other pseudo-random number generators.  But the random number gods are not so easily fooled.</p>
<p>The graph has the bumps it does because that distribution was necessary to punish the ambitions of some poor geek somewhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on asc-gzip/.xfd compression by Steven&#8217;s weblog &#187; asc-gzip/.xfd decompression</title>
		<link>http://www.ourada.org/blog/archives/375/comment-page-1#comment-25712</link>
		<dc:creator>Steven&#8217;s weblog &#187; asc-gzip/.xfd decompression</dc:creator>
		<pubDate>Thu, 10 Dec 2009 17:30:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=375#comment-25712</guid>
		<description>[...] to post code for asc-gzip/.xfd decompression to go with my asc-gzip/.xfd compression code. See this comment. I&#8217;m also reposting it here because the comment formatting is a little more bad than the [...]</description>
		<content:encoded><![CDATA[<p>[...] to post code for asc-gzip/.xfd decompression to go with my asc-gzip/.xfd compression code. See this comment. I&#8217;m also reposting it here because the comment formatting is a little more bad than the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on asc-gzip/.xfd compression by Scott Stafford</title>
		<link>http://www.ourada.org/blog/archives/375/comment-page-1#comment-25711</link>
		<dc:creator>Scott Stafford</dc:creator>
		<pubDate>Thu, 10 Dec 2009 17:08:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=375#comment-25711</guid>
		<description>Thanks for your post.  Of course, I needed the opposite, I had one I needed to decompress.  So I backwarded your algorithm and here is the result:

&lt;pre&gt;
def decompress(fc):
    fc2 = fc.splitlines(True)
    fc3 = &quot;&quot;.join(fc2[1:]) # could verify that it&#039;s asc-gzip here if we wanted to...
    unb64 = base64.standard_b64decode(fc3)
    
    ctr = 0
    ret = []
    while 1:
        if ctr == len(unb64): break
        
        ccltop = ord(unb64[ctr])
        ctr += 1
        cclbottom = ord(unb64[ctr])
        ctr += 1
        compressedchunklen = ccltop * 256 + cclbottom
        
        cltop = ord(unb64[ctr])
        ctr += 1
        clbottom = ord(unb64[ctr])
        ctr += 1
        chunklen = cltop * 256 + clbottom
        #~ print compressedchunklen, chunklen
        
        compressedchunk = unb64[ctr:ctr+compressedchunklen]
        ctr += compressedchunklen
        
        chunk = zlib.decompress(compressedchunk)
        assert(len(chunk) ==  chunklen)
        ret.append(chunk)
    
    return &quot;&quot;.join(ret)
&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for your post.  Of course, I needed the opposite, I had one I needed to decompress.  So I backwarded your algorithm and here is the result:</p>
<pre>
def decompress(fc):
    fc2 = fc.splitlines(True)
    fc3 = "".join(fc2[1:]) # could verify that it's asc-gzip here if we wanted to...
    unb64 = base64.standard_b64decode(fc3)

    ctr = 0
    ret = []
    while 1:
        if ctr == len(unb64): break

        ccltop = ord(unb64[ctr])
        ctr += 1
        cclbottom = ord(unb64[ctr])
        ctr += 1
        compressedchunklen = ccltop * 256 + cclbottom

        cltop = ord(unb64[ctr])
        ctr += 1
        clbottom = ord(unb64[ctr])
        ctr += 1
        chunklen = cltop * 256 + clbottom
        #~ print compressedchunklen, chunklen

        compressedchunk = unb64[ctr:ctr+compressedchunklen]
        ctr += compressedchunklen

        chunk = zlib.decompress(compressedchunk)
        assert(len(chunk) ==  chunklen)
        ret.append(chunk)

    return "".join(ret)
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on asc-gzip/.xfd compression by anna</title>
		<link>http://www.ourada.org/blog/archives/375/comment-page-1#comment-25551</link>
		<dc:creator>anna</dc:creator>
		<pubDate>Wed, 21 Oct 2009 18:11:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=375#comment-25551</guid>
		<description>ahhh, code beautiful code!  Remember the night I &quot;watched you write code&quot;?  OO</description>
		<content:encoded><![CDATA[<p>ahhh, code beautiful code!  Remember the night I &#8220;watched you write code&#8221;?  OO</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HP HDX suspend/resume under Linux by Steven</title>
		<link>http://www.ourada.org/blog/archives/344/comment-page-1#comment-25525</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Fri, 09 Oct 2009 22:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=344#comment-25525</guid>
		<description>madneon, I probably ran it under Windows since I keep that around to dual-boot.

Hmm, looks like they don&#039;t have an option in the BIOS to reflash from USB, either. That&#039;s sorta annoying, now that I look at it.

There&#039;s probably some way to run their .exe under Wine to extract the .rom file, then use something like http://www.coreboot.org/Flashrom to do the flashing. I haven&#039;t tried any such method, so I can&#039;t say whether it&#039;ll work. I suppose another option is to try to get a Windows bootable CD like http://www.nu2.nu/pebuilder/ built, then use run the HP flasher under that.</description>
		<content:encoded><![CDATA[<p>madneon, I probably ran it under Windows since I keep that around to dual-boot.</p>
<p>Hmm, looks like they don&#8217;t have an option in the BIOS to reflash from USB, either. That&#8217;s sorta annoying, now that I look at it.</p>
<p>There&#8217;s probably some way to run their .exe under Wine to extract the .rom file, then use something like <a href="http://www.coreboot.org/Flashrom" rel="nofollow">http://www.coreboot.org/Flashrom</a> to do the flashing. I haven&#8217;t tried any such method, so I can&#8217;t say whether it&#8217;ll work. I suppose another option is to try to get a Windows bootable CD like <a href="http://www.nu2.nu/pebuilder/" rel="nofollow">http://www.nu2.nu/pebuilder/</a> built, then use run the HP flasher under that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HP HDX suspend/resume under Linux by madneon</title>
		<link>http://www.ourada.org/blog/archives/344/comment-page-1#comment-25524</link>
		<dc:creator>madneon</dc:creator>
		<pubDate>Fri, 09 Oct 2009 19:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=344#comment-25524</guid>
		<description>OK, but how to run BIOS update under Linux? ;/</description>
		<content:encoded><![CDATA[<p>OK, but how to run BIOS update under Linux? ;/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;Delivery on Demand&#8221; by Steven</title>
		<link>http://www.ourada.org/blog/archives/331/comment-page-1#comment-25299</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Wed, 12 Aug 2009 09:00:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=331#comment-25299</guid>
		<description>Awww, tehsuck. It looks like they&#039;ve evaporated. Maybe it&#039;s just a temporary server problem...</description>
		<content:encoded><![CDATA[<p>Awww, tehsuck. It looks like they&#8217;ve evaporated. Maybe it&#8217;s just a temporary server problem&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on pdftk by Hotte</title>
		<link>http://www.ourada.org/blog/archives/15/comment-page-1#comment-25196</link>
		<dc:creator>Hotte</dc:creator>
		<pubDate>Wed, 17 Jun 2009 07:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/archives/15#comment-25196</guid>
		<description>Thank you too, I had the same problem and already knew pdftk, but didn&#039;t know it could do it :)</description>
		<content:encoded><![CDATA[<p>Thank you too, I had the same problem and already knew pdftk, but didn&#8217;t know it could do it <img src='http://www.ourada.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Programming, these days by anna</title>
		<link>http://www.ourada.org/blog/archives/339/comment-page-1#comment-25153</link>
		<dc:creator>anna</dc:creator>
		<pubDate>Tue, 19 May 2009 11:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=339#comment-25153</guid>
		<description>mmmm, fascinating!  Glad you took the time to write this one!  OO</description>
		<content:encoded><![CDATA[<p>mmmm, fascinating!  Glad you took the time to write this one!  OO</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A/B by Steven</title>
		<link>http://www.ourada.org/blog/archives/296/comment-page-1#comment-24125</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Tue, 11 Nov 2008 07:10:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=296#comment-24125</guid>
		<description>Ah, another interesting scenario. And I completely agree with your assessment. As a matter of fact, I have to interrupt my listening to something else right now to go listen to B...</description>
		<content:encoded><![CDATA[<p>Ah, another interesting scenario. And I completely agree with your assessment. As a matter of fact, I have to interrupt my listening to something else right now to go listen to B&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A/B by Allanimal</title>
		<link>http://www.ourada.org/blog/archives/296/comment-page-1#comment-24124</link>
		<dc:creator>Allanimal</dc:creator>
		<pubDate>Tue, 11 Nov 2008 07:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=296#comment-24124</guid>
		<description>What about when song A is merely decent, but considered a &quot;classic&quot;, cover B is brilliant but unknown and cover C is tedious and boring, but all you ever hear is C and when you tell people how much crap it is, and how we should be listening to B instead, they look at you like you are a circus freak that is a finalist in the world top freak pageant?  That&#039;s &quot;American Woman&quot;, where B is the Butthole Surfers version and C is the complete shit &quot;anybody can slow it down and make it boring-er&quot; Lenny Kravitz cover.</description>
		<content:encoded><![CDATA[<p>What about when song A is merely decent, but considered a &#8220;classic&#8221;, cover B is brilliant but unknown and cover C is tedious and boring, but all you ever hear is C and when you tell people how much crap it is, and how we should be listening to B instead, they look at you like you are a circus freak that is a finalist in the world top freak pageant?  That&#8217;s &#8220;American Woman&#8221;, where B is the Butthole Surfers version and C is the complete shit &#8220;anybody can slow it down and make it boring-er&#8221; Lenny Kravitz cover.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cryptic error message by Allanimal</title>
		<link>http://www.ourada.org/blog/archives/289/comment-page-1#comment-23912</link>
		<dc:creator>Allanimal</dc:creator>
		<pubDate>Wed, 15 Oct 2008 15:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=289#comment-23912</guid>
		<description>My services are available any time*.


*Fine Print: any time means whenever I am not sleeping, not doing anything else, and near a computer with an active internet connection, and assumes that I have checked my email and/or feed reader recently.</description>
		<content:encoded><![CDATA[<p>My services are available any time*.</p>
<p>*Fine Print: any time means whenever I am not sleeping, not doing anything else, and near a computer with an active internet connection, and assumes that I have checked my email and/or feed reader recently.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cryptic error message by Steven</title>
		<link>http://www.ourada.org/blog/archives/289/comment-page-1#comment-23909</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Wed, 15 Oct 2008 06:17:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=289#comment-23909</guid>
		<description>That is approximately as helpful as the vendor of this particular software has been so far, and your help was far cheaper, so maybe we should have gone to you first.</description>
		<content:encoded><![CDATA[<p>That is approximately as helpful as the vendor of this particular software has been so far, and your help was far cheaper, so maybe we should have gone to you first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cryptic error message by Allanimal</title>
		<link>http://www.ourada.org/blog/archives/289/comment-page-1#comment-23908</link>
		<dc:creator>Allanimal</dc:creator>
		<pubDate>Wed, 15 Oct 2008 06:05:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=289#comment-23908</guid>
		<description>It means that you have a general data service error, coming from client ID  55481919-5415-BB76-E833-F2176FB1E566. 

And this particular error happened at 12:26:03.387 on the 12th of October, 2008 (I am assuming a US date format here, otherwise there is time travel involved). 

It was attempting to subscribe to an out of range sequence. From my expert analysis, sequence 5 is out of range. Try a lower sequence. Or maybe a higher one. Depends on what the range is. Or a different client ID, if the range depends on the client ID.  

I hope that was helpful.
:)</description>
		<content:encoded><![CDATA[<p>It means that you have a general data service error, coming from client ID  55481919-5415-BB76-E833-F2176FB1E566. </p>
<p>And this particular error happened at 12:26:03.387 on the 12th of October, 2008 (I am assuming a US date format here, otherwise there is time travel involved). </p>
<p>It was attempting to subscribe to an out of range sequence. From my expert analysis, sequence 5 is out of range. Try a lower sequence. Or maybe a higher one. Depends on what the range is. Or a different client ID, if the range depends on the client ID.  </p>
<p>I hope that was helpful.<br />
 <img src='http://www.ourada.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Marketing by anna</title>
		<link>http://www.ourada.org/blog/archives/283/comment-page-1#comment-23860</link>
		<dc:creator>anna</dc:creator>
		<pubDate>Mon, 06 Oct 2008 12:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=283#comment-23860</guid>
		<description>yur funnay!  OO</description>
		<content:encoded><![CDATA[<p>yur funnay!  OO</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Keywordin&#8217; by anna</title>
		<link>http://www.ourada.org/blog/archives/281/comment-page-1#comment-23806</link>
		<dc:creator>anna</dc:creator>
		<pubDate>Mon, 29 Sep 2008 15:29:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=281#comment-23806</guid>
		<description>mmm, have you looked at the blog?  I like it.</description>
		<content:encoded><![CDATA[<p>mmm, have you looked at the blog?  I like it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HtLHCDtWY? by anna</title>
		<link>http://www.ourada.org/blog/archives/273/comment-page-1#comment-23687</link>
		<dc:creator>anna</dc:creator>
		<pubDate>Sun, 14 Sep 2008 00:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=273#comment-23687</guid>
		<description>yes but, there were three earthquakes the day it was tested...so you know what that means: get ready!</description>
		<content:encoded><![CDATA[<p>yes but, there were three earthquakes the day it was tested&#8230;so you know what that means: get ready!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing in the clouds by Steven&#8217;s weblog &#187; Safe in the clouds</title>
		<link>http://www.ourada.org/blog/archives/248/comment-page-1#comment-23597</link>
		<dc:creator>Steven&#8217;s weblog &#187; Safe in the clouds</dc:creator>
		<pubDate>Sun, 31 Aug 2008 02:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=248#comment-23597</guid>
		<description>[...] did forget to mention in my post about clouds that there&#8217;s the security issue. This issue is by no means specific to cloud computing, but [...]</description>
		<content:encoded><![CDATA[<p>[...] did forget to mention in my post about clouds that there&#8217;s the security issue. This issue is by no means specific to cloud computing, but [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on P. C. by Steven</title>
		<link>http://www.ourada.org/blog/archives/246/comment-page-1#comment-23586</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Fri, 29 Aug 2008 12:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ourada.org/blog/?p=246#comment-23586</guid>
		<description>Huh. You may only get the weekly highlights, but we get bleeps. You should get an &lt;a href=&quot;http://ni9e.com/nwa.php&quot; rel=&quot;nofollow&quot;&gt;explicit content only&lt;/a&gt; version.</description>
		<content:encoded><![CDATA[<p>Huh. You may only get the weekly highlights, but we get bleeps. You should get an <a href="http://ni9e.com/nwa.php" rel="nofollow">explicit content only</a> version.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
