<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for axelio</title>
	<atom:link href="http://axelio.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://axelio.wordpress.com</link>
	<description>... and the art of debugging a blank sheet of paper.</description>
	<lastBuildDate>Sun, 21 Oct 2012 06:04:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Code size optimizations by aleix</title>
		<link>http://axelio.wordpress.com/2007/09/28/code-size-optimizations/#comment-1544</link>
		<dc:creator><![CDATA[aleix]]></dc:creator>
		<pubDate>Sun, 21 Oct 2012 06:04:19 +0000</pubDate>
		<guid isPermaLink="false">http://axelio.wordpress.com/2007/09/28/code-size-optimizations/#comment-1544</guid>
		<description><![CDATA[Constant objects have an address so you might get extra instructions to access to the address and get the value into a register. Enums are not variables so they can be substituted directly for the corresponding value at compilation time. At least, this is how I understood it and the tests I did at that time were coherent with these assumptions.]]></description>
		<content:encoded><![CDATA[<p>Constant objects have an address so you might get extra instructions to access to the address and get the value into a register. Enums are not variables so they can be substituted directly for the corresponding value at compilation time. At least, this is how I understood it and the tests I did at that time were coherent with these assumptions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code size optimizations by abhishekiitk</title>
		<link>http://axelio.wordpress.com/2007/09/28/code-size-optimizations/#comment-1543</link>
		<dc:creator><![CDATA[abhishekiitk]]></dc:creator>
		<pubDate>Thu, 18 Oct 2012 22:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://axelio.wordpress.com/2007/09/28/code-size-optimizations/#comment-1543</guid>
		<description><![CDATA[Can you please help me understand the trick mentioned in &quot;Enumerations vs. constant objects&quot; topic. How using an enum helps in saving memory space?]]></description>
		<content:encoded><![CDATA[<p>Can you please help me understand the trick mentioned in &#8220;Enumerations vs. constant objects&#8221; topic. How using an enum helps in saving memory space?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Screen Sharing with Mac OS X and GNU/Linux by Ross Huggett</title>
		<link>http://axelio.wordpress.com/2007/12/12/screen-sharing-with-mac-os-x-and-gnulinux/#comment-1541</link>
		<dc:creator><![CDATA[Ross Huggett]]></dc:creator>
		<pubDate>Mon, 17 Oct 2011 15:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://axelio.wordpress.com/2007/12/12/screen-sharing-with-mac-os-x-and-gnulinux/#comment-1541</guid>
		<description><![CDATA[Very useful. Sorted my problem. Thanks.]]></description>
		<content:encoded><![CDATA[<p>Very useful. Sorted my problem. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Screen Sharing with Mac OS X and GNU/Linux by Vishnu</title>
		<link>http://axelio.wordpress.com/2007/12/12/screen-sharing-with-mac-os-x-and-gnulinux/#comment-1539</link>
		<dc:creator><![CDATA[Vishnu]]></dc:creator>
		<pubDate>Fri, 19 Aug 2011 19:07:34 +0000</pubDate>
		<guid isPermaLink="false">http://axelio.wordpress.com/2007/12/12/screen-sharing-with-mac-os-x-and-gnulinux/#comment-1539</guid>
		<description><![CDATA[Thanks for the article!.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the article!.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Integer promotion: comparisons by aleix</title>
		<link>http://axelio.wordpress.com/2007/09/16/integer-comparisons/#comment-1538</link>
		<dc:creator><![CDATA[aleix]]></dc:creator>
		<pubDate>Sat, 13 Aug 2011 14:51:15 +0000</pubDate>
		<guid isPermaLink="false">http://axelio.wordpress.com/2007/09/16/integer-comparisons/#comment-1538</guid>
		<description><![CDATA[This blog has been moved to http://hacks-galore.org/aleix/blog 

Please, add comments there.]]></description>
		<content:encoded><![CDATA[<p>This blog has been moved to <a href="http://hacks-galore.org/aleix/blog" rel="nofollow">http://hacks-galore.org/aleix/blog</a> </p>
<p>Please, add comments there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Integer promotion: comparisons by Appa Rao Maiskar</title>
		<link>http://axelio.wordpress.com/2007/09/16/integer-comparisons/#comment-1537</link>
		<dc:creator><![CDATA[Appa Rao Maiskar]]></dc:creator>
		<pubDate>Fri, 12 Aug 2011 00:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://axelio.wordpress.com/2007/09/16/integer-comparisons/#comment-1537</guid>
		<description><![CDATA[I didnt understood the correct meaning of the words &quot;original type&quot; in the sentence

&gt; &quot;if int can represent all the values of the original type&quot;.

could u plz explain with examples for both

int representing values of original type and 
int not representing values of original type.]]></description>
		<content:encoded><![CDATA[<p>I didnt understood the correct meaning of the words &#8220;original type&#8221; in the sentence</p>
<p>&gt; &#8220;if int can represent all the values of the original type&#8221;.</p>
<p>could u plz explain with examples for both</p>
<p>int representing values of original type and<br />
int not representing values of original type.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Screen Sharing with Mac OS X and GNU/Linux by Sabuj Pattanayek</title>
		<link>http://axelio.wordpress.com/2007/12/12/screen-sharing-with-mac-os-x-and-gnulinux/#comment-1535</link>
		<dc:creator><![CDATA[Sabuj Pattanayek]]></dc:creator>
		<pubDate>Sat, 11 Jun 2011 15:06:46 +0000</pubDate>
		<guid isPermaLink="false">http://axelio.wordpress.com/2007/12/12/screen-sharing-with-mac-os-x-and-gnulinux/#comment-1535</guid>
		<description><![CDATA[I had the same &quot;Server did not offer supported security type&quot; problem with vncviewer (tightvnc viewer from linux) connecting to an OSX 10.6 system. I had to modify my enableOSXVNC script to this (run as root) :

#!/bin/sh

/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -verbose -activate -restart -agent -allowAccessFor -allUsers -privs -all -clientopts -setvnclegacy -vnclegacy yes -setvncpw -vncpw passwordYouWantToUse

Here&#039;s the one to disable it

#!/bin/sh

/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -verbose -deactivate

It&#039;s probably the -setvnclegacy -vnclegacy yes that does the trick.]]></description>
		<content:encoded><![CDATA[<p>I had the same &#8220;Server did not offer supported security type&#8221; problem with vncviewer (tightvnc viewer from linux) connecting to an OSX 10.6 system. I had to modify my enableOSXVNC script to this (run as root) :</p>
<p>#!/bin/sh</p>
<p>/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -verbose -activate -restart -agent -allowAccessFor -allUsers -privs -all -clientopts -setvnclegacy -vnclegacy yes -setvncpw -vncpw passwordYouWantToUse</p>
<p>Here&#8217;s the one to disable it</p>
<p>#!/bin/sh</p>
<p>/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -verbose -deactivate</p>
<p>It&#8217;s probably the -setvnclegacy -vnclegacy yes that does the trick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Screen Sharing with Mac OS X and GNU/Linux by RR</title>
		<link>http://axelio.wordpress.com/2007/12/12/screen-sharing-with-mac-os-x-and-gnulinux/#comment-1534</link>
		<dc:creator><![CDATA[RR]]></dc:creator>
		<pubDate>Wed, 08 Jun 2011 14:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://axelio.wordpress.com/2007/12/12/screen-sharing-with-mac-os-x-and-gnulinux/#comment-1534</guid>
		<description><![CDATA[I had omitted setting the password on my first attempt and was not able to connect. After following your advice of setting the password, I am able to connect to it. Many thanks.

RR]]></description>
		<content:encoded><![CDATA[<p>I had omitted setting the password on my first attempt and was not able to connect. After following your advice of setting the password, I am able to connect to it. Many thanks.</p>
<p>RR</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Screen Sharing with Mac OS X and GNU/Linux by Louis</title>
		<link>http://axelio.wordpress.com/2007/12/12/screen-sharing-with-mac-os-x-and-gnulinux/#comment-1533</link>
		<dc:creator><![CDATA[Louis]]></dc:creator>
		<pubDate>Wed, 23 Feb 2011 18:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://axelio.wordpress.com/2007/12/12/screen-sharing-with-mac-os-x-and-gnulinux/#comment-1533</guid>
		<description><![CDATA[Thanks GerdH! That fixed it for me too. Thanks aleix for the article.]]></description>
		<content:encoded><![CDATA[<p>Thanks GerdH! That fixed it for me too. Thanks aleix for the article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Packing and unpacking bit structures in Python by aleix</title>
		<link>http://axelio.wordpress.com/2007/06/16/packing-and-unpacking-bit-structures-in-python/#comment-1396</link>
		<dc:creator><![CDATA[aleix]]></dc:creator>
		<pubDate>Sat, 24 Oct 2009 11:00:04 +0000</pubDate>
		<guid isPermaLink="false">http://axelio.wordpress.com/2007/06/16/packing-and-unpacking-bit-structures-in-python/#comment-1396</guid>
		<description><![CDATA[Right now this is not possible. I&#039;m working on a new version where this will be possible, but I&#039;m not sure when it will be available.

Right now BitPacket is quite simple and the performance is very slow. You might be interested to try a more robust library like &lt;a href=&quot;http://http://construct.wikispaces.com/&quot; rel=&quot;nofollow&quot;&gt;construct&lt;/a&gt;.]]></description>
		<content:encoded><![CDATA[<p>Right now this is not possible. I&#8217;m working on a new version where this will be possible, but I&#8217;m not sure when it will be available.</p>
<p>Right now BitPacket is quite simple and the performance is very slow. You might be interested to try a more robust library like <a href="http://http://construct.wikispaces.com/" rel="nofollow">construct</a>.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
