<?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 Small Dropbear</title>
	<atom:link href="http://enc.com.au/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://enc.com.au</link>
	<description>umm</description>
	<lastBuildDate>Mon, 07 May 2012 22:33:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on VMware Player on Debian by Craig</title>
		<link>http://enc.com.au/2012/02/vmware-player-on-debian/#comment-410</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Mon, 07 May 2012 22:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://enc.com.au/?p=613#comment-410</guid>
		<description>&lt;p&gt;As the error message says, you used (and I told everyone) the wrong -p option.
The correct command is patch -p0 &lt; vmnet.patch so just change the &quot;1&quot; for &quot;0&quot; and you should be right to go.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>As the error message says, you used (and I told everyone) the wrong -p option.
The correct command is patch -p0 &lt; vmnet.patch so just change the &#8220;1&#8243; for &#8220;0&#8243; and you should be right to go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VMware Player on Debian by re7erse</title>
		<link>http://enc.com.au/2012/02/vmware-player-on-debian/#comment-409</link>
		<dc:creator>re7erse</dc:creator>
		<pubDate>Mon, 07 May 2012 14:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://enc.com.au/?p=613#comment-409</guid>
		<description>&lt;p&gt;did not work for me:&lt;/p&gt;

&lt;p&gt;/usr/lib/vmware/modules/source# patch -p1 &lt; vmnet.patch 
can&#039;t find file to patch at input line 4
Perhaps you used the wrong -p or --strip option?&lt;/p&gt;

&lt;p&gt;The text leading up to this was:&lt;/p&gt;

&lt;p&gt;&#124;diff -u vmnet-only.orig/filter.c vmnet-only/filter.c
&#124;--- vmnet-only.orig/filter.c   2012-01-19 09:22:02.000000000 +1100&lt;/p&gt;

&lt;p&gt;&#124;+++ vmnet-only/filter.c    2012-02-16 21:03:24.000000000 +1100&lt;/p&gt;

&lt;p&gt;File to patch:&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>did not work for me:</p>

<p>/usr/lib/vmware/modules/source# patch -p1 &lt; vmnet.patch 
can&#8217;t find file to patch at input line 4
Perhaps you used the wrong -p or &#8211;strip option?</p>

<p>The text leading up to this was:</p>

<p>|diff -u vmnet-only.orig/filter.c vmnet-only/filter.c
|&#8212; vmnet-only.orig/filter.c   2012-01-19 09:22:02.000000000 +1100</p>

<p>|+++ vmnet-only/filter.c    2012-02-16 21:03:24.000000000 +1100</p>

<p>File to patch:</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP floats and locales by Craig</title>
		<link>http://enc.com.au/2012/04/php-floats-and-locales/#comment-407</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Mon, 16 Apr 2012 22:43:42 +0000</pubDate>
		<guid isPermaLink="false">http://enc.com.au/?p=660#comment-407</guid>
		<description>&lt;p&gt;rrdtool is doing the right thing, for a locale that has comma as a decimal point output the value as a decimal point.  To me that makes a lot of sense.&lt;/p&gt;

&lt;p&gt;About the string to float conversion, its a little more than a type-cast but let&#039;s say that&#039;s all it is. The relevant page on string conversions says it uses strtod and friends and that underlying function IS locale aware.&lt;/p&gt;

&lt;p&gt;Anyway, PHP has a function floatval() that should work; except it gives the same wrong result as the type-cast.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>rrdtool is doing the right thing, for a locale that has comma as a decimal point output the value as a decimal point.  To me that makes a lot of sense.</p>

<p>About the string to float conversion, its a little more than a type-cast but let&#8217;s say that&#8217;s all it is. The relevant page on string conversions says it uses strtod and friends and that underlying function IS locale aware.</p>

<p>Anyway, PHP has a function floatval() that should work; except it gives the same wrong result as the type-cast.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP floats and locales by Tobias</title>
		<link>http://enc.com.au/2012/04/php-floats-and-locales/#comment-406</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Mon, 16 Apr 2012 14:56:01 +0000</pubDate>
		<guid isPermaLink="false">http://enc.com.au/?p=660#comment-406</guid>
		<description>&lt;p&gt;I&#039;m not fast to jump to the defense of PHP, but it&#039;s quite correct here. (float) is just a type-cast. It&#039;s not locale-aware and that is totally okay. The real problem is an API (RRDs) which gives you a locale-tainted numeric. This was a problem in RRDs XML-export some time ago, maybe it&#039;s still present here?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;m not fast to jump to the defense of PHP, but it&#8217;s quite correct here. (float) is just a type-cast. It&#8217;s not locale-aware and that is totally okay. The real problem is an API (RRDs) which gives you a locale-tainted numeric. This was a problem in RRDs XML-export some time ago, maybe it&#8217;s still present here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP floats and locales by Craig Small: PHP floats and locales &#124; Linux-Support.com</title>
		<link>http://enc.com.au/2012/04/php-floats-and-locales/#comment-405</link>
		<dc:creator>Craig Small: PHP floats and locales &#124; Linux-Support.com</dc:creator>
		<pubDate>Sun, 15 Apr 2012 09:40:41 +0000</pubDate>
		<guid isPermaLink="false">http://enc.com.au/?p=660#comment-405</guid>
		<description>&lt;p&gt;[...] source: Go to Source Feed source: http://planet.debian.org/rss20.xml License: The original licenses are retained &#8211; [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] source: Go to Source Feed source: <a href="http://planet.debian.org/rss20.xml" rel="nofollow">http://planet.debian.org/rss20.xml</a> License: The original licenses are retained &#8211; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Back Online by Wouter Verhelst</title>
		<link>http://enc.com.au/2012/03/back-online/#comment-399</link>
		<dc:creator>Wouter Verhelst</dc:creator>
		<pubDate>Tue, 27 Mar 2012 17:34:37 +0000</pubDate>
		<guid isPermaLink="false">http://enc.com.au/?p=652#comment-399</guid>
		<description>&lt;p&gt;Gotta love the ex-monopolies (ex, if only in name).à&lt;/p&gt;

&lt;p&gt;In Belgium, the ex-monopoly is Belgacom. Some customer ordered a high-speed line from them, but they said the best they could do was a 2Mbit SDSL. Two weeks down the line it became abundantly clear that this was not enough, so we talk to the neighbours whom we know have a 100Mbit fiber that they don&#039;t completely use and ask if we can leach some bandwidth using a wireless link over the street. &quot;Coincidentally&quot;, we say, &quot;where are you getting your fiber link&quot;. &quot;Belgacom&quot;&lt;/p&gt;

&lt;p&gt;So we call back. &quot;Oh, good that you tell us,&quot; Belgacom says, &quot;we didn&#039;t know that we had a fiber over there. Yes, sure, then we should be able to do that for you, too&quot;&lt;/p&gt;

&lt;p&gt;Morons.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Gotta love the ex-monopolies (ex, if only in name).à</p>

<p>In Belgium, the ex-monopoly is Belgacom. Some customer ordered a high-speed line from them, but they said the best they could do was a 2Mbit SDSL. Two weeks down the line it became abundantly clear that this was not enough, so we talk to the neighbours whom we know have a 100Mbit fiber that they don&#8217;t completely use and ask if we can leach some bandwidth using a wireless link over the street. &#8220;Coincidentally&#8221;, we say, &#8220;where are you getting your fiber link&#8221;. &#8220;Belgacom&#8221;</p>

<p>So we call back. &#8220;Oh, good that you tell us,&#8221; Belgacom says, &#8220;we didn&#8217;t know that we had a fiber over there. Yes, sure, then we should be able to do that for you, too&#8221;</p>

<p>Morons.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VMware Player on Debian by Scott Busby</title>
		<link>http://enc.com.au/2012/02/vmware-player-on-debian/#comment-394</link>
		<dc:creator>Scott Busby</dc:creator>
		<pubDate>Tue, 06 Mar 2012 05:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://enc.com.au/?p=613#comment-394</guid>
		<description>&lt;p&gt;Worked perfect on my Debian Testing system!
Linux kernel 3.2.0-1-686-pae&lt;/p&gt;

&lt;p&gt;Thanks for the patch.&lt;/p&gt;

&lt;p&gt;Scott&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Worked perfect on my Debian Testing system!
Linux kernel 3.2.0-1-686-pae</p>

<p>Thanks for the patch.</p>

<p>Scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VMware Player on Debian by Craig</title>
		<link>http://enc.com.au/2012/02/vmware-player-on-debian/#comment-361</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Sun, 26 Feb 2012 06:28:31 +0000</pubDate>
		<guid isPermaLink="false">http://enc.com.au/?p=613#comment-361</guid>
		<description>&lt;p&gt;Ooh, care to explain why?  I&#039;m not challenging your suggestion just curious about the reasons behind that; besides not having to do evil patches like my blog entry describes.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ooh, care to explain why?  I&#8217;m not challenging your suggestion just curious about the reasons behind that; besides not having to do evil patches like my blog entry describes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VMware Player on Debian by Kai Hendry</title>
		<link>http://enc.com.au/2012/02/vmware-player-on-debian/#comment-360</link>
		<dc:creator>Kai Hendry</dc:creator>
		<pubDate>Sun, 26 Feb 2012 03:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://enc.com.au/?p=613#comment-360</guid>
		<description>&lt;p&gt;As a long time VMware user who has recently switched to Virtualbox, I suggest you do the same. :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>As a long time VMware user who has recently switched to Virtualbox, I suggest you do the same. <img src='http://enc.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Latex to HTML Converters by Craig</title>
		<link>http://enc.com.au/docs/latexhtml/#comment-341</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Thu, 23 Feb 2012 06:08:39 +0000</pubDate>
		<guid isPermaLink="false">http://enc.com.au/#comment-341</guid>
		<description>&lt;p&gt;Thanks for the link that looks like an interesting program that can (apparently!) convert almost anything to anything. It is even &lt;a href=&quot;http://packages/debian.org/pandoc&quot; title=&quot;pandoc debian package page&quot; rel=&quot;nofollow&quot;&gt;packaged in Debian&lt;/a&gt; too.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the link that looks like an interesting program that can (apparently!) convert almost anything to anything. It is even <a href="http://packages/debian.org/pandoc" title="pandoc debian package page" rel="nofollow">packaged in Debian</a> too.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

