<?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 on: How much of a performance increase will 64-bit Leopard bring?</title>
	<atom:link href="http://jkontherun.com/2007/10/15/how-much-of-a-p/feed/" rel="self" type="application/rss+xml" />
	<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/</link>
	<description>Using mobile devices since they weighed 30 lbs.</description>
	<lastBuildDate>Sun, 22 Nov 2009 04:54:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Scotty</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17539</link>
		<dc:creator>Scotty</dc:creator>
		<pubDate>Tue, 16 Oct 2007 13:23:11 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17539</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;Now it can be told... found their new features page so the cat is out of the bag.&lt;/p&gt;

&lt;p&gt;What Apple did right about 64 bit in Leopard...&lt;/p&gt;

&lt;p&gt;The Kernel is 32 bit on both Intel Core 2 Duo/Xeon (only Intel chips with 64 bit) and on the G5 (only PowerPC with 64 bit). So all of your existing device drivers continue to work with 64 bit applications. And those of  you with G5&#039;s get seamless 64 bit as well, not just those with new Intel CPU&#039;s.&lt;/p&gt;

&lt;p&gt;This feature also means that 32 bit and 64 bit applications run side by side at the same time. You are not forced to find a 64 bit version of all of your tools in order to be able to run that one 64 bit tool you need.&lt;/p&gt;

&lt;p&gt;Developers can take advantage of multi-architecture binaries to bundle software so it can run 32 or 64 bit. One copy of the application with runtime detection of architecture, if it can run 64 bit it will, if can&#039;t it can run 32 bit. (for all those Core Duo and Power PC&#039;s that are 32 bit only)&lt;/p&gt;

&lt;p&gt;All 64 bit applications are loaded starting a 4GB. If your code isn&#039;t 64 bit clean it croaks immediately. :-)&lt;/p&gt;

&lt;p&gt;Loading 64 bit applications at 4GB also allows Apple to leave a map to 32 bit space in place. Thunking back and forth is very very clean, especially for shared libraries. Your 64 bit code does not have to be pure 64 bit! (Solaris its one or the other)&lt;/p&gt;

&lt;p&gt;64 bit architecture has a totally clean no compromises ABI that cleans up several issues still present in the 32 bit ABI. It is also more &quot;future proof&quot;, they took all they learned from years of supporting the 32 bit ABI and wrote the 64 bit ABI.&lt;/p&gt;

&lt;p&gt;All this is built using Apple&#039;s latest hopped up compilers which take code generation to a whole new level on the Intel CPU&#039;s e.g. pretty much across the board speed boost for re-compiled applications (which is the whole OS, built in Apps and all the iApps.)&lt;/p&gt;

&lt;p&gt;Not specific to 64 bit support but Apple re-architected critical areas in Quartz in order to boost performance to the GPU (not CPU, GPU) for Core Animation etc... Many Quartz operations benefit from this work as well so the UI is snappier for 2D and 3D operations.&lt;/p&gt;

&lt;p&gt;They also provided a new means for setting up insanely fast stream I/O operations. Applications have to be upgraded to use this stuff but it enables a whole new level of performance for slinging around large amounts of data.&lt;/p&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>Now it can be told&#8230; found their new features page so the cat is out of the bag.</p>
<p>What Apple did right about 64 bit in Leopard&#8230;</p>
<p>The Kernel is 32 bit on both Intel Core 2 Duo/Xeon (only Intel chips with 64 bit) and on the G5 (only PowerPC with 64 bit). So all of your existing device drivers continue to work with 64 bit applications. And those of  you with G5&#8217;s get seamless 64 bit as well, not just those with new Intel CPU&#8217;s.</p>
<p>This feature also means that 32 bit and 64 bit applications run side by side at the same time. You are not forced to find a 64 bit version of all of your tools in order to be able to run that one 64 bit tool you need.</p>
<p>Developers can take advantage of multi-architecture binaries to bundle software so it can run 32 or 64 bit. One copy of the application with runtime detection of architecture, if it can run 64 bit it will, if can&#8217;t it can run 32 bit. (for all those Core Duo and Power PC&#8217;s that are 32 bit only)</p>
<p>All 64 bit applications are loaded starting a 4GB. If your code isn&#8217;t 64 bit clean it croaks immediately. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Loading 64 bit applications at 4GB also allows Apple to leave a map to 32 bit space in place. Thunking back and forth is very very clean, especially for shared libraries. Your 64 bit code does not have to be pure 64 bit! (Solaris its one or the other)</p>
<p>64 bit architecture has a totally clean no compromises ABI that cleans up several issues still present in the 32 bit ABI. It is also more &#8220;future proof&#8221;, they took all they learned from years of supporting the 32 bit ABI and wrote the 64 bit ABI.</p>
<p>All this is built using Apple&#8217;s latest hopped up compilers which take code generation to a whole new level on the Intel CPU&#8217;s e.g. pretty much across the board speed boost for re-compiled applications (which is the whole OS, built in Apps and all the iApps.)</p>
<p>Not specific to 64 bit support but Apple re-architected critical areas in Quartz in order to boost performance to the GPU (not CPU, GPU) for Core Animation etc&#8230; Many Quartz operations benefit from this work as well so the UI is snappier for 2D and 3D operations.</p>
<p>They also provided a new means for setting up insanely fast stream I/O operations. Applications have to be upgraded to use this stuff but it enables a whole new level of performance for slinging around large amounts of data.</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sumocat</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17540</link>
		<dc:creator>Sumocat</dc:creator>
		<pubDate>Tue, 16 Oct 2007 10:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17540</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
        &lt;p&gt;I&#039;m no Mac expert, but the marketing material seems to indicate that Leopard will take better advantage of the processors in the Mac Pro and server, as well as open that power up to developers. Furthermore, the focus seems to be on leveraging this to run more powerful apps, not to run existing apps faster. I&#039;m under the impression you won&#039;t see much of a difference on your MBP.&lt;/p&gt;
      &lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>I&#8217;m no Mac expert, but the marketing material seems to indicate that Leopard will take better advantage of the processors in the Mac Pro and server, as well as open that power up to developers. Furthermore, the focus seems to be on leveraging this to run more powerful apps, not to run existing apps faster. I&#8217;m under the impression you won&#8217;t see much of a difference on your MBP.</p>
</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scotty</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17542</link>
		<dc:creator>Scotty</dc:creator>
		<pubDate>Tue, 16 Oct 2007 10:01:40 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17542</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt; Brian E be ready to eat a plate of crow come Oct 26. :-)&lt;/p&gt;

&lt;p&gt;Even before the iPhone cut in line and took away resources Leopard had already been given a longer development cycle. Apple used that time to do some serious house cleaning and remodeling &quot;back stage&quot;.&lt;/p&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p> Brian E be ready to eat a plate of crow come Oct 26. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Even before the iPhone cut in line and took away resources Leopard had already been given a longer development cycle. Apple used that time to do some serious house cleaning and remodeling &#8220;back stage&#8221;.</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17543</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Tue, 16 Oct 2007 07:18:30 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17543</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;As someone who programs 64 bit apps on Tiger already (only commandline apps), I don&#039;t think you&#039;ll see much of a difference going to 64 bit in terms of speed of execution.&lt;/p&gt;

&lt;p&gt;However, according to public info on apple.com, Leopard will support proper thread-affinity for multithreaded applications.  This is a significant performance bottleneck on Tiger (basically, what happens is that threads can &#039;jump around&#039; from one core to another, causing excessive cache misses, etc.)  On Leopard, threads will stay put on the same core for longer periods of time, making multithreaded apps run faster (I&#039;m estimating up to 30% improvement when using all 8 cores on my Mac Pro).&lt;/p&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>As someone who programs 64 bit apps on Tiger already (only commandline apps), I don&#8217;t think you&#8217;ll see much of a difference going to 64 bit in terms of speed of execution.</p>
<p>However, according to public info on apple.com, Leopard will support proper thread-affinity for multithreaded applications.  This is a significant performance bottleneck on Tiger (basically, what happens is that threads can &#8216;jump around&#8217; from one core to another, causing excessive cache misses, etc.)  On Leopard, threads will stay put on the same core for longer periods of time, making multithreaded apps run faster (I&#8217;m estimating up to 30% improvement when using all 8 cores on my Mac Pro).</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Harms</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17544</link>
		<dc:creator>Patrick Harms</dc:creator>
		<pubDate>Mon, 15 Oct 2007 23:57:51 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17544</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;While it&#039;s true that most things eat up more memory when going from 32bit to 64bit, AMD added some registers to the CPU that are available when running in native 64bit mode, so more stuff can be kept in those registers and less has to go back to slow RAM. Also, having more address space helps programs that use really huge amounts of memory (like a database server or the stuff I write for a living). So in theory the 64bit code could be more efficient.&lt;/p&gt;

&lt;p&gt;In practice however there is rarely a performance benefit from going to 64bit. The 64bit compilers are still a lot worse at generating efficient code (this is especially true for gcc, which historically produces sub-optimal code from an efficiency standpoint). Also, as switching from 64bit to 32bit operation mode costs a lot of CPU cycles, I&#039;d say that there will be no noticable performance gains from going to 64bit. If Leopard performs any better, then it&#039;s very likely not because it&#039;s a 64bit operating system, but because Apple did a lot of optimizing on their code base.&lt;/p&gt;

&lt;p&gt;BTW: Windows NT&#039;s (XP&#039;s, Vista&#039;s) 64bit implementation is very clean and fast and works really well. The perceived &quot;awfulness&quot; most likely comes from the lack of mature drivers for most hardware (because most driver developers - especially for today&#039;s GPUs - are seemingly not very good at what they do). If OSX would have to support even one percent of the amount of different hardware that Windows has to, people would complain about that, too.&lt;/p&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>While it&#8217;s true that most things eat up more memory when going from 32bit to 64bit, AMD added some registers to the CPU that are available when running in native 64bit mode, so more stuff can be kept in those registers and less has to go back to slow RAM. Also, having more address space helps programs that use really huge amounts of memory (like a database server or the stuff I write for a living). So in theory the 64bit code could be more efficient.</p>
<p>In practice however there is rarely a performance benefit from going to 64bit. The 64bit compilers are still a lot worse at generating efficient code (this is especially true for gcc, which historically produces sub-optimal code from an efficiency standpoint). Also, as switching from 64bit to 32bit operation mode costs a lot of CPU cycles, I&#8217;d say that there will be no noticable performance gains from going to 64bit. If Leopard performs any better, then it&#8217;s very likely not because it&#8217;s a 64bit operating system, but because Apple did a lot of optimizing on their code base.</p>
<p>BTW: Windows NT&#8217;s (XP&#8217;s, Vista&#8217;s) 64bit implementation is very clean and fast and works really well. The perceived &#8220;awfulness&#8221; most likely comes from the lack of mature drivers for most hardware (because most driver developers &#8211; especially for today&#8217;s GPUs &#8211; are seemingly not very good at what they do). If OSX would have to support even one percent of the amount of different hardware that Windows has to, people would complain about that, too.</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Drawbaugh</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17546</link>
		<dc:creator>Ben Drawbaugh</dc:creator>
		<pubDate>Mon, 15 Oct 2007 19:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17546</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
        &lt;p&gt;The amazing thing about the two OSX upgrades I&#039;ve done is that the new system is faster even without any 32/64 bit changes. And both of these were in place upgrades. &lt;/p&gt;
      &lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>The amazing thing about the two OSX upgrades I&#8217;ve done is that the new system is faster even without any 32/64 bit changes. And both of these were in place upgrades. </p>
</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian E</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17549</link>
		<dc:creator>Brian E</dc:creator>
		<pubDate>Mon, 15 Oct 2007 17:12:59 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17549</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
        &lt;p&gt;Vista&#039;s approach to 64-bit is awful, but Leopard is nothing special. Sun&#039;s Solaris has been doing the 64-bit with full 32-bit compatibility thing for a long time now. Even Linux looks clunky next to it.&lt;/p&gt;
      &lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>Vista&#8217;s approach to 64-bit is awful, but Leopard is nothing special. Sun&#8217;s Solaris has been doing the 64-bit with full 32-bit compatibility thing for a long time now. Even Linux looks clunky next to it.</p>
</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: stwf</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17552</link>
		<dc:creator>stwf</dc:creator>
		<pubDate>Mon, 15 Oct 2007 16:13:32 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17552</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
        &lt;p&gt;as noted, technically a 64 bit system will slow everything down, all other things kept the same. But all other thing are never kept the same.&lt;br /&gt;
Intel chips deliver many more registers for compiler use in 64 bit mode, so some operations can be sped up, but I wouldn&#039;t expect much more than a break even.&lt;br /&gt;
Of course Apps that use 64 bits data types, and have been jumping through hoops up until now will see a big increase due to native support.&lt;br /&gt;
And overall I think I can say leopard is nicely faster than Tiger, especially in the finder, but I&#039;d think thats unrelated to 64bit stuff.&lt;/p&gt;
      &lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>as noted, technically a 64 bit system will slow everything down, all other things kept the same. But all other thing are never kept the same.<br />
Intel chips deliver many more registers for compiler use in 64 bit mode, so some operations can be sped up, but I wouldn&#8217;t expect much more than a break even.<br />
Of course Apps that use 64 bits data types, and have been jumping through hoops up until now will see a big increase due to native support.<br />
And overall I think I can say leopard is nicely faster than Tiger, especially in the finder, but I&#8217;d think thats unrelated to 64bit stuff.</p>
</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17555</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 15 Oct 2007 15:36:09 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17555</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
        &lt;p&gt;Remember, Apple&#039;s Universal Binaries now support 32- and 64-bit for both Intel and PPC (the G5 is 64 bit). As I understand it, Leopard&#039;s 64-bit support should make more of a performance difference on Intel, though. The PPC architecture was clean from the outset, but in the x86 world they (AMD actually) took the opportunity to clean things up (many general registers, etc.), so an x86 chip in 64-bit mode is more efficient than one in the 32-bit, legacy-supporting mode, and hopefully we&#039;ll see some performance improvements.&lt;/p&gt;
      &lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>Remember, Apple&#8217;s Universal Binaries now support 32- and 64-bit for both Intel and PPC (the G5 is 64 bit). As I understand it, Leopard&#8217;s 64-bit support should make more of a performance difference on Intel, though. The PPC architecture was clean from the outset, but in the x86 world they (AMD actually) took the opportunity to clean things up (many general registers, etc.), so an x86 chip in 64-bit mode is more efficient than one in the 32-bit, legacy-supporting mode, and hopefully we&#8217;ll see some performance improvements.</p>
</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scotty</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17557</link>
		<dc:creator>Scotty</dc:creator>
		<pubDate>Mon, 15 Oct 2007 14:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17557</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
        &lt;p&gt;Absolutely correct, which is what makes what Apple has done so gosh darn cool compared to Vista. And don&#039;t forget, the iPhone is built on Leopard, not Tiger... :-)&lt;/p&gt;
      &lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>Absolutely correct, which is what makes what Apple has done so gosh darn cool compared to Vista. And don&#8217;t forget, the iPhone is built on Leopard, not Tiger&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17560</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Mon, 15 Oct 2007 14:23:55 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17560</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;Well first, you shouldn&#039;t assume 64 bits automatically means better performance.  With it comes overhead to operations that worked perfectly well in 32 bits.  For example, a lot of internal structures now eat up twice as much memory by default (think of a &quot;1&quot; stored in 32- vs. 64-bits).  Sure, that should be offset by some improvements and optimizations elsewhere, but by default it just means that everything is bigger (and not necessarily better).  Maybe we&#039;ll see some real numbers closer to launch, but I would tend to think that if there really were huge performance boosts, Apple would have been playing it up by now.  And don&#039;t forget that there was a lot of hype that 10.4 was &quot;64-bit&quot;.  But since it wasn&#039;t a complete 64-bit implementation, I guess they get to use the same tag lines all over again.&lt;/p&gt;

&lt;p&gt;All that said, Apple does have a bit of a track record in actually improving performance with its OS releases.  It&#039;s not always consistent across the board, of course, but generally not the sort of &quot;time-to-buy-a-new-computer&quot; upgrade experience you get with Windows.&lt;/p&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>Well first, you shouldn&#8217;t assume 64 bits automatically means better performance.  With it comes overhead to operations that worked perfectly well in 32 bits.  For example, a lot of internal structures now eat up twice as much memory by default (think of a &#8220;1&#8243; stored in 32- vs. 64-bits).  Sure, that should be offset by some improvements and optimizations elsewhere, but by default it just means that everything is bigger (and not necessarily better).  Maybe we&#8217;ll see some real numbers closer to launch, but I would tend to think that if there really were huge performance boosts, Apple would have been playing it up by now.  And don&#8217;t forget that there was a lot of hype that 10.4 was &#8220;64-bit&#8221;.  But since it wasn&#8217;t a complete 64-bit implementation, I guess they get to use the same tag lines all over again.</p>
<p>All that said, Apple does have a bit of a track record in actually improving performance with its OS releases.  It&#8217;s not always consistent across the board, of course, but generally not the sort of &#8220;time-to-buy-a-new-computer&#8221; upgrade experience you get with Windows.</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scotty</title>
		<link>http://jkontherun.com/2007/10/15/how-much-of-a-p/#comment-17562</link>
		<dc:creator>Scotty</dc:creator>
		<pubDate>Mon, 15 Oct 2007 14:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://jkontherun.wordpress.com/2007/10/15/how-much-of-a-p#comment-17562</guid>
		<description>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;With out revealing too much, your statement in red about what Leopard is, is fundamentally incorrect.&lt;/p&gt;

&lt;p&gt;It is far far cooler than you realize and will make Redmond look pretty gosh darn stupid for the way they handled 64 bit mode in Vista.&lt;/p&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml">
<p>With out revealing too much, your statement in red about what Leopard is, is fundamentally incorrect.</p>
<p>It is far far cooler than you realize and will make Redmond look pretty gosh darn stupid for the way they handled 64 bit mode in Vista.</p>
</div>
]]></content:encoded>
	</item>
</channel>
</rss>
