<?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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Ned's BigFaT Blog!</title>
	<atom:link href="http://makfu.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://makfu.wordpress.com</link>
	<description>Geekin Hardcore</description>
	<lastBuildDate>Thu, 20 Aug 2009 01:02:31 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on I&#8217;m back and feeling fluffy by larchoye</title>
		<link>http://makfu.wordpress.com/2009/08/10/im-back-and-feeling-fluffy/#comment-22</link>
		<dc:creator>larchoye</dc:creator>
		<pubDate>Thu, 20 Aug 2009 01:02:31 +0000</pubDate>
		<guid isPermaLink="false">http://makfu.wordpress.com/2009/08/10/im-back-and-feeling-fluffy/#comment-22</guid>
		<description>Honestly, I think that if the web is going to continue to grow, and (possibly) take over for &quot;rich application front-ends&quot;, then we are desperately going to need to design and build a seriously capable platform and device independent set of standards for multimedia and communications hardware and software technologies- AND design the next HTML / Web specification based on these standards.

256 colors, SVGA, TCP/IP, HTML 4, and a keyboard and mouse are essentially the only components of what is honestly today&#039;s &quot;standard foundation&quot; for the web.  

Yes, of course you can &#039;assume&#039; that your end users have Flash, 1024x768+ resolution, a javascript enabled browser, decent enough display hardware, ram, and cpu to render CSS transitions and other dynamic content, and that their connection speed (as well as the application server&#039;s bandwidth) is sufficient to provide a &#039;usable&#039; experience...  

But I think it&#039;s time we got to work on building the next generation &#039;virtual platform&#039; for computing devices- which would be able to output dynamic, high resolution, 3D accelerated page/application content (Like say, Google Earth) - Without developers having to build separate application front-ends for each different device/OS platform...

Hmmm</description>
		<content:encoded><![CDATA[<p>Honestly, I think that if the web is going to continue to grow, and (possibly) take over for &#8220;rich application front-ends&#8221;, then we are desperately going to need to design and build a seriously capable platform and device independent set of standards for multimedia and communications hardware and software technologies- AND design the next HTML / Web specification based on these standards.</p>
<p>256 colors, SVGA, TCP/IP, HTML 4, and a keyboard and mouse are essentially the only components of what is honestly today&#8217;s &#8220;standard foundation&#8221; for the web.  </p>
<p>Yes, of course you can &#8216;assume&#8217; that your end users have Flash, 1024&#215;768+ resolution, a javascript enabled browser, decent enough display hardware, ram, and cpu to render CSS transitions and other dynamic content, and that their connection speed (as well as the application server&#8217;s bandwidth) is sufficient to provide a &#8216;usable&#8217; experience&#8230;  </p>
<p>But I think it&#8217;s time we got to work on building the next generation &#8216;virtual platform&#8217; for computing devices- which would be able to output dynamic, high resolution, 3D accelerated page/application content (Like say, Google Earth) &#8211; Without developers having to build separate application front-ends for each different device/OS platform&#8230;</p>
<p>Hmmm</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Okay&#8230; ONE MORE TIME by makfu</title>
		<link>http://makfu.wordpress.com/2007/08/09/okay-one-more-time/#comment-21</link>
		<dc:creator>makfu</dc:creator>
		<pubDate>Wed, 24 Sep 2008 22:42:45 +0000</pubDate>
		<guid isPermaLink="false">http://makfu.wordpress.com/2007/08/09/okay-one-more-time/#comment-21</guid>
		<description>In my typical fashion, it has taken me 2 months to reply, but here it goes:

Dennis, memory IO reservations have nothing to do with Vista&#039;s requirements and everything to do with hardware. These memory reservations are required by devices so that memory mapped IO can undertaken with the device in question. As such, the device is mapped into a region of the 32bit linear address space. Once the device is mapped into that space, nothing else, including physical memory, can be mapped at those same address locations.

So, if you have, say, a video card with a 256MB framebuffer, in order for the system to communicate with that framebuffer efficiently, it is mapped into the systems physical linear address space and subsequently maps out the physical memory that would otherwise be available at that location. Now, if no physical memory is actually present at that location, there is no issue, which is why on sub 4GB 32bit configurations, this wasn&#039;t an issue - there was no collision between devices needing address space and physical memory.

Now, the way 64bit systems work around this is that they have a huge 40-44bit (depending on CPU type) physical address space currently available, so physical memory and memIO reservations need not overlap (though if you actually were to max out the 40-44 bits of physical memory support of a current generation of x64 CPU, you would indeed see that about 768MB of your 1TB of expected memory would be missing).

On 32bit server systems, we are able to enable something called PAE with remap support, which are 32bit physical address extensions, wherein we enable 3-level page translation to a 36bit physical address space. As with 64bit systems, once the physical address space has been expanded, we no longer need have the overlap situation, which is why you don&#039;t see the problem on Server 2003/2008 32bit. Again, we don&#039;t allow address space remap in the client 32bit SKU&#039;s due to a history of problematic device drivers and physical hardware that didn&#039;t always play nice in a remap scenario (e.g. older consumer hardware with firmware or drivers that expected an unmodified 32bit physical address map).</description>
		<content:encoded><![CDATA[<p>In my typical fashion, it has taken me 2 months to reply, but here it goes:</p>
<p>Dennis, memory IO reservations have nothing to do with Vista&#8217;s requirements and everything to do with hardware. These memory reservations are required by devices so that memory mapped IO can undertaken with the device in question. As such, the device is mapped into a region of the 32bit linear address space. Once the device is mapped into that space, nothing else, including physical memory, can be mapped at those same address locations.</p>
<p>So, if you have, say, a video card with a 256MB framebuffer, in order for the system to communicate with that framebuffer efficiently, it is mapped into the systems physical linear address space and subsequently maps out the physical memory that would otherwise be available at that location. Now, if no physical memory is actually present at that location, there is no issue, which is why on sub 4GB 32bit configurations, this wasn&#8217;t an issue &#8211; there was no collision between devices needing address space and physical memory.</p>
<p>Now, the way 64bit systems work around this is that they have a huge 40-44bit (depending on CPU type) physical address space currently available, so physical memory and memIO reservations need not overlap (though if you actually were to max out the 40-44 bits of physical memory support of a current generation of x64 CPU, you would indeed see that about 768MB of your 1TB of expected memory would be missing).</p>
<p>On 32bit server systems, we are able to enable something called PAE with remap support, which are 32bit physical address extensions, wherein we enable 3-level page translation to a 36bit physical address space. As with 64bit systems, once the physical address space has been expanded, we no longer need have the overlap situation, which is why you don&#8217;t see the problem on Server 2003/2008 32bit. Again, we don&#8217;t allow address space remap in the client 32bit SKU&#8217;s due to a history of problematic device drivers and physical hardware that didn&#8217;t always play nice in a remap scenario (e.g. older consumer hardware with firmware or drivers that expected an unmodified 32bit physical address map).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Okay&#8230; ONE MORE TIME by Dennis Wright</title>
		<link>http://makfu.wordpress.com/2007/08/09/okay-one-more-time/#comment-20</link>
		<dc:creator>Dennis Wright</dc:creator>
		<pubDate>Wed, 23 Jul 2008 17:08:50 +0000</pubDate>
		<guid isPermaLink="false">http://makfu.wordpress.com/2007/08/09/okay-one-more-time/#comment-20</guid>
		<description>OK, I have just upped the RAM on my Vista PC from 1GB to 5GB physical, reported in msinfo32 as 3.25GB, being max 4GB addressable minus reservations.

So if Vista needs to reserve 0.75GB for various purposes, how come when I only had 1GB of physical RAM was it not limiting me to 0.25GB usable!</description>
		<content:encoded><![CDATA[<p>OK, I have just upped the RAM on my Vista PC from 1GB to 5GB physical, reported in msinfo32 as 3.25GB, being max 4GB addressable minus reservations.</p>
<p>So if Vista needs to reserve 0.75GB for various purposes, how come when I only had 1GB of physical RAM was it not limiting me to 0.25GB usable!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vista Performance Recommendations (no funny title for this post) by naphtali011</title>
		<link>http://makfu.wordpress.com/2008/04/11/vista-performance-recommendations-no-funny-title-for-this-post/#comment-19</link>
		<dc:creator>naphtali011</dc:creator>
		<pubDate>Sun, 13 Apr 2008 01:40:22 +0000</pubDate>
		<guid isPermaLink="false">http://makfu.wordpress.com/?p=47#comment-19</guid>
		<description>I didn&#039;t see it in your article, but item #7 can be enabled from the Policies tab of your hard drive Properties page in Device Manager.</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t see it in your article, but item #7 can be enabled from the Policies tab of your hard drive Properties page in Device Manager.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Would you like some cheese with that whine? by mooksterct</title>
		<link>http://makfu.wordpress.com/2008/03/28/would-you-like-some-cheese-with-that-whine/#comment-18</link>
		<dc:creator>mooksterct</dc:creator>
		<pubDate>Thu, 03 Apr 2008 06:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://makfu.wordpress.com/?p=46#comment-18</guid>
		<description>Great couple of articles, makfu (It&#039;s noctem)

I&#039;d like to hear your thoughts on the MS OOXML specs and why all the loonix folks hate it :)</description>
		<content:encoded><![CDATA[<p>Great couple of articles, makfu (It&#8217;s noctem)</p>
<p>I&#8217;d like to hear your thoughts on the MS OOXML specs and why all the loonix folks hate it <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Okay&#8230; ONE MORE TIME by naphtali011</title>
		<link>http://makfu.wordpress.com/2007/08/09/okay-one-more-time/#comment-17</link>
		<dc:creator>naphtali011</dc:creator>
		<pubDate>Thu, 09 Aug 2007 02:17:54 +0000</pubDate>
		<guid isPermaLink="false">http://makfu.wordpress.com/2007/08/09/okay-one-more-time/#comment-17</guid>
		<description>If you don&#039;t have VS2005, you can download Visual C++ 2005 Express Edition from &lt;a href=&quot;http://msdn.microsoft.com/vstudio/express/visualc/default.aspx&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt; for free.</description>
		<content:encoded><![CDATA[<p>If you don&#8217;t have VS2005, you can download Visual C++ 2005 Express Edition from <a href="http://msdn.microsoft.com/vstudio/express/visualc/default.aspx" rel="nofollow">here</a> for free.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MEDIC!!! by Ned</title>
		<link>http://makfu.wordpress.com/2007/04/06/medic/#comment-16</link>
		<dc:creator>Ned</dc:creator>
		<pubDate>Tue, 12 Jun 2007 20:54:28 +0000</pubDate>
		<guid isPermaLink="false">http://makfu.wordpress.com/2007/04/06/medic/#comment-16</guid>
		<description>Sorry, haven&#039;t been paying attention - I don&#039;t know about the e-link issue. Post back an e-mail address and I will try to get back to you with a solution.&lt;br/&gt;&lt;br/&gt;As for the first poster, an elevated prompt is sinply one which you launched by right clicking on the Command Prompt icon and selected &quot;Run As Administrator&quot;.</description>
		<content:encoded><![CDATA[<p>Sorry, haven&#8217;t been paying attention &#8211; I don&#8217;t know about the e-link issue. Post back an e-mail address and I will try to get back to you with a solution.</p>
<p>As for the first poster, an elevated prompt is sinply one which you launched by right clicking on the Command Prompt icon and selected &#8220;Run As Administrator&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MEDIC!!! by Anonymous</title>
		<link>http://makfu.wordpress.com/2007/04/06/medic/#comment-15</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 12 Jun 2007 20:14:41 +0000</pubDate>
		<guid isPermaLink="false">http://makfu.wordpress.com/2007/04/06/medic/#comment-15</guid>
		<description>What is an elevated command prompt?&lt;br/&gt;I replaced the bf2142.exe with yours and it just stops working&lt;br/&gt;&lt;br/&gt;I&#039;m a noob at this&lt;br/&gt;&lt;br/&gt;BoOoMSt1cK</description>
		<content:encoded><![CDATA[<p>What is an elevated command prompt?<br />I replaced the bf2142.exe with yours and it just stops working</p>
<p>I&#8217;m a noob at this</p>
<p>BoOoMSt1cK</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wow &#8211; as bloggers go, I suck. by pp6bfv59xtnu</title>
		<link>http://makfu.wordpress.com/2006/10/04/wow-as-bloggers-go-i-suck/#comment-14</link>
		<dc:creator>pp6bfv59xtnu</dc:creator>
		<pubDate>Sun, 08 Oct 2006 11:30:15 +0000</pubDate>
		<guid isPermaLink="false">http://makfu.wordpress.com/2006/10/04/wow-as-bloggers-go-i-suck/#comment-14</guid>
		<description>hey, I just  got a &lt;a HREF=&quot;http://www.beginninghouse.com&quot; REL=&quot;nofollow&quot;&gt;free $500.00 Gift Card&lt;/a&gt;. you can redeem yours at Abercrombie &amp; Fitch All you have to do to get yours is &lt;a HREF=&quot;http://www.beginninghouse.com&quot; REL=&quot;nofollow&quot;&gt;Click Here to get a $500 free gift card for your backtoschool wardrobe&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>hey, I just  got a <a HREF="http://www.beginninghouse.com" REL="nofollow">free $500.00 Gift Card</a>. you can redeem yours at Abercrombie &#038; Fitch All you have to do to get yours is <a HREF="http://www.beginninghouse.com" REL="nofollow">Click Here to get a $500 free gift card for your backtoschool wardrobe</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Holy Vista Batman! by Anonymous</title>
		<link>http://makfu.wordpress.com/2005/08/11/holy-vista-batman/#comment-10</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 14 Nov 2005 22:22:10 +0000</pubDate>
		<guid isPermaLink="false">http://makfu.wordpress.com/2005/08/11/holy-vista-batman/#comment-10</guid>
		<description>Hey! Great blog you got here, i enjoy reading your daily entries. Btw, i stumbled across this free Sony PSP thing from another blog entry cuz some kid posted a actual pic of him getting it and i really does work. if anyone wants to sign up  go here&lt;br/&gt;&lt;br/&gt;&lt;a HREF=&quot;http://www.yourdomain.com&quot; REL=&quot;nofollow&quot;&gt;**Free PSP*&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hey! Great blog you got here, i enjoy reading your daily entries. Btw, i stumbled across this free Sony PSP thing from another blog entry cuz some kid posted a actual pic of him getting it and i really does work. if anyone wants to sign up  go here</p>
<p><a HREF="http://www.yourdomain.com" REL="nofollow">**Free PSP*</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
