<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx</link><description>Jim Hugunin just gave a great paper on writing his IronPython implementation on top of the CLR at PyCON . In particular Jim says (referring to previous comments by folks indicating the CLR does not handle dynamic languages well): "I wanted to pinpoint</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#103432</link><pubDate>Tue, 30 Mar 2004 15:11:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:103432</guid><dc:creator>Michael Collins</dc:creator><description>It is my belief that this is an important development and that improving support for &amp;quot;scripting&amp;quot; languages is an important benefit for the .NET platform. On Java projects that I've worked on in the past, I've used scripting languages such as Jython, JavaScript, and Ruby to add extensibility support to my applications. I'd like to see the ability to do this on the .NET platform and the same rich languages made available through scripting engines to .NET applications.</description></item><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#104182</link><pubDate>Tue, 30 Mar 2004 21:35:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:104182</guid><dc:creator>RJ</dc:creator><description>Where can we find more info on LCG in Whidbey? Has this info been made public?</description></item><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#104360</link><pubDate>Wed, 31 Mar 2004 00:31:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:104360</guid><dc:creator>Larry Wright</dc:creator><description>I'm confortable in a lot of languages. VB, C#, C++, Python. When I need to find a solution to a problem I often find myself reaching for Python, particularly if this isn't a GUI sort of thing. Python is quick to develop in, elegent, and has a ton of libraries available that can handle just about anything I might need to do. C# is a nice language, and if you're coding GUI's, it's great. I think MS is missing the boat though by not including a really good dynamic language in the mix (no, I don't count Jscript).</description></item><item><title>On Programming Language Futures</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#104455</link><pubDate>Wed, 31 Mar 2004 05:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:104455</guid><dc:creator>Brad Abrams </dc:creator><description /></item><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#104588</link><pubDate>Wed, 31 Mar 2004 07:05:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:104588</guid><dc:creator>Aaron Boodman</dc:creator><description>&amp;quot;no, I don't count Jscript&amp;quot;&lt;br&gt;&lt;br&gt;Just curious - why not? I rather like JScript (the old implementation, not the JScript.Net one) and I understood it to support about the same feature set as python.&lt;br&gt;&lt;br&gt;I use it constantly as a sort of super batch processing language - I've got a text editor setup usually in the background so that I can write a script, press ctrl+1 and it will run and output the results to a window. Great for quick code-gen, moving files around, whatever.&lt;br&gt;&lt;br&gt;The company I work for tried to use JScript.Net as a scripting language for a workflow engine we're building, but it's memory characteristics were too unbearable and we had to give it up. We tried working around it by using Eval() for fully dynamic execution, but then things like closures, the Function() constructor, and anonymous functions stopped working.&lt;br&gt;&lt;br&gt;Personally, I would love to see something like Python or Ruby on .Net, but I would settle for a fully conformant version of JavaScript.&lt;br&gt;</description></item><item><title>Docs on LCG</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#105253</link><pubDate>Thu, 01 Apr 2004 03:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:105253</guid><dc:creator>Jason Zander [MSFT]</dc:creator><description>Check out System.Reflection.Emit.DynamicMethod {&lt;a target="_new" href="http://longhorn.msdn.microsoft.com/lhsdk/ref/ns/system.reflection.emit/c/dynamicmethod/dynamicmethod.aspx"&gt;http://longhorn.msdn.microsoft.com/lhsdk/ref/ns/system.reflection.emit/c/dynamicmethod/dynamicmethod.aspx&lt;/a&gt;} for more detail on LCG.  It is very similar to Reflection Emit API wise...</description></item><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#105284</link><pubDate>Thu, 01 Apr 2004 04:40:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:105284</guid><dc:creator>Joel Pobar</dc:creator><description>I've cooked up a brief overview of the feature, and a small chunk of code: &lt;a target="_new" href="http://blogs.msdn.com/joelpob/archive/2004/03/31/105282.aspx"&gt;http://blogs.msdn.com/joelpob/archive/2004/03/31/105282.aspx&lt;/a&gt;&lt;br&gt;</description></item><item><title>Dynamic Languages on the CLR</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#105777</link><pubDate>Thu, 01 Apr 2004 21:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:105777</guid><dc:creator>Enjoy Every Sandwich</dc:creator><description>Jason Zander, PUM for the CLR, asked our opinions about dynamic languages and the CLR. Maybe I'm showing myself as a rube by saying this, but I just want to be able to use the language as a tool, not a philosophy.</description></item><item><title>Fast Python on the CLR</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#106761</link><pubDate>Fri, 02 Apr 2004 23:49:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:106761</guid><dc:creator>Extreme RAD from a Trading Desk</dc:creator><description /></item><item><title>Items of interest pt7</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#106819</link><pubDate>Sat, 03 Apr 2004 01:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:106819</guid><dc:creator>Andrew Stopford's Weblog</dc:creator><description /></item><item><title>Items of interest pt7</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#107151</link><pubDate>Sun, 04 Apr 2004 00:06:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:107151</guid><dc:creator>Andrew Stopford's Weblog</dc:creator><description /></item><item><title>Items of interest pt7</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#107159</link><pubDate>Sun, 04 Apr 2004 00:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:107159</guid><dc:creator>Andrew Stopford's Weblog</dc:creator><description /></item><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#110579</link><pubDate>Fri, 09 Apr 2004 20:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:110579</guid><dc:creator>Jason Zander</dc:creator><description>Looks like the url for Jim's paper was busted on the python.org site.  Here is the one from PyCon:  &lt;a target="_new" href="http://www.python.org/pycon/dc2004/papers/9"&gt;http://www.python.org/pycon/dc2004/papers/9&lt;/a&gt;</description></item><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#118410</link><pubDate>Thu, 22 Apr 2004 19:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:118410</guid><dc:creator>Luis</dc:creator><description>I'm not a professional programmer but a &amp;quot;serious&amp;quot; amateur...&lt;br&gt;I use scripting languages (php, python) for everyday tasks as well as VBA within Access.&lt;br&gt;I am sure that having a good implementation of Python in .NET would be a very good thing for everybody, including Microsoft.&lt;br&gt;&lt;br&gt;With .NET, we gained a lot, but we also missed the simplicity of VB. It offers too much for the professional developer, but the occasional user is forced to learn complex language features in order to keep on doing what he used to do with older technologies.&lt;br&gt;&lt;br&gt;We need a simple tool to get hings done with the least delay.&lt;br&gt;C# is too complex. Python can be learned in just a few hours. And programming with it is simple, fast and fun.&lt;br&gt;&lt;br&gt;We need Python in .NET!!</description></item><item><title>Python for the CLR</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#155032</link><pubDate>Mon, 14 Jun 2004 14:07:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:155032</guid><dc:creator>.NET Insights</dc:creator><description /></item><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#196804</link><pubDate>Mon, 26 Jul 2004 07:17:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:196804</guid><dc:creator>dianying xia zai</dc:creator><description>dianying xia zai:&lt;a target="_new" href="http://www.kamun.com/"&gt;http://www.kamun.com/&lt;/a&gt;&lt;br&gt;movie down:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;&lt;br&gt;mp3 xia zai:&lt;a target="_new" href="http://music.kamun.com/"&gt;http://music.kamun.com/&lt;/a&gt;&lt;br&gt;engage:&lt;a target="_new" href="http://club.kamun.com/"&gt;http://club.kamun.com/&lt;/a&gt;</description></item><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#196817</link><pubDate>Mon, 26 Jul 2004 07:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:196817</guid><dc:creator>dianying xia zai</dc:creator><description>????????:&lt;a target="_new" href="http://www.kamun.com/"&gt;http://www.kamun.com/&lt;/a&gt;&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;&lt;br&gt;MP3????:&lt;a target="_new" href="http://music.kamun.com/"&gt;http://music.kamun.com/&lt;/a&gt;&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=11&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=10&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=9&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=8&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=7&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=6&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=5&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=4&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=3&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=2&lt;br&gt;??????:&lt;a target="_new" href="http://movie.kamun.com/"&gt;http://movie.kamun.com/&lt;/a&gt;list.jsp?listid=1&lt;br&gt;</description></item><item><title>Welcome Jim Hugunin as the newest member of the CLR!</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#200405</link><pubDate>Thu, 29 Jul 2004 07:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:200405</guid><dc:creator>Jason Zander's WebLog</dc:creator><description /></item><item><title>Welcome Jim Hugunin as the newest member of the CLR!</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#200417</link><pubDate>Thu, 29 Jul 2004 08:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:200417</guid><dc:creator>Jason Zander's WebLog</dc:creator><description /></item><item><title>Welcome Jim Hugunin as the newest member of the CLR!</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#200420</link><pubDate>Thu, 29 Jul 2004 08:03:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:200420</guid><dc:creator>Jason Zander's WebLog</dc:creator><description /></item><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#202673</link><pubDate>Sat, 31 Jul 2004 00:47:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:202673</guid><dc:creator>Don't forget IDE support!</dc:creator><description>I would really like to see IronPython as a first class member of Visual Studio. People have had a lot of trouble implementing intellisense features into Python IDEs due to it's dynamic nature. I wouldn't mind sacrificing some dynamism for type inference (optionally perhaps?) as in Boo. But I must have intellisense when dealing with a large framework such as .NET.&lt;br&gt;&lt;br&gt;It would be great to leverage the large community code available for Python. It is not that C# does not have equivalent libraries. Dynamic languages often tend to have higher level libraries and this is very convenient for most programming tasks.&lt;br&gt;&lt;br&gt;Ravi Teja.</description></item><item><title>re: Python for the CLR:  Jim Hugunin's IronPython paper at PyCON</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#202699</link><pubDate>Sat, 31 Jul 2004 01:35:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:202699</guid><dc:creator>Jason Zander</dc:creator><description>I agree having first class VS support would be great here.  Once you've used intellisense you don't want to go back.  I know that Jim has spent some time thinking about that space so it'll be interesting to see what we can do there.&lt;br&gt;&lt;br&gt;wrt the libraries, one thing that would be great is to make the .NET FX and other &amp;quot;built-in&amp;quot; managed libraries easily accessible to dynamic langauges.  One of our goals with the .NET FX was to allow better leverage of common code bases (eg: one Forms package instead of four, one common set of collections instead of one per langauge, etc).  I'd love to see a world where we could continue doing that, but in a way consistent with dynamic languages (the &amp;quot;higher level&amp;quot; attribute).  Ideally it would not involve having to wrap everything.  We'll see.  Some of that may involve working on our design guidelines.  I see lots of interesting problems to solve here.</description></item><item><title> Jason Zander s WebLog Python for the CLR Jim Hugunin s IronPython | Hair Growth Products</title><link>http://blogs.msdn.com/jasonz/archive/2004/03/30/103405.aspx#9714049</link><pubDate>Tue, 09 Jun 2009 11:28:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9714049</guid><dc:creator> Jason Zander s WebLog Python for the CLR Jim Hugunin s IronPython | Hair Growth Products</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://hairgrowthproducts.info/story.php?id=4066"&gt;http://hairgrowthproducts.info/story.php?id=4066&lt;/a&gt;&lt;/p&gt;
</description></item></channel></rss>