<?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 DirectX Blog</title>
	<atom:link href="http://directx.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://directx.com</link>
	<description>Graphics, Performance, Threading, Math, etc.</description>
	<lastBuildDate>Wed, 18 Apr 2012 10:27:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Augmented Reality: Suddenly it&#8217;s hot &#8211; are we reaching a tipping point? by Anonymous</title>
		<link>http://directx.com/2012/04/augmented-reality-suddenly-its-hot-are-we-reaching-a-tipping-point/#comment-269</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 18 Apr 2012 10:27:21 +0000</pubDate>
		<guid isPermaLink="false">http://directx.com/?p=452#comment-269</guid>
		<description>Great post.</description>
		<content:encoded><![CDATA[<p>Great post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DirectX 9.0a SDK is available by Sara</title>
		<link>http://directx.com/2003/05/directx-9-0a-sdk-is-available/#comment-247</link>
		<dc:creator>Sara</dc:creator>
		<pubDate>Thu, 22 Mar 2012 08:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://directx.com/?p=220#comment-247</guid>
		<description>Stuart,actually Ruby methods can be paessd any number of lambdas:  foo = proc {&#124;a&#124;   }  bar = proc {&#124;b&#124;   }  doSomething(foo, bar)( proc  is even aliased to  lambda )The form:  doSomething {&#124;c&#124;        } is syntactical sugar on the outer side of doSomething for when you need just one lambda, and enables some syntactical sugar on the inner side: it lets you pass control and data to the block with  yield x  instead of  block.call(x) .I got interested in Lisp (and eventually fell in love with it) while  programming in Ruby.  I really hope the two communities will be friendly to each other because they have so much in common.</description>
		<content:encoded><![CDATA[<p>Stuart,actually Ruby methods can be paessd any number of lambdas:  foo = proc {|a|   }  bar = proc {|b|   }  doSomething(foo, bar)( proc  is even aliased to  lambda )The form:  doSomething {|c|        } is syntactical sugar on the outer side of doSomething for when you need just one lambda, and enables some syntactical sugar on the inner side: it lets you pass control and data to the block with  yield x  instead of  block.call(x) .I got interested in Lisp (and eventually fell in love with it) while  programming in Ruby.  I really hope the two communities will be friendly to each other because they have so much in common.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with C++0X/C++11: Lambdas &#8211; part 3 &#8211; introducing closures by Endanx</title>
		<link>http://directx.com/2012/02/working-with-c0xc11-lambdas-part-3-introducing-closures/#comment-244</link>
		<dc:creator>Endanx</dc:creator>
		<pubDate>Wed, 21 Mar 2012 19:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://directx.com/?p=399#comment-244</guid>
		<description>I don&#039;t think meaningful iattnendion is a problem in evolving a language much more than any other specific syntax rule.Python has evolved a lot in semantics even if just slightly in syntax, but there is quite a bit of new stuff there too.For example, ruby&#039;s special cased one-function-argument syntax makes it harder to provide multiple blocks as in Smalltalk, or think of how hard adding a pythonic/javaish stackable function decorator syntax with arguments would be.I think meaningful iattnendion may be a slightly more pesky problem, but not really much.As for the  python lambdas are not closures  python lambdas do carry their environment, the problem is you can&#039;t use assignment in lambdas, and even using nested functions when you try to reassign to a variable that you got from an outer scope you&#039;ll create a new local one, i.e.:&gt;&gt;&gt; def exp(num):   def f():    num= num * num    return num   return f&gt;&gt;&gt; powers_of_two=exp(2)&gt;&gt;&gt; power_of_two()Traceback (most recent call last):File   , line 1, in ?File   , line 3, in fUnboundLocalError: local variable  num&#039; referenced before assignmentwhich is different from any other closure system I&#039;m aware of.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think meaningful iattnendion is a problem in evolving a language much more than any other specific syntax rule.Python has evolved a lot in semantics even if just slightly in syntax, but there is quite a bit of new stuff there too.For example, ruby&#8217;s special cased one-function-argument syntax makes it harder to provide multiple blocks as in Smalltalk, or think of how hard adding a pythonic/javaish stackable function decorator syntax with arguments would be.I think meaningful iattnendion may be a slightly more pesky problem, but not really much.As for the  python lambdas are not closures  python lambdas do carry their environment, the problem is you can&#8217;t use assignment in lambdas, and even using nested functions when you try to reassign to a variable that you got from an outer scope you&#8217;ll create a new local one, i.e.:&gt;&gt;&gt; def exp(num):   def f():    num= num * num    return num   return f&gt;&gt;&gt; powers_of_two=exp(2)&gt;&gt;&gt; power_of_two()Traceback (most recent call last):File   , line 1, in ?File   , line 3, in fUnboundLocalError: local variable  num&#8217; referenced before assignmentwhich is different from any other closure system I&#8217;m aware of.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Phantom Lapboard &#8211; still alive by Ewelina</title>
		<link>http://directx.com/2012/01/phantom-lapboard-still-barely-alive/#comment-241</link>
		<dc:creator>Ewelina</dc:creator>
		<pubDate>Wed, 21 Mar 2012 15:14:54 +0000</pubDate>
		<guid isPermaLink="false">http://directx.com/?p=386#comment-241</guid>
		<description>Hi I did all that but Im still not sure how to make it work or what to do next after that, I have a windows 7 vaio ptalop and I bought arkham city on steam but I dont know how to tell if  is working or how to make it work so I﻿ can play the game, please for the like of god help me! Im dying to play that game! Please get back to me as soon as you can.</description>
		<content:encoded><![CDATA[<p>Hi I did all that but Im still not sure how to make it work or what to do next after that, I have a windows 7 vaio ptalop and I bought arkham city on steam but I dont know how to tell if  is working or how to make it work so I﻿ can play the game, please for the like of god help me! Im dying to play that game! Please get back to me as soon as you can.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DirectX 9.0a SDK is available by Ron</title>
		<link>http://directx.com/2003/05/directx-9-0a-sdk-is-available/#comment-238</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Sat, 17 Mar 2012 21:18:48 +0000</pubDate>
		<guid isPermaLink="false">http://directx.com/?p=220#comment-238</guid>
		<description>You can get it on Microsoft&#039;s site
&lt;a href=&quot;http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=35&quot; title=&quot;DirectX Download&quot; rel=&quot;nofollow&quot;&gt;DirectX Download&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>You can get it on Microsoft&#8217;s site<br />
<a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&#038;id=35" title="DirectX Download" rel="nofollow">DirectX Download</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Otto Berkes  – the last Xbox founder – leaves Microsoft by Wedding Dj adelaide</title>
		<link>http://directx.com/2011/06/otto-berkes-the-last-xbox-founder-leaves-microsoft/#comment-230</link>
		<dc:creator>Wedding Dj adelaide</dc:creator>
		<pubDate>Mon, 12 Mar 2012 03:04:46 +0000</pubDate>
		<guid isPermaLink="false">http://directx.com/?p=198#comment-230</guid>
		<description>This is the first time I&#039;ve been to your site. Thank you for providing more details.</description>
		<content:encoded><![CDATA[<p>This is the first time I&#8217;ve been to your site. Thank you for providing more details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DirectX 9.0a SDK is available by Charles Forsyth</title>
		<link>http://directx.com/2003/05/directx-9-0a-sdk-is-available/#comment-191</link>
		<dc:creator>Charles Forsyth</dc:creator>
		<pubDate>Tue, 31 Jan 2012 03:43:19 +0000</pubDate>
		<guid isPermaLink="false">http://directx.com/?p=220#comment-191</guid>
		<description>I Was Ask To Download DirectX 9.0 For A Computre Game To Work Right On My Computer. So That&#039;s Why I&#039;m Here Now, To Down Load It Into My Computer. Thank You.</description>
		<content:encoded><![CDATA[<p>I Was Ask To Download DirectX 9.0 For A Computre Game To Work Right On My Computer. So That&#8217;s Why I&#8217;m Here Now, To Down Load It Into My Computer. Thank You.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WARP-Microsoft’s “fast” DirectX software rasterizer by kola02121</title>
		<link>http://directx.com/2009/02/warp-microsofts-fast-directx-software-rasterizer/#comment-173</link>
		<dc:creator>kola02121</dc:creator>
		<pubDate>Fri, 13 Jan 2012 15:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://directx.com/?p=32#comment-173</guid>
		<description>cool</description>
		<content:encoded><![CDATA[<p>cool</p>
]]></content:encoded>
	</item>
</channel>
</rss>
