<?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>More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx</link><description>UPDATE : Welcome Slashdot visitors. I'm not sure how to submit a correction to slashdot, but I am NOT the person responsible for the WIX/WTL projects. I site them as examples and am working with people who where responsible for those projects to enable</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#218010</link><pubDate>Fri, 20 Aug 2004 22:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:218010</guid><dc:creator>Object Relational Mapping</dc:creator><description>OR-Mapping, although controversial, is considered a really useful tool by a sizeable fraction of programmers. For a moment it seemed like Microsoft was going to offer an official OR tool, but then ObjectSpaces was delayed, and delayed, and delayed... And now we are starting to face the splintering that happened in the Java world: too many choices is bad! So I suggest that you take whichever looks more promising (say NHibernate) and nourish it.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#218094</link><pubDate>Sat, 21 Aug 2004 02:45:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:218094</guid><dc:creator>Caius</dc:creator><description>An Apache like Project hosting a lot of subprojects under the umbrella of &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;.&lt;br&gt;NMS (.NET Message Server) :-) I know MSMQ is available, but it is a big hassle for a developer - as it is tightly integrated with Active Directory. Also an open source Naming Service Provider would be great.&lt;br&gt;&lt;br&gt;</description></item><item><title>Microsoft and Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#218109</link><pubDate>Sat, 21 Aug 2004 07:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:218109</guid><dc:creator>Lockergnome's Linux Fanatics</dc:creator><description>Articles like this are totally cool with me. This is a guy that seems to honestly make the world a better place with projects that he is involved with. Yes, he has obvious associations with the &amp;quot;Big M&amp;quot;, but it does not appear to affect desire to want to participate in the Open Source movement. This leads me to wonder about something....</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#218128</link><pubDate>Sat, 21 Aug 2004 06:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:218128</guid><dc:creator>Stephane Rodriguez</dc:creator><description>&lt;br&gt;Honest, there's at least one goldmine to open : the windows source code of user32.dll, shell32, ...as a way to help us developers write more consistent code. As a replacement or complement to Raymond Chen's blog like.&lt;br&gt;&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#218153</link><pubDate>Sat, 21 Aug 2004 08:40:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:218153</guid><dc:creator>Luc Cluitmans</dc:creator><description>One area where this type of projects would be helpful is the design of utility libraries to fix missing functionality in 'official libraries', such as the .NET BCL.&lt;br&gt;&lt;br&gt;For instance, some time after the .NET framework was released (I am talking about 1.0 or 1.1), it became clear that some functionality was missing for some scenarios. &lt;br&gt;&lt;br&gt;As an example, lets take serial port access support, which happens to be relevant to my line of work. (As you may be aware, this has now been added in the 2.0 framework, see System.IO.Ports). There are several snippets of code floating around the net for accessing serial ports, many of which don't seem to have been tested well, because they only work partially...&lt;br&gt;I guess &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; realized after releasing .NET 1.0 that serial ports are like weed: they will never really die..., and some level of support for accessing them would be nice in the .Net framework, even for this 'prehistoric' technology. Now, to get that support in takes an entire development cycle, which for .Net 2.0 has taken already 2 years and is not complete yet. This is a point where an open source project providing a serial port library would help: it would provide a fully functional prototype of a future extension to the BCL without being bound to the glacial development cycle of the BCL itself.&lt;br&gt;&lt;br&gt;This type of projects would have some important advantages for different parties.&lt;br&gt;- For the developer, it provides at least a 'semi-standardized' library solving his problem, alleviating him from developing the code himself, or finding the bugs in code found floating on the net. And that without waiting 3 years for the next version of the BCL...&lt;br&gt;- For the BCL development team, this may give valuable feedback on how their proposed APIs are perceived in practice in 'the wild', giving them an opportunity to change the API based on real user feedback before releasing it.&lt;br&gt;&lt;br&gt;Of course, there are some negative points too. Most importantly, it will only work for libraries that are relatively independent from other 'new' libraries. Also, those prototype libraries must necessarily be in a different namespace than final versions, should they be incorporated in a future version of the BCL. And using this strategy to do some 'public prototyping' may have legal consequences.&lt;br&gt;&lt;br&gt;That being said, a few places where this approach might work would be (some of these already exist independently):&lt;br&gt;- a library of new collection classes&lt;br&gt;- a library of new generic classes&lt;br&gt;- a library of XPath/Xslt/XQuery extension functions&lt;br&gt;- a library for getting to some features that are currently not exposed in the BCL; I would love a library that exposes the pentium CPU's 'rdtsc' instruction without having the overhead of PInvoke (If you dont know what 'rdtsc' is: this is the core for the QueryPerformanceCounter() function in the win32 API)</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#218195</link><pubDate>Sat, 21 Aug 2004 13:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:218195</guid><dc:creator>Tux</dc:creator><description>Microsoft can not go open source. Microsoft, by definition, is a closed source company, and this is it's most important achievment. Locking people into code Microsoft has 100% control on.&lt;br&gt;&lt;br&gt;There's room for co-existance of, weather Microsoft likes it or not, it doens't realy have a choice. But trying to delute the ideas behind free software and open source into this mish-mash of ideas, seems more intentional then serious.&lt;br&gt;&lt;br&gt;Talking about WIX and WTL, relased under CPL, is a good enough example. Thought open, Microsoft buisness-minded approach lets it keep patent rights. Unlike IBM, it does have full intention to use is at will. &lt;br&gt;&lt;br&gt;It's a conflict of intrest, more blogs like this are not going to make thing less obvious.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#218920</link><pubDate>Mon, 23 Aug 2004 16:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:218920</guid><dc:creator>Mark Levison</dc:creator><description>I'm interested on more automated testsing tools.  Pitching in with Nester (&lt;a target="_new" href="http://nester.sourceforge.net/"&gt;http://nester.sourceforge.net/&lt;/a&gt;) is one good possibility.  &lt;br&gt;&lt;br&gt;Another interesting possibility is working on the tool described in &amp;quot;Effective Software Test Automation&amp;quot; (&lt;a target="_new" href="http://www.sybex.com/sybexbooks.nsf/booklist/4320"&gt;http://www.sybex.com/sybexbooks.nsf/booklist/4320&lt;/a&gt;).&lt;br&gt;&lt;br&gt;I'm interested in any tool that will help us test and improve the code quality in our application.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#218948</link><pubDate>Mon, 23 Aug 2004 17:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:218948</guid><dc:creator>josh </dc:creator><description>Wow, lots of great comments here! &lt;br&gt;&lt;br&gt;Caius: Another choice would be partnering with sourceforge.  But yes, it would be great to see a much better release of the GDN workspaces that actually work for normal applications. &lt;br&gt;&lt;br&gt;Stephane: I think we are a little off from that at the moment.  But I admit, it would be interesting for people doing certain types of development.  &lt;br&gt;&lt;br&gt;Luc: We are thinking along the same lines. These are the types of things I think would be great to see happen. I, of course, can't make any promises, but there are a lot of people here who would like to do these things as off cycle releases.  &lt;br&gt;&lt;br&gt;Tux: I never said &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; would go open source.  I'm not sure how what I'm suggesting dilutes rather than co-exists with effectively.  I'm not sure what IBM does differently.  Could you elaborate?&lt;br&gt;&lt;br&gt;Mark: :-) And we have some really cool testing tools here we use that I would LOVE to see open sourced. They will be some of the first people I approach once we have a standard mechanism in place. &lt;br&gt;&lt;br&gt;Lockgnome: Thanks for the kind words.  I like working here because of the freedom I've been supported with to work on efforts like this.  Steve's comments haven't had much effect on the work I do, except for the aforementioned negative clips.  If he was to come to my office and lay out some ground rules I would have to consider how I felt about each one and the freedom it gave/removed from my job.  It's all part of the value proposition of working at Microsoft and if some of the freedom is removed then the value of working here goes down for me and I would look to work elsewhere or on my own.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219114</link><pubDate>Mon, 23 Aug 2004 21:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219114</guid><dc:creator>Jonathan Payne</dc:creator><description>I have wondered before if Microsoft could make some of the non-core parts of Visual Studio open source.  For example, all the functionality of the Solution Explorer window could be implemeneted through the publically documented automation interface so perhaps it would be possible to release it as a mini open source project.&lt;br&gt;&lt;br&gt;If there were mini-projects for things like the Solution Explorer and the Output Window and perhaps even the text editor users could fix parts of the program that annoys them and help make Visual Studio better.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219356</link><pubDate>Tue, 24 Aug 2004 12:07:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219356</guid><dc:creator>Ami</dc:creator><description>The most useful think to open up isn't code so much as specs.  Un-encumbered specs for Word/Excel/Publisher/etc. would encourage the development of complementary tools.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219357</link><pubDate>Tue, 24 Aug 2004 12:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219357</guid><dc:creator>Ami</dc:creator><description>re: the above, I mean file-specifications, in case that wasn't clear.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219358</link><pubDate>Tue, 24 Aug 2004 12:13:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219358</guid><dc:creator>Giles Jones</dc:creator><description>Maybe it's about time Microsoft stopped complaining about Linux and Unix, maybe it's about time they made their products work well with standards and other operating systems. Stop trying to dominate, lock-in and takeover the computers of companies.&lt;br&gt;&lt;br&gt;Try and give computers users a proper choice and a reason for using each operating system/plaform based on their merits.&lt;br&gt;&lt;br&gt;Open source isn't going away and neither is Microsoft. You will never see the twain meet while Microsoft does it's best to spread FUD about the competition. Open source advocates don't trust Microsoft and some of Microsoft's internal memos give them reason to.&lt;br&gt;&lt;br&gt;Open source gives people back control, computer users used to have control. They bought Windows because it was something they wanted to use, but many Windows users would switch if the competion did everything they needed. However due to licenses and uncooperative hardware vendors, there are still plenty of drivers missing from Linux.&lt;br&gt;&lt;br&gt;Why do they want to switch? complacency, security and the sheer cost of the OS license.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219359</link><pubDate>Tue, 24 Aug 2004 12:13:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219359</guid><dc:creator>Alex Krumm-Heller</dc:creator><description>My job involves developing applications using the DirectShow API. In order to improve our applications we would love to understand the internals of DirectShow and even contribute to the future direction to the API. &lt;br&gt;&lt;br&gt;A large amount of example code is already provided by Microsoft and I think that continuing to build upon this by opening the source of DirectShow Microsoft could reinvigorate development in this area. I think a lot of future applications will use video and rather than just leaving DirectShow to gather dust it could be extended to accomplish things that no other platform is capable of.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219360</link><pubDate>Tue, 24 Aug 2004 12:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219360</guid><dc:creator>random opensores-hippie</dc:creator><description>&lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; sucks, use Sun.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219361</link><pubDate>Tue, 24 Aug 2004 12:17:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219361</guid><dc:creator>kde</dc:creator><description>The biggest thing about Linux is not the fact its just Open Source. The community has created a *process* which took about 15 years to develop. The process includes its own media, search engines, source countrol understood by a school student, development tools, libraries - all can be traced from line 0 to the millionth line - something that Microsoft failed to deliver. Myself being a certified &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; developer (C#.NET), I switched 7 home computers (everything) from Microsoft to Linux about 2 years ago. I cant even find an equivalent of tools im using in Linux in Windows - they simply dont exist. Theres also a spirit of freedom in Linux, which Microsoft wasnt able to beat. By admitting users dont want Microsofts model anymore, Bill Gates is admitting the failure of his ideas. Good. That was the point of GNU Linux after all. Microsoft cannot compete with the true open source, and is only digging its own business model grave - okay with me.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219362</link><pubDate>Tue, 24 Aug 2004 12:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219362</guid><dc:creator>don't use microsoft</dc:creator><description>Microsoft should stop the FUD against Linux and the GPL.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219363</link><pubDate>Tue, 24 Aug 2004 12:20:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219363</guid><dc:creator>asdf</dc:creator><description>I want to see you guys release more source code in the C and C++ runtime. Right now, you guys are hiding the implementation of exception handling and RTTI which makes it hard for somebody to write their own stripped down CRT unless we want to read the disassembly. Other things like float to string and string to float conversion functions are hidden in a lib file too.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219364</link><pubDate>Tue, 24 Aug 2004 12:22:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219364</guid><dc:creator>Todd</dc:creator><description>The open source growth is a direct response to Microsoft's dealing with the market space.  A lot of developers (Many non-open source programmers are looking to programming on Linux with Open Source tools.  Not because the software is free but because there are less strings attached to it. &lt;br&gt;&lt;br&gt;1. Once you switch to Microsoft you are Suck with them.  So you get Visual Studios, But then you will need Windows OS, Now for fastest performance and programming ease you will need MSSQL Server... Then one component needs to be upgraded say you need a new library that only works in the next version or 2 versions.  Then you will need to upgrade the hole set. Of tools.  This is where it gets expensive.  Especially for the Open Source programmer who is doing this out of his own hart. &lt;br&gt;&lt;br&gt;2. The Microsoft way or the program becomes unreliable. When programming in VS you have to try to program the way the Microsoft prescribes, if you don't then there is a good chance that your program will become unreliable.  But the reason why we need to program a program is because it is something that Microsoft or some other company doesn't have or work to the way we need it, thus Microsoft prescribed methods often will not work well in these cases.  The way that VS is set up makes programming beyond the Microsoft prescribed method much more difficult, then with many other of the OSS tools out there that expect different methods of programming. &lt;br&gt;&lt;br&gt;3. Allow us to migrate our code.  We as developers should choose what platform our software should work on, not the maker of the tools to make it. It is like a carpenter can only use screws in New York and has to use nails in Texas.  If in VS we can cross compile our code for Linux (x86, Sparc, PPC), Solaris (x86, Sparc), MacOS (ppc).  .NET has the ability to help with this but right now there isn't much trust in in multi platform compatibility because of the windows only centric nature to it, right now .NET is the Speed of Java with the Platform Independence that only VS can provide. (Essencly the worst of both platforms) I say Open Source the .NET VM, and give us a Legal Binding contact that you will not close it up for any version.  Now this way we are more willing to program in VS because we know we are not lock into windows. &lt;br&gt;&lt;br&gt;4. Fool me once shame on me.  Fool me twice shame on you.  Customers are tired of offering us choices then after a small amount of time we find that we are locked in.  I work for a consulting firm and we find 4 major groups of people.  &lt;br&gt;   a. Open Source programmer who will avoid &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; at all cost.&lt;br&gt;   b. People who like MS products but afraid to lock in, so they use OS.&lt;br&gt;   c. People who are locked into MS products and can't get out although they want to.&lt;br&gt;   d. People who don't know what else is out there and the last time they checked was 10 years ago. &lt;br&gt;This doesn't look good for Microsoft where the most satisfied customer are the ignorant ones. MS Needs to spend more time learning the strengths of Open Source then finding and touting all of it weakness.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219365</link><pubDate>Tue, 24 Aug 2004 12:22:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219365</guid><dc:creator>Amir Michail</dc:creator><description>We would love to collaborate with Microsoft on the open source Stabilizer project, a system for quickly stabilizing buggy GUI applications:&lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://stabilizer.sf.net"&gt;http://stabilizer.sf.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;Currently, it supports Java GUI applications.  Perhaps a collaboration with Microsoft would provide solid support for Windows applications as well.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219366</link><pubDate>Tue, 24 Aug 2004 12:25:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219366</guid><dc:creator>Geoff</dc:creator><description>1. Change MSDN to be a Wiki. You don't know how many times I've wanted to add a link to what the dumbass MSDN authors considered related or wanted to fix some doc bugs.&lt;br&gt;2. Release the code to Visual Studio 6's &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt; since you guys don't support it anymore. There are many developers who prefer that &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt; to the VS.NET IDEs and would keep on working on it to keep it up to date.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219367</link><pubDate>Tue, 24 Aug 2004 12:26:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219367</guid><dc:creator>Nigel Head</dc:creator><description>The biggest thing you could do would be to document, publish and allow open use of file formats and API's. Open sourcing code is all well and good, but is kind of an all-or-nothing scenario (it's no good opening selected parts of the source base) whereas opening the specifications, formats and API's allows completely independent OSS developments to enhance or interoperate with your products.&lt;br&gt;&lt;br&gt;I'm pretty sure that that's exactly what the &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; marketing strategy doesn't want to support/encourage but it's what you've got to do to gain any plausibility in teh OS world, IMHO.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219368</link><pubDate>Tue, 24 Aug 2004 12:26:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219368</guid><dc:creator>Randall Sanborn</dc:creator><description>Call me crazy, but I just think that the &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; gestapo tactics of kill all doesn't do much to encourage the current OSS community. Furthermore, their actions would at the very least make me highly weary of letting them get their hands anywhere near any code I write.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219369</link><pubDate>Tue, 24 Aug 2004 12:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219369</guid><dc:creator>Jonathan Wilson</dc:creator><description>I aggree with the statement that &amp;quot;non-core&amp;quot; parts of Visual Studio should be opened up.&lt;br&gt;&lt;br&gt;In terms of what I would like to see Open, one big thing would be the Microsoft Visual C++ Runtime Library and associated components.&lt;br&gt;Essentially, everything in crt\src in the visual C++ distribution being made open under an OSI compatible licence. (including stuff like tlssup.obj, setjmp.obj and others for which source code is not included with Visual C++).&lt;br&gt;Also, all the stuff in include that goes with the aformentioned code.&lt;br&gt;And there are (I believe) a few other libraries (e.g. largeint.lib, comsupp.lib) for which no source is provided.&lt;br&gt;&lt;br&gt;And it would be nice to see ATL and MFC go Open Source too (along with Open Source or at least Freely Usable windows API headers, platform SDK etc) but even just the CRT would be a good place to start :)&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219371</link><pubDate>Tue, 24 Aug 2004 12:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219371</guid><dc:creator>Lee</dc:creator><description>Copyleft compliance.  Simple as that.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219372</link><pubDate>Tue, 24 Aug 2004 12:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219372</guid><dc:creator>sandman</dc:creator><description>Build tools, in general will probably get a good reaction to being opened source. Also the user communtity for those tools is the communitity which can do the most with them.&lt;br&gt;&lt;br&gt;It's prolly no surprise that the there are such a wide range of open source developent tool out there which target unix.&lt;br&gt;&lt;br&gt;Whether tools like gflags should be opensourced in an interesting question, but I suspect making more of the api it uses known would only aid good (I've had success using app verifier with gdb for instance) and better tools for your platform.&lt;br&gt;&lt;br&gt;Equally it's worth allowing those tools to build for other platforms, eg, I'd like to  be able build Msi's striaght from LINUX (I x-compile windows applications) just by adding the approirate rules to by make file. You shouldn't write a linux installer, but allow other to build and windows installer for their windows apps from a linux/bsd/whatever xbuild envoironment I think would be a good thing. It opens up your platform and encourages people to build their apps form windows. Not that much encouragemnt is normally needed, but why put problems in their way.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219373</link><pubDate>Tue, 24 Aug 2004 12:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219373</guid><dc:creator>Edward Faulkner</dc:creator><description>&amp;quot;Engaging with the open source community&amp;quot; is very easy.  You simply need to make your source public - all relevant source code.  &lt;br&gt;&lt;br&gt;The reason I don't work with Microsoft systems at present is that I can't get inside and figure out what's really going on.  &lt;br&gt;&lt;br&gt;All coding is debugging.  And when forced to use a black-box API, your debugging can only go so deep.  Good coders don't just exercise APIs, they need to understand the systems they're attempting to control.  &lt;br&gt;&lt;br&gt;Keeping applications closed source can make sense.  But keeping an OS closed source is just silly - the OS only exists to support applications, and people can't write great applications without fully understanding the OS.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219374</link><pubDate>Tue, 24 Aug 2004 12:31:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219374</guid><dc:creator>Ann Onymous</dc:creator><description>GPL baby!</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219375</link><pubDate>Tue, 24 Aug 2004 12:31:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219375</guid><dc:creator>Mike Capp</dc:creator><description>If you host projects on MSDN, please give some thought to opening up the bug-tracking process. The feedback system for the current VS2005 betas (&lt;a target="_new" href="http://lab.msdn.microsoft.com/productfeedback"&gt;http://lab.msdn.microsoft.com/productfeedback&lt;/a&gt;) is an improvement on the old process, where you'd send in a painstaking researched bug report and it'd vanish into a black hole never to be seen again, but it's still far from perfect. &lt;br&gt;&lt;br&gt;Why does it demand I create a Passport account and fill out a questionnaire just to *read* feedback? Why do I have to log in again every time I go to the site? (Passport not playing nice with Mozilla, I suspect.) Why is some information not visible to the public? (Very often you'll see the &amp;quot;last modified&amp;quot; date change without any corresponding change in the visible details - something's going on, but we aren't allowed to know about it.)&lt;br&gt;&lt;br&gt;Things like this make a real difference to how a project is perceived. Transparency fosters trust, and encourages participation because you can see things happening as a result of that participation. I switched from Opera to Moz precisely because of this issue - at the time Moz was still buggier, but because of the process I had a lot more confidence that it would improve.&lt;br&gt;&lt;br&gt;Browsing blogs.msdn.com shows that many Microsofties run Firefox these days. Would it be politically impossible to run Bugzilla?&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219377</link><pubDate>Tue, 24 Aug 2004 12:34:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219377</guid><dc:creator>Peter da Silva</dc:creator><description>I've got two particular projects I'd like to see Microsoft open up more.&lt;br&gt;&lt;br&gt;First, Interix. Interix has borrowed heavily from the Open Source community, and includes both GPL and BSD code already. It's probably the easiest component in Microsoft's stable for existing OS programmers to get up to speed in, and would also provide a common environment for porting other OS code to Windows. Keeping it closed doesn't benefit Microsoft: it's already free-as-in-beer, and there's already the competing (and less secure) Cygwin product so microsoft wouldn't be giving away anything. As a final bonus, having a Microsoft OS product more secure than the GNU equivalent would be ironic.&lt;br&gt;&lt;br&gt;Second, Internet Explorer. It's clear that Microsoft isn't interested in addressing the core security problems of IE, and again it's already free-as-in-beer and losing market share to open-source competition. Why not let the community help?</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219378</link><pubDate>Tue, 24 Aug 2004 12:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219378</guid><dc:creator>kvr</dc:creator><description>The .net framework libraries (especially &lt;br&gt;Windows.Forms) This will give great&lt;br&gt;insight and makes working with .Net&lt;br&gt;so much richer and easier.</description></item><item><title>What needs Openning up.</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219379</link><pubDate>Tue, 24 Aug 2004 12:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219379</guid><dc:creator>Bill Dunn</dc:creator><description>List of things that should be openned up and let loose in the world.&lt;br&gt;&lt;br&gt;1. File Formats&lt;br&gt;&lt;br&gt;2. File Systems FAT/NTFS/WinFS, etc&lt;br&gt;&lt;br&gt;3. Protocols like SMB/CIFS,Exchange&lt;br&gt;&lt;br&gt;4. IE&lt;br&gt;</description></item><item><title>PS</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219380</link><pubDate>Tue, 24 Aug 2004 12:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219380</guid><dc:creator>Peter da Silva</dc:creator><description>Oh, yes, and IE is another Microsoft product that started as an open-source (though not open-license) project, NCSA Mosaic.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219383</link><pubDate>Tue, 24 Aug 2004 12:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219383</guid><dc:creator>Alexandru Toth</dc:creator><description>Microsoft is a closed source company. It looks now that under the GNU pressure, it is trying to save some apparences.&lt;br&gt;&lt;br&gt;This &amp;quot;open-sourcing&amp;quot; is a dead project from start to end, because you will inevitably stay locked in small details as CRLF, path separator, incompatible make files, COM+, ActiveX , DLL dependencies, CLI... so in the end you'll be running wizards in Visual Studio on top of Windows XP. &lt;br&gt;&lt;br&gt;So please, what's the whole point?!?</description></item><item><title>Oh, and a REAL long shot...</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219384</link><pubDate>Tue, 24 Aug 2004 12:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219384</guid><dc:creator>Peter da Silva</dc:creator><description>How about some Microsoft contribution to WINE?</description></item><item><title>Open Source .NET</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219385</link><pubDate>Tue, 24 Aug 2004 12:40:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219385</guid><dc:creator>Paul</dc:creator><description>There is an big interest in using .NET as an alternative to Java (see www.go-mono.com).  But questions of stability and security come up and until these are truly addressed .NET will always be #2 to Java.  I was a .NET developer from Beta up to 4 months ago when I abandoned it for Java because of a lack of open source tools available, stability of the .NET framework, and security.&lt;br&gt;&lt;br&gt;I think that a big reason you don't see more open source projects created for .NET is people are concerned about it's stability and compatability with itself.  If Microsoft were to open source the .NET framework it would help to stabalize it, better tools would become available, and a bigger community would embrace it.&lt;br&gt;&lt;br&gt;I think there is a big myth out there that open source does not like Microsoft.  I personally don't have a problem with Microsoft.  I choose to use linux and Java right now because of stability and security concerns.  Both of which I think would greatly improve with an open source .NET framework.&lt;br&gt;</description></item><item><title>Start playing nice first</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219386</link><pubDate>Tue, 24 Aug 2004 12:41:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219386</guid><dc:creator>Didier</dc:creator><description>&lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; is not nice. Frankly if you are anywhere near serious and not just another &amp;quot;MS is serious about security&amp;quot; type marketing droid then it is pretty obvious what you gotta do.&lt;br&gt;&amp;lt;p&amp;gt;PLAY NICE. Convince us that you get opensource. Stop trying to break opensource projects. Two very important projects that MS is constantly trying to break are OpenOffice and Samba.&lt;br&gt;&amp;lt;p&amp;gt;Let MS go to these two projects and help them to fully work with MS software without trying to crush them. &lt;br&gt;&amp;lt;p&amp;gt;Prove that you are serious. But of course you aren't MS doesn't want competing Opensource projects. Proof me wrong.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219387</link><pubDate>Tue, 24 Aug 2004 12:45:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219387</guid><dc:creator>Jonathan Wilson</dc:creator><description>As for the idea of releasing the Visual Studio 6 &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt;, I suspect the biggest hurdle is somehow allowing the old &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt; to handle the new core changes (new debugging symbols format, new languages like C# and all the other stuff added since the aging Visual Studio 6 &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt; was written).&lt;br&gt;&lt;br&gt;Also, something else that would be good to see Open Sourced is some of the various utillities that come with windows (e.g. Notepad, Wordpad, Paint, Solitare etc).</description></item><item><title>Work with codeproject and codeguru</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219388</link><pubDate>Tue, 24 Aug 2004 12:46:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219388</guid><dc:creator>Benjamin Peterson</dc:creator><description>&lt;br&gt;Windows-oriented open source sites like codeguru, codeproject etc are a big asset for &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;, which can otherwise be a difficult environment to get started in and to find small free components in.  MS should work with those sites, adding expertise (answering 'how do I...' questions) and resources (helping turn some of those useful free components into enterprise-grade ones).  Everyone would benefit.&lt;br&gt;&lt;br&gt;Unfortunately, MS has historically tended to work _against_ such efforts (remember SysInternals and NTFS).  The days when this sort of tactic could work for anybody other than IBM are now over.&lt;br&gt;&lt;br&gt;So, MS, why not assign a few developer man-hours to sifting through codeproject, answering and fixing, and see if a good open-source project emerges from any of the half-a-projects they have there?&lt;br&gt;&lt;br&gt;</description></item><item><title>Activesync</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219390</link><pubDate>Tue, 24 Aug 2004 12:49:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219390</guid><dc:creator>Peter da Silva</dc:creator><description>Activesync. Again, it's not core, it's got some real simple problems that would really benefit from OS work (like, how about using link-local addresses instead of 192.168.55 which happened to conflict with one of our internal networks and broke Activesync until we renumbered), and it would improve market share for the Pocket PC if it could be ported to other operating sustems.&lt;br&gt;&lt;br&gt;And speaking of which, I'll bet there's a bunch of Pocket PC code you could open up.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219391</link><pubDate>Tue, 24 Aug 2004 12:49:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219391</guid><dc:creator>blah</dc:creator><description>I think a good area for open source collaboration would be tools that help integrate or support Microsoft products into other environments.  There is a real life need for non-MS and &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; products to co-exist, that MS is not going to escape from.  If MS can sponsor some open source integration tools, then it can get some good will.  Unfortunately this very integration ability seems to run counter to the MS strategy of lock-in, so I'm not sure how management could justify it...unless the goodwill outwieghs to the risk.  Glaring candidates are document formats, migration tools, and &amp;quot;viewers&amp;quot; of documents developed in the office suite.</description></item><item><title>where's the gaurantee?</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219392</link><pubDate>Tue, 24 Aug 2004 12:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219392</guid><dc:creator>undisclosed developer</dc:creator><description>why should developers spend their own time assisting microsoft who has billions? Today, there's is no reasonable assurance from Microsoft (the corporation) at a high level that the code contributions will follow an open and honest guideline. this means a balance between commercial needs and the communities needs. On more than one occassion, microsoft has borrowed and distorted public works without giving proper credit and acknowledgement. If you want the trust of the community, you have to first show respect to the community. Not a bunch of hand waving marketing speak. that kind of initiative has to come from the top, otherwise any effort to adopt an open source approach will fail.</description></item><item><title>Open source the microsoft reseach code</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219393</link><pubDate>Tue, 24 Aug 2004 12:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219393</guid><dc:creator>dalibor topic</dc:creator><description>It ain't research till others can verify it.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219394</link><pubDate>Tue, 24 Aug 2004 12:53:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219394</guid><dc:creator>Bill</dc:creator><description>I would say the key thing to making people want to work on Open Source projects with/for Microsoft is to get the developers to trust you.  Why should anyone want to work with/for Microsoft when Microsoft has a tendancy to treat its customers like criminals.  As a show of good faith, dump the product activiation technology that does nothing to reduce piracy but makes legitimate users lives miserable.  Then give some sort of guarantees that Microsoft won't pull a SCO in the future.  Instead of the open source projects being done for Microsoft, they should be done by a wholy independent entity sponsored by Microsoft.  Its all about trust.  If I can't trust you not to come sue me down the line why should I even look at anything offered by Microsoft?  My goal has been to reduce, and attempt to eliminate all shreds of Microsoft software from my company simply because you do treat me like a criminal.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219395</link><pubDate>Tue, 24 Aug 2004 12:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219395</guid><dc:creator>fm</dc:creator><description>If you want suggestions on Open Source, why not invite RMS to give a talk at Microsoft.  How open and free can a piece of software be if its on a pay for OS.  Why not open source XBox, forget about Windows leave that for a history lesson.  Don't get me wrong I think &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; and GPL have a lot of good things to offer.  In the long run GPL is better, &amp;quot;I'd like to by a value please&amp;quot;.&lt;br&gt;FM :)</description></item><item><title>Why Microsoft and Open Source Don't Mix</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219396</link><pubDate>Tue, 24 Aug 2004 12:57:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219396</guid><dc:creator>Mitch Pirtle</dc:creator><description>The big draw to Free/Open Source (F/OSS) is cost of entry.  I can download an entire environment, operating system and server processes, and get started.&lt;br&gt;&lt;br&gt;What you propose requires me to buy Windows, then buy Visual Studio.  And THEN I can get started?  The average teenager will not be interested OR capable to pony up that dough.  And when they hear of a free alternative, they will not be interested in commercial software (even if you give it to them), because they know that someday they will have to pay the piper...&lt;br&gt;&lt;br&gt;As long as you are a 'for profit', you will be bound to charge money for your goods - and that is perfectly ok and has been for thousands of years - but that is the biggest barrier between Microsoft and F/OSS:  Why buy to learn when you can get it for free?&lt;br&gt;&lt;br&gt;I have seen Macromedia enjoy success with Dreamweaver and their plugin/extension capability, but it is also limited; and almost all extensions were also written 'for profit'.&lt;br&gt;&lt;br&gt;I suppose this would indicate further that you cannot take a 'for profit' product and attract F/OSS talent - the only folks interested are the other commercial developers.&lt;br&gt;&lt;br&gt;Here is another twist:  Even F/OSS companies cannot truly operate in the Open Source world.&lt;br&gt;&lt;br&gt;Case one:  MySQL (www.mysql.com).  They supposedly release their database under the GPL, but it is only free as in free beer, not free as in free speech.  I am not welcome to join the development team, as they are a closed group of commercial developers.  I have a philosophical problem with this setup, as they will always be thinking about making money first, and then appeasing the community second.&lt;br&gt;&lt;br&gt;Case two:  Zend Technologies (www.zend.com).  I live in PHP (and am a core developer for a GPL CMS that is based on PHP), but I am frightened about their licensing strategies.  It is a mixed hybrid license that blurs commercial and F/OSS with the same product - and even now on the forums it is constantly debated.  The ambiguity is annoying, and I have more than onece looked for an alternative technology that was truly GPL.&lt;br&gt;&lt;br&gt;Wait, here's an alternative.&lt;br&gt;&lt;br&gt;Case three:  Mambo content management server (www.mamboserver.com).  This is a truly GPL CMS with extensive support for third parties (templates, components, and modules).  They have taken the opposite approach as Microsoft, and it is working quite well - they open source the technology, and third parties flock to the platform to provide both F/OSS and commercial goodies and services.&lt;br&gt;&lt;br&gt;Works for me ;-)&lt;br&gt;&lt;br&gt;But it will only work for you if you choose to spin off a relevant technology.  Don't just open source some ancient dungheap that nobody wants (SAP DB anyone?).  You gotta reach deep down and give till it hurts, baby.&lt;br&gt;&lt;br&gt;If the platform was GPL, a lot of bugs would get fixed, and many MANY developers would have renewed interest in the platform.&lt;br&gt;&lt;br&gt;But I digress!&lt;br&gt;&lt;br&gt;Whatever the outcome, I certainly do wish you the best.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219397</link><pubDate>Tue, 24 Aug 2004 12:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219397</guid><dc:creator>Chuck</dc:creator><description>This is a longshot, but the Compact Framework.  The CF is woefully inadequate and doesn't play as well as everyone would like with the desktop version of the framework.  You cannot reasonably develop a .NET CF application without using a plethora of other 3rd party libraries.  3rd party libraries are great, they help move the development market - except all the 3rd party libraries I use are open source already.  The OpenNETCF project isn't moving as fast as it could; an open source CF sponsored by &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; would be a godsend - of course it would have to be on SourceForge and not GDN.&lt;br&gt;&lt;br&gt;New product: we already know that the next version of Visual SourceSafe will not be adequate.  There are great products out there, like SourceGear's Vault, which do a wonderful 98% of what is required.  We have the staple of open source version control, CVS, and its new offspring, SVN.  SVN requires some weird hacks to work with Web Application projects in VS.NET.  We need an MS-sponsored open source version control system which integrates tightly/correctly with Visual Studio .NET so the Java and Linux C programmers stop laughing at Visual SourceSafe, and in turn, us.  Of course it would have to be hosted on SourceForge and not GDN.  And I'd be just as happy to have a couple MS developers lend their experience to AnkhSVN because, IMO, SVN trumps everything else out there. (subversion.tigris.org, ankhsvn.tigris.org)&lt;br&gt;&lt;br&gt;There is significant good reason to open source the development tools and make them as low cost (or free!) as possible.  MS has been doing a really good job of this (low cost, free) over the past couple of years and it looks like its getting better.  The most important point here is, why should someone pay $$$ to develop C# or VB.NET or what have you in the Visual Studio .NET &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt; when they can download Eclipse for free and write Java?  Yes, the compilers for .NET are free, and SharpDevelop is great, but there is a certain cohesiveness and quality that Eclipse offers to budding Java programmers vs. budding C# programmers.&lt;br&gt;&lt;br&gt;Not sure what the status of Mono is with MS but whatever it is, improve it.  There's a battleground .NET developers are consistently losing when they write a web application which is placed up against a similar system written in Java; the deciding factor is that the Java system can run on Linux or Solaris or what have you.  Mono can help level this playing field, help to oust J2EE in favor of the .NET Fx, and increase the number of .NET developers overall.  If this doesn't happen soon I fear I'll be using Hungarian notation for my public members and generating .class files.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219398</link><pubDate>Tue, 24 Aug 2004 12:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219398</guid><dc:creator>Jason</dc:creator><description>Give it up. Why keep a proprietary core that you can extend? For &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;, it's a win-win. They get to charge you money, and you do the development of really cool features. Eventually, wouldn't you like to gut that core and replace it with something free?&lt;br&gt;&lt;br&gt;Enter opensource. You can contribute to Eclipse, KDevelop, or whatever. You get a compiler that works pretty much on every 32 bit platform under the sun (gcc). You get open architecture and the complete source. &lt;br&gt;&lt;br&gt;The other point I don't get is you have Ballmer running around in stage saying  &amp;quot;Developers!&amp;quot; and then they turn around and charge you to develop on their propritary platform, which only helps them. &lt;br&gt;&lt;br&gt;I've used both OSS and MS about the same amount now. O have to say OSS wins every time (for development) Maybe .Net is different, but I remember having to manually recalc control coords just because of a resize. I've never had to do that under Linux, thanks to Layout Managers. Something so simple...&lt;br&gt;&lt;br&gt;VB Changes with every release of the DE. Python is just as easy and doesn't change.&lt;br&gt;&lt;br&gt;Just about any application made with Linux is cross-platform. YMMV, depeding on your toolkit, but it is a lot more portable. Qt, GTK, wxWindows are the 3 best out there. And all have C (C++ for Qt) or Python, so your C and VB people will be happy.&lt;br&gt;&lt;br&gt;Josh, you will come to realize that Microsoft is not the way to go. Between platform issues, poor documentation and inablity to access source, you're ending up paying for pain. &lt;br&gt;&lt;br&gt;Ask yourself this: Is Enlightenment better associated with MS or OSS? &lt;br&gt;Never is Enlightenment associated with lock-in, fees, and poor documentation. Enlightenment instead is only achived when one is free.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219399</link><pubDate>Tue, 24 Aug 2004 13:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219399</guid><dc:creator>mschaef</dc:creator><description>I'd love to see enough of ATL/MFC released so that WFC could be used by folks without Visual C++. Otherwise, the public release of WFC doesn't really mean all that much.</description></item><item><title>where's the source?</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219400</link><pubDate>Tue, 24 Aug 2004 13:02:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219400</guid><dc:creator>janeiro</dc:creator><description>So a group could who contributes the code gets to license it however they see fit, and microsoft gets to use it, but what about the rest of us? this sounds like a way to give the illusion microsoft is promoting open source, while just taking code from developers and then distributing free binaries. so where's the source? is that up to the contributers to decide? as a contributer why would i want to &amp;quot;contribute&amp;quot; code to microsoft who has contributeed nothing to me?&lt;br&gt;&lt;br&gt;maybe you just don't go into the details, but it seems that what you're talking about is contracting without exclusive rights, but microsoft doesn't pay and gets to reap the full reward (aka distributing it in their comercial products).  write another article when you understand the open source movement.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219405</link><pubDate>Tue, 24 Aug 2004 13:07:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219405</guid><dc:creator>janeiro</dc:creator><description>i agree with a lot of the other comments.  if microsoft is really interested in open source, show some good faith and GPL, or heck, even BSD license something significant.  if you want to take from the community, give something first.  i don't know IE, the XP/Longhorn Kernel, Active Directory, the Office file formats, SMB/CIFS, whatever the current domain authentication scheme is, someone mentioned active sync, something, but something significant.&lt;br&gt;&lt;br&gt;i think that would shock the open source community and you might  attract some developers that way.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219406</link><pubDate>Tue, 24 Aug 2004 13:07:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219406</guid><dc:creator>dave@dmerriman.dyndns.org</dc:creator><description>1&amp;gt; You might try opening up &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; file formats. How the hell is anyone supposed to write for MS apps when we don't even know what the specs are for application data files?&lt;br&gt;2&amp;gt; If you GET something from an open source, LEAVE it open source; don't go throwing 'proprietary' roadblocks around it once you've got it.&lt;br&gt;3&amp;gt; Follow industry standards, and quite 'enhancing' them so they're incompatible with everything BUT MS products.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219407</link><pubDate>Tue, 24 Aug 2004 13:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219407</guid><dc:creator>flacco</dc:creator><description>1)  indemnify open source and Free software against patent attacks.&lt;br&gt;&amp;lt;p&amp;gt;&lt;br&gt;2)  fix all your products so they use open, documented, royalty-free protocols&lt;br&gt;&amp;lt;p&amp;gt;&lt;br&gt;3)  fix all your products so they interoperate with F/OSS peers.&lt;br&gt;&amp;lt;p&amp;gt;&lt;br&gt;4)  fire upper management.&lt;br&gt;&amp;lt;p&amp;gt;&lt;br&gt;5)  behead them.&lt;br&gt;&amp;lt;p&amp;gt;&lt;br&gt;6)  put their heads on sticks lining the road to the &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; campus as a warning to remaining employees.&lt;br&gt;&amp;lt;p&amp;gt;&lt;br&gt;but seriously... what makes you think microsoft can sweep years of insults, abuse, and proxy corporate warfare under the rug by throwing us this quasi-open source bone?&lt;br&gt;&amp;lt;p&amp;gt;&lt;br&gt;it seems quite obvious - especially given the wording of your appeal - that microsoft has *no* honest interest in open source, and just wants to sap off talent and energy from the true open source and free software communities.&lt;br&gt;&amp;lt;p&amp;gt;&lt;br&gt;any coder with an ounce of common sense willpolitely decline and put their efforts into a project that is truly free, truly community-oriented, and has integrity hat microsoft &amp;quot;open&amp;quot; source projects will never have.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219408</link><pubDate>Tue, 24 Aug 2004 13:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219408</guid><dc:creator>Mark Hiscocks</dc:creator><description>Josh, I have to agree with Luc. Opening up the code to more advanced &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; UI tools would be of great benefit to many companies, as well as to Microsoft.&lt;br&gt;&lt;br&gt;One of the biggest hurdles for a user to overcome is learning a new UI. However, if cross-company UIs are similar in their implementation, users would become more productive at a quicker rate, thereby increasing the enjoyment of a given application. If, for example, the VS &amp;quot;Solution Explorer&amp;quot; code was made public and used by various companies, users of one app would immediately feel at home in the second app due to the commonality. Familiarity breeds loyalty.&lt;br&gt;I'm no economist, but I would think that:&lt;br&gt;    Loyal users = More income&lt;br&gt;&lt;br&gt;If &amp;quot;people&amp;quot; get more familiar with the MS UI through external applications, then Windows would have an(other) advantage over the competition.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219409</link><pubDate>Tue, 24 Aug 2004 13:13:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219409</guid><dc:creator>Arash Partow</dc:creator><description>I think one very important thing &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; can do is via its MFC for win32 apps and via the .NET framework for .NET apps is to begin supporting the POSIX APIs.&lt;br&gt;&lt;br&gt;I know windows is not a UNIX etc etc, but I think such a move for windows would attract more code to be written and run under windows, it would also make the development of cross-platform code much easier.&lt;br&gt;&lt;br&gt;Currently MS has an excellent opportunity with their next version of OS to implement such basic compatibilities.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219410</link><pubDate>Tue, 24 Aug 2004 13:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219410</guid><dc:creator>Geoffrey</dc:creator><description>I would never support Microsoft's efforts in any way because of their history of 'embrace and extend.'  They swallow up anything they get involved in and spit it out with proprietary twists.  Change the way Microsoft does business, and I'll consider changing my view.  It would take a very long time to do this as Microsoft's history makes them untrusted.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219412</link><pubDate>Tue, 24 Aug 2004 13:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219412</guid><dc:creator>Chuck</dc:creator><description>&amp;gt;&amp;gt; Ask yourself this: Is Enlightenment better associated with &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; or OSS?&lt;br&gt;&lt;br&gt;Enlightenment is better associated with Rasterman.  Oh wait, wrong project.  ::grumble, grumble::&lt;br&gt;&lt;br&gt;Yeah, have to agree on another point: open source ActiveSync.  The PocketPC platform doesn't seem to be doing a whole lot.  Better integration of the PocketPC with, say, Thunderbird would probably make a few people smile (ahh, don't burn me!  I never researched this so I don't know if it's really a problem!).</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219415</link><pubDate>Tue, 24 Aug 2004 13:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219415</guid><dc:creator>Ken Wood</dc:creator><description>We have already decide where to help Microsoft with open source.&lt;br&gt;&lt;br&gt;OpenOffice&lt;br&gt;Mozilla&lt;br&gt;Samba&lt;br&gt;wine&lt;br&gt;&lt;br&gt; You recognize the need to start winning back trust? Burn the BSA.&lt;br&gt; &lt;br&gt;Quit trying to befriend your enemy. we don't want to be friends with the likes of you.&lt;br&gt;Ken</description></item><item><title>Open Filesystems</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219416</link><pubDate>Tue, 24 Aug 2004 13:20:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219416</guid><dc:creator>Jeff Mercer</dc:creator><description>I think that the NTFS and WinFS standard should be published.  It would be awesome if some code can be contributed, but if code was not contributed, a published standard would allow other OSes to mount your windows drive without problems.  On the other side, I would like to see native support for XFS, Riser, and ext2/3 in Windows.  If you couldn't install Windows onto  an ext2/3, I wouldn't care, I'd make a WinFS for the OS, an ext3 for Linux, and a shared ext3 data drive.  The more interoperable Windows and Linux are, the better off both camps are, and the anti-trust lawyers will definitly back down a lot more.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219418</link><pubDate>Tue, 24 Aug 2004 13:22:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219418</guid><dc:creator>Topper Harley</dc:creator><description>The best thing for &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; would be to GPL the source of .Net. That will immediately attract half of the Java developers and all people participating in Mono project. This way Steve B. won't have a reason to complain about the lack of developers.&lt;br&gt;Just my 2c.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219419</link><pubDate>Tue, 24 Aug 2004 13:24:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219419</guid><dc:creator>I8TheWorm</dc:creator><description>Speaking as both a Microsoft Developer by trade and an OSS developer by hobby, I think &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; faces a huge problem in attracting open source developers.  One of the reasons for joining open source projects is to help fill a hole in software needs by working with other developers who share the same desire.  The products are released for free with the idea that they are not the only people that have this need.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br&gt;I don't think many people will donate their time (and as a developer/engineer/architect I know my time is fairly valuable) toward a project that a company is going to turn around and sell for a profit.  I do realize that part of the idea is to worn on open source projects that will remain open source, but there are a myriad OSS projects out there already on MS platforms.  MS has historically snubbed it's nose at open standards (CSS anyone?) and has yet to prove they will do otherwise in the future.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br&gt;As a developer, I would really hate to see my hard work become non-standardized and close sourced, and I think a lot of other OSS developers feel the same way.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br&gt;What would be your plan to ensure that open standards are adhered to, and MS-OSS projects are not engulfed in the profit machine and close sourced?</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219421</link><pubDate>Tue, 24 Aug 2004 13:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219421</guid><dc:creator>beerwulf</dc:creator><description>If Microsoft were serious about cooperating with the open-source movement, they would have to abandon their dreams of one overarching framework.  It's the source of the most frustration for developers (having lots of cruft in the software to trip over) and the biggest drain on IT budgets (having to pay $$$ for people whose main stock-in-trade is knowing how to work around COM and COM+ quirks).&lt;br&gt;&lt;br&gt;They could also break the linkage between Visual Studio and Visual SourceSafe, or provide open hooks so that instead of being stuck with VSS we could use CVS or Subversion or some other real version control system.  In doing so, they could stop trying to do our thinking for us (which is really meant to foster dependency instead of actually helping, and is kind of insulting to boot).</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219423</link><pubDate>Tue, 24 Aug 2004 13:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219423</guid><dc:creator>mike</dc:creator><description>How are all the comments on this page copyright of jledgard??</description></item><item><title>Make yourself 'saints' in one area...</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219426</link><pubDate>Tue, 24 Aug 2004 13:32:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219426</guid><dc:creator>Tim </dc:creator><description>Start/work on an open-source calendaring interoperability project; working with the existing standards or simplified versions of them. Calendar interoperability is not at a very good state right now, for &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; to improve the situation can only help everyone (and, if interoperability improves, it might help sales for you too, who knows?).</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219428</link><pubDate>Tue, 24 Aug 2004 13:35:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219428</guid><dc:creator>Mark Tetrode</dc:creator><description>It probably has been said before here, but I will repeat it&lt;br&gt;&lt;br&gt;documentation regarding the protocols&lt;br&gt;&lt;br&gt;open up your protocols, document them. When they change, document the change at the same time, not years later.&lt;br&gt;&lt;br&gt;documentation regarding the document formats&lt;br&gt;&lt;br&gt;open up your document formats and document them. When they change, document the change at the same time.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219429</link><pubDate>Tue, 24 Aug 2004 13:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219429</guid><dc:creator>beerwulf</dc:creator><description>Now that I think about it, they could provide an Eclipse plugin so that we could use their compilers with a fully customizable (and less annoying) &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt;.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219433</link><pubDate>Tue, 24 Aug 2004 13:40:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219433</guid><dc:creator>Chuck</dc:creator><description>&amp;gt;&amp;gt; The best thing for &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; would be to GPL the source of .Net. That will immediately attract half of the Java developers and all people participating in Mono project.&amp;lt;&amp;lt;&lt;br&gt;&lt;br&gt;We already have this.  Its called Rotor.  I'm sure more than one contributer to the Mono project, while developing, said &amp;quot;I wonder how they are doing that?&amp;quot; and took a gander at the Rotor code.  Heck, I do it from time to time and it is extremely useful.  Of course Rotor doesn't cover some of the more important items of the framework, like Windows Forms, ASP.NET, and ADO.NET.  These are things the Mono developers have had to implement on their own.&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; They could also break the linkage between Visual Studio and Visual SourceSafe, or provide open hooks so that instead of being stuck with VSS we could use CVS or Subversion or some other real version control system.&amp;lt;&amp;lt;&lt;br&gt;&lt;br&gt;They already do this.  You can use any version control system you want.  Its just there are some idiosyncracies to deal with if you want to use something other than Visual SourceSafe or another vendor's source control software that doesn't have hundreds of thousands of dollars behind it.  MS needs to improve this API, publish it if they don't already (they probably do), and probably just open up the source so add-on developers can work around some of these weirder bugs.  A few fixes to the way VS.NET communicates with the source control provider libraries is warranted as well (c'mon; I can't use F2 to rename a file in a source controlled solution when I'm using AnkhSVN because AnkSVN can't capture that renaming event?).&lt;br&gt;</description></item><item><title>To Arash Partow...</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219435</link><pubDate>Tue, 24 Aug 2004 13:41:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219435</guid><dc:creator>Peter da Silva</dc:creator><description>Microsoft already provides a good POSIX environment. It's off hidden inside Services For UNIX, but it's there.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219439</link><pubDate>Tue, 24 Aug 2004 13:48:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219439</guid><dc:creator>Fred Grott</dc:creator><description>You already give away a product that needs security and standards adherence improvements..&lt;br&gt;&lt;br&gt;If the patens and previous copyrights bought from others can be satisfied..why not open source MSIE?</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219440</link><pubDate>Tue, 24 Aug 2004 13:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219440</guid><dc:creator>Richard Goerwitz</dc:creator><description>I have a quick suggestion.&lt;br&gt;&lt;br&gt;Give back to the open-source community where &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; has taken.&lt;br&gt;&lt;br&gt;E.g., Microsoft made extensive use of an open specification, Kerberos, when putting AD together.  Kerberos had been tested and worked on for quite a long time, and was a well-established standard with a well-established reference implementation by MIT.&lt;br&gt;&lt;br&gt;Microsoft has made some extensions to Kerberos (particularly to what's called the PAC) field.  I believe those extensions are documented, but only under nondisclosure.&lt;br&gt;&lt;br&gt;It would be a useful gesture (useful for people who would like to incorporate Microsoft products into open environments), and in fact a   significant gesture to the community, if Microsoft would, in effect, put back some of what it has taken from the Kerberos community by removing the nondisclosure strictures from its changes to Kerberos, and in effect open source them.&lt;br&gt;&lt;br&gt;Richard Goerwitz&lt;br&gt;Carleton College</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219441</link><pubDate>Tue, 24 Aug 2004 13:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219441</guid><dc:creator>Daniel</dc:creator><description>Microsoft with its extra billions of cash and its extreme profit image should have the courage to behave consistently.  Instead of mimicking others, it could organise open competition for original applications.   The selected winners would be rewarded with generous monetary prizes.   But is  this company so greedy that it can not even imagine such a scheme?</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219442</link><pubDate>Tue, 24 Aug 2004 13:54:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219442</guid><dc:creator>lpbbear</dc:creator><description>How can Microsoft work with Open Source &amp;quot;crowd&amp;quot;.&lt;br&gt;&lt;br&gt;Open the information about how Outlook interacts with Exchange and make it available freely to other mail client and server products INCLUDING Open Source and Free Software.&lt;br&gt;&lt;br&gt;Open the information about how Frontpage interacts with IIS and make it available freely to other client and web server products INCLUDING Open Source and Free Software.&lt;br&gt;&lt;br&gt;Open the information about how .doc and .xls files work and make it available freely to other word processors and office products INCLUDING Open Source and Free Software.&lt;br&gt;&lt;br&gt;Open information about how Windows interacts with applications and make it available freely to WINE, Codeweavers, and Transgaming and any Open Source and Free Software.&lt;br&gt;&lt;br&gt;etc, etc, etc&lt;br&gt;&lt;br&gt;Stop acting like a frigging monster in the marketplace, pull your heads out of your collective rearends, and wake up to the fact that computers are really about one thing, communication. Stop acting as a hindrance to communicating in an open and free manner with the greatest communication device mankind has ever seen, the personal computer&lt;br&gt;.&lt;br&gt;If you don't the public will gradually wake up and MAKE YOU DO IT.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</description></item><item><title>More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219443</link><pubDate>Tue, 24 Aug 2004 16:57:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219443</guid><dc:creator>Open Source Software News</dc:creator><description>More Microsoft Engagement with Open Source Projects I'm currently working to enable more collaboration of the &amp;quot;Open Source&amp;quot; type with the developer community and Microsoft. It should be easy for teams here at Microsoft to develop extensions to their platforms...</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219447</link><pubDate>Tue, 24 Aug 2004 13:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219447</guid><dc:creator>John Douh!</dc:creator><description>Personally I would like to see the NTFS file system opened up.  I know you can already mount it on Linux, but think if a geek could make it more stable like the ext3 and the reiser4 file system so that you don't have to defrag every week/month.  It would also increase the interoperability of *NIX and Windows since Linux has a hard time writing NTFS partitions. ( Matter of opinion I know, no need to flame. )</description></item><item><title>Standards, and fundaments: a Truly RDBMS at the kernel?</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219448</link><pubDate>Tue, 24 Aug 2004 14:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219448</guid><dc:creator>Leandro GFC Dutra</dc:creator><description>Standards and fundaments.&lt;br&gt;&lt;br&gt;&lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; software runs on a too different platform, namely MS Win32; and embodies too bad development and administration practices.  You have been improving, but be it the marketing smokescreen or whatever, sometimes it seems you only improve points without ever seeing the picture.&lt;br&gt;&lt;br&gt;IMNSHO you really missed the boat when you scuttled the planned migration from MS DOS 2.11 or some successor of it to MS Xenix, deciding instead to keep patching MS DOS until it became real-mode MS DOS^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H^HMS OS/2^H^H^H^H^H^H^HMS WNT^H^H^H^H^H^HMS .Net, whatever.&lt;br&gt;&lt;br&gt;Now what you can do?  Even if MS .Net is relatively good, the platform it runs on is just too complex.  You could possibly migrate to a free software kernel like Linux, a BSD or even the GNU Hurd, but I doubt it.  Making MS .Net a standard could help, but it would need to come with assurances of no aggression with patents or whatever.&lt;br&gt;&lt;br&gt;MS SQL Server should not only strive for but indeed achieve ISO SQL compliance at least on par with IBM DB2.&lt;br&gt;&lt;br&gt;Just as good or better would be to freely publish specs of protocols, interfaces and file formats.  That would in effect preclude nearly all the antitrust nastiness, and create a level playing field with free software.  It would, as a huge bonus, build the bridge with free software, as in enabling you to use more of it – apart from hoarding the BSD IP stack into MS Windows and using the GNU toolchain in MS UIS –  and enabling the free software community in using more of your tools and platform.&lt;br&gt;&lt;br&gt;Now as we are talking about this, why not go to the root of the problem?&lt;br&gt;&lt;br&gt;One of the main reasons there are so many standards (and non-standards like your proprietary interfaces, protocols and formats) is complexity, and one of the main causes of complexity is lack of power deriving from poor fundamentals.  Look at Lisp: one of the three oldest programming languages, it is also one of the simplest and at the same time more powerful.  Even C and POSIX, bad as they are, have such longevity compared to MS platforms due to their inherent power.&lt;br&gt;&lt;br&gt;One way here would be to collaborate with the GNU Hurd, that tries to stabilish a bridge between the POSIX (and why not MS Win32 and .Net) world with the functional programming world.&lt;br&gt;&lt;br&gt;But an even better way would be relational data.&lt;br&gt;&lt;br&gt;MS SQL Server may be nice enough as far as current SQL products go, bar IBM DB2 and PostgreSQL, and MS .Net has a real nice concept with its common type system.  But you could both make MS .Net and an RDBMS successor to MS SQL Server much better if you made a sane type system the base of your whole platform, and integrated a D language-accessible TRDBMS compliant with Date’s and Darwen’s _The Third Manifesto_ at the core.  The icing on the cake would be functional programming as a preferred systems programming language, but perhaps that’d be asking too much.&lt;br&gt;&lt;br&gt;And what would that have to do with free software?  Well, it would be such a leapfrog on systems development and deployment that it would stabilish whole new standards.  Make them real standards – just as IBM did with ISO SQL –, and you won’t really need to give much away to be a good member of the global village.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219452</link><pubDate>Tue, 24 Aug 2004 14:05:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219452</guid><dc:creator>Chris</dc:creator><description>Support open standards and make implementations of those standards open source.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219458</link><pubDate>Tue, 24 Aug 2004 14:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219458</guid><dc:creator>Jonathan Wilson</dc:creator><description>An open source .NET would definatly be great :)&lt;br&gt;&lt;br&gt;Something else that I just thought of would be  for microsoft to detatch backend parts of visual studio (the debugger for example) from the front end parts (the editor, project browser and stuff) and basicly Open Source the front end/IDE so that people can make a better &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt; whilst still using the same Visual Studio compiler, linker, tools etc as they always have.&lt;br&gt;For example, the debugger could go in a dll with a COM interface so you can do things like &amp;quot;add watch&amp;quot; and &amp;quot;get data at memory location x&amp;quot; and &amp;quot;step the next ASM instruction&amp;quot; and &amp;quot;disassemble bytes from address x to address y&amp;quot; and so on and the debugger core could do events back like &amp;quot;stopped at breakpoint x&amp;quot; and &amp;quot;watch x has just changed, new value is x&amp;quot; and stuff.&lt;br&gt;&lt;br&gt;Not just the debugger but the compiler, source code control and such too.&lt;br&gt;&lt;br&gt;Also, how about opening the file formats of things like the &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; Debug Symbol files (PDB files)&lt;br&gt;&lt;br&gt;&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219461</link><pubDate>Tue, 24 Aug 2004 14:12:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219461</guid><dc:creator>RandomThoughts</dc:creator><description>One thing that will really help this is if &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; keeps the new &amp;quot;hobiest&amp;quot; &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt;(s) free. &lt;br&gt;The personally I would like to see the editor inside the &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt; opened. There are numerous items I miss (column blocking).&lt;br&gt;&lt;br&gt;I would love to see all the power tools opened up.&lt;br&gt;&lt;br&gt;Lastly for those of you saying you have to buy something to develop in .NET have you actually looked around, or just decided to bitch?&lt;br&gt;#develop + the .NET framework is free and does a fine job of developing .NET.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219462</link><pubDate>Tue, 24 Aug 2004 14:12:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219462</guid><dc:creator>Nick G</dc:creator><description>I'd love to see Microsoft do one thing in particular (well, two really):&lt;br&gt;&lt;br&gt;* split the &amp;quot;window manager&amp;quot; part of the GUI into it's own executable&lt;br&gt;* open source the code for the new exe&lt;br&gt;&lt;br&gt;Within months there's be a myriad of different Windows window managers, just as there is in Unix-land. This would also benefit &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; by helping users of different GUIs to migrate to Windows more easily.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219464</link><pubDate>Tue, 24 Aug 2004 14:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219464</guid><dc:creator>Oren</dc:creator><description>Microsoft provides very strong &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt; and desktop environments. Make use of this. &lt;br&gt;&lt;br&gt;Add features to Visual Studio to support more deployment targets. Support more third party development tools such as CVS/Subversion. Make VS a viable alternative for J2ME, GNU C, and other developers. Compete with Borland and Metrowerks.&lt;br&gt;&lt;br&gt;Don't waste time attempting to bridge the back-end and create N-tier solutions involving &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; servers. This is where emotional sensitivities and Intellectual Property issues are strongest and realistic benefits are minimal.</description></item><item><title>re: Legal ramifications keep me away</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219466</link><pubDate>Tue, 24 Aug 2004 14:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219466</guid><dc:creator>Pete Nelson</dc:creator><description>The reason I'm leary of your open source projects is because I'm not a lawyer.  If there are patents or IP involved, I don't want it tainting my ability to work on a similar project without &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;'s stamp of approval.  Unless the IP these projects are based on are unilaterally released into the public domain, its viewed with suspicion by many.  If there is no IP of concern, that should be clearly expressed.  I haven't looked, but a NDS, of course, would be the nail in the coffin.&lt;br&gt;&lt;br&gt;As far as technologies that I would like to see opened, my short answer would be anything that fosters interoperability.  That would include SMB, NTFS and Office file formats.  Now, I realize that's a pipe dream, but you did ask.</description></item><item><title>give them the benefits of doubt</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219467</link><pubDate>Tue, 24 Aug 2004 14:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219467</guid><dc:creator>Jerome</dc:creator><description>I am sure there are people who are pro open source at Microfost.&lt;br&gt;&lt;br&gt;What I would like it both systems and models to coexist in a friendly and competetive manner.&lt;br&gt;&lt;br&gt;That means stop being a monopolist jerk when it comes to rule the world. You can have a monopoly but still treat your users in a nice way&lt;br&gt;&lt;br&gt;Make your standards open. I hate that I cannot use NTFS from Linux. But I would also like Windows to be knowledgeable of other formats. Why can't windows know about my Linux file systems?&lt;br&gt;&lt;br&gt;Split IE from OS. Why do I have to upgrade system to upgrade IE?&lt;br&gt;&lt;br&gt;From there, you have to slowlt build up your community. It takes time. Look at Sun they are having their go at it.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219469</link><pubDate>Tue, 24 Aug 2004 14:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219469</guid><dc:creator>Randall Burns</dc:creator><description>Microsoft has already hired the creator of IronPython.org to continue that project. I'd like to see him have all the resources he needs and get that language working well and integrated with the various Microsoft tools and libraries.&lt;br&gt;&lt;br&gt;The big hole in Python IMHO is that neither Python nor Iron Python really support CSP(Communicating Sequential Processes) well yet. Microsoft could create some incentives to fix that--and in doing so would deal a serious blow to Java.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219476</link><pubDate>Tue, 24 Aug 2004 14:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219476</guid><dc:creator>Aggrajag</dc:creator><description>I think that parts of the ui would be the perfect place for Open Source: Explorer, shell32, user32 etc. There are a lot of people who like all the bells and whistles on their desktop and (people like me) who take away all of the eye-candy and would like to see even more optimized Windows GUI. I think that Explorer is very usable at the moment but the size just seems  to be increasing with every new version of Windows.</description></item><item><title>Microsoft and Open Source</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219478</link><pubDate>Tue, 24 Aug 2004 14:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219478</guid><dc:creator>Dave</dc:creator><description>For me, there are two attractions of open source. The first is the guarantee it gives me - I know that my data will be forever safe. As Microsoft explores new licensing options (particularly &amp;quot;software leasing&amp;quot;) I have no guarantee that I can obtain legal copies of software to unlock my data from Microsoft formats for terms that I consider reasonable. Sure, my existing programs will keep on working, but if I buy a new PC, I need to buy another license, and &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; may not wish to sell me one. With Free Software, I don't have that problem. Even if the developers of my favourite application give up, I can always install more legal copies of the application, and if there's a feature I need badly enough, I can always pay someone to implement it.&lt;br&gt;&lt;br&gt;There's not an awful lot that MS can do about that, except publish complete specs of all the file formats and give a binding undertaking to allow implementations of them for no license fee. That way, I know that it's at least possible to always get my data back if MS does something bad, and in practice is probably a goof enough guarantee.&lt;br&gt;&lt;br&gt;The second thing is configurability and scriptability. I want hooks everywhere so I can plug python scripts into, well, everything, really, and make the environment behave in a useful way. Some of this can be done, but most of the interesting stuff requires me to pay $1000 for some &lt;a title="Integrated Development Environment" href="http://www.webopedia.com/TERM/I/integrated_development_environment.html" target="_blank"&gt;IDE&lt;/a&gt; or other. I don't want to pay $1000 just to make my Windows work a bit better.&lt;br&gt;&lt;br&gt;Oh, and for the love of Bob, get the IE guys to learn how to render PNGs properly. Alpha transparency really isn't all that hard.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219480</link><pubDate>Tue, 24 Aug 2004 14:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219480</guid><dc:creator>A Sysadmin</dc:creator><description>Tons of enterprise and univ level sysadmins would be happy to work on projects to make intergrating windows systems into the enterprise easier.&lt;br&gt;&lt;br&gt;Open source anything needed for authentication and authorization. Open source anything needed for remote monitoring and management.&lt;br&gt;&lt;br&gt;None of &amp;quot;us&amp;quot; are ever going to be &amp;quot;MS only&amp;quot; -- so there's no market advantage to the &amp;quot;tower of &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;&amp;quot; anymore.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219483</link><pubDate>Tue, 24 Aug 2004 14:35:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219483</guid><dc:creator>Martin</dc:creator><description>I am little confused.  The idea seems to be to 'engage the free software community' and then you start saying about what projects Microsoft can open up.  I feel this is the wrong approach.  At the moment there isn't the motivation for a lot of free software developers to work on Windows based software.  Why not take the alternative tactic and come join us.  I'm not saying 'Immediately GPL all &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; products', simply start contributing to projects as a member of the free software community.&lt;br&gt;&lt;br&gt;A little public domain documentation (and it would have to be public domain) would buy a lot of good will with the WINE and NTFS project teams, financing a handful of your developers to contribute to GNU and GPL products, shifting development towards using open standards and open protocols, a donations to GNU, FSF or OSTG would be a lot more cost effective that advertising, stop the anti-free software rhetoric and start offering support and tools for hetrogenous environments.  The immediate financial cost of this sort of thing - not significant, business oppertunities - would probably create more than it 'looses', publicity - invaluable.&lt;br&gt;&lt;br&gt;I (as something of a free software evangelist) think it's a good idea, 10 - 15 years ago IBM was 'the great evil', they've turned things around and are now gaining significantly from their involvement with the community.  There is no reason Microsoft couldn't do the same.&lt;br&gt;&lt;br&gt;There have been a lot of disagreement between the two camps but this division could be healed if Microsoft are serious about wanting to.  Rather than inviting 'us' into your closed, propriatory world - why not come and join the 'open to all' party that is going on.&lt;br&gt;&lt;br&gt;</description></item><item><title>Nothing</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219486</link><pubDate>Tue, 24 Aug 2004 14:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219486</guid><dc:creator>Jeff Carr</dc:creator><description>&lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; need not do anything thanks, we have things in the free software world going along just fine. But, maybe MS employees should follow Bill's lead and start dumping your stock before it's too late. &lt;a target="_new" href="http://finance.yahoo.com/q/it?s=MSFT"&gt;http://finance.yahoo.com/q/it?s=MSFT&lt;/a&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219487</link><pubDate>Tue, 24 Aug 2004 14:42:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219487</guid><dc:creator>Linuxer</dc:creator><description>Learn from Google : do not be evil! Stop funding SCO, killing small companies with frivolous patent litigation and spreading FUD about Linux. Just be nice.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219488</link><pubDate>Tue, 24 Aug 2004 14:42:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219488</guid><dc:creator>Jim Dabell</dc:creator><description>I think that the most buggy, user-visible software Microsoft makes is Internet Explorer.  It's also the least likely to contain anything valuable to Microsoft - even if the application itself is of strategic importance, the code is years behind that of its competitors.&lt;br&gt;&lt;br&gt;Even if you aren't willing to open the source for anything, having an open Bugzilla that anybody can read and post comments to would be valuable.&lt;br&gt;&lt;br&gt;As I have to work around Internet Explorer bugs on a daily basis, I would be more than willing to participate in such a project.&lt;br&gt;</description></item><item><title>Windows Services for Unix and/or POSIX subsystem</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219490</link><pubDate>Tue, 24 Aug 2004 14:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219490</guid><dc:creator>Dave Cuthbert</dc:creator><description>I'm in the world of chip design software (EDA - electronic design automation), so my world is a bit different from Microsoft's.  A typical product will have thousands of customers instead of millions, but they pay anywhere from $10k-$500k/license/year.  Furthermore, a typical customer will have an entire CAD department devoted to customizing and (re-)qualifying our software (because it's expensive to make bad chips).  The release cycles, though, are just as tight as Windows or Office.  Given these constraints, we leverage a /lot/ of third-party software, including open source.&lt;br&gt;&lt;br&gt;This space has traditionally been dominated by Suns, with a few HP-UX and AIX ports thrown in for good measure.  As SPARCs have fallen behind x86 processors, there's been a big push to move to PCs.  There was a big push to move to NT in the late 90's (prompting us to develop our GUIs on MFC and port to Solaris using Bristol's Wind/U), but that stalled.  The environment was too different, for both developers and the CAD departments; all of this porting was too expensive.&lt;br&gt;&lt;br&gt;Linux is where everything is headed now.  As an architect, though, Linux is a platform nightmare.  If there was a bug on Solaris, for example, we could tell the user to download Sun patch #xxx, problem solved.  With Linux, it's a mix of libc, libstdc++, X, glib, kernels, eye of newt, toe of frog, etc.  GUI toolkits used to be more of a problem, but everyone seems to be settling down to Qt (which is a big relief from Bristol -- ever try to debug a crash in AfxBeginThread implemented on top of pthreads with no source and Bristol support engineers who won't look at anything larger than 10 lines of C?  Yeah.).  I'm also less than pleased by the output by GCC (compared to either Borland or MSVC).&lt;br&gt;&lt;br&gt;I'm straying.  Getting back to the point of my comment, I have played with Windows Services for Unix, thought it was neat, but mostly something for IT folks.  NT's POSIX subsystem was a great idea but was abandoned.  Open either or both of these up, get them up to speed, and it will make life easy for those of us loathe to give up our Bourne shell scripts and fork() calls but are itching to ditch X.&lt;br&gt;&lt;br&gt;I see a lot of comments referring to standards.  Standards mean little in software.  Linux and X, for example, are riddled with non-standard extensions (which are sometimes very useful).  The point of a standard is to make interoperability easier, but they're not the *only* way to achieve this.  Defacto standards (e.g., Qt, MFC, K&amp;amp;R C, Solaris threads, ...) tend to be far more useful than committee-wrangled standards (e.g., C++).</description></item><item><title>Support Older Paradigms</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219491</link><pubDate>Tue, 24 Aug 2004 14:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219491</guid><dc:creator>red floyd</dc:creator><description>This comment is not so much about open sourcing, but it fits with the tenor of some of the other comments.&lt;br&gt;&lt;br&gt;It seems to me that when Microsoft &amp;quot;gets religion&amp;quot; over a certain way of doing things, they drop all support for all other ways.&lt;br&gt;&lt;br&gt;Example: Back in '98/99, I was just starting to work on code for Win32 (having previously worked in the embedded arena).  My target platform was an &amp;quot;old-style&amp;quot; non-networked &amp;quot;monolithic&amp;quot; app.  I had an MSDN subscription.   This was right around the time that MSJ and MIND merged into MSDN mag.&lt;br&gt;&lt;br&gt;My problem was that it was difficult to find info on writing stock Win32 apps, but that all the documentation was related to the new 3-tier web-enabled apps, which frankly, I didn't give a damn about.&lt;br&gt;&lt;br&gt;Now we see the same thing with .NET.&lt;br&gt;&lt;br&gt;While it is necessary to move on to newer and (possibly) better things, you can't just drop support for older paradigms.  PEOPLE STILL WRITE THOSE SORT OF THINGS!&lt;br&gt;&lt;br&gt;</description></item><item><title>Trends...</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219493</link><pubDate>Tue, 24 Aug 2004 14:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219493</guid><dc:creator>Peter da Silva</dc:creator><description>The trends I'm seeing in this thread are:&lt;br&gt;&lt;br&gt;1) Open source .NET.&lt;br&gt;2) Open Source IE.&lt;br&gt;3) Open documentation for the stuff you already have.&lt;br&gt;4) Improve and stabilise the APIs to make OSS easier to integrate.&lt;br&gt;&lt;br&gt;That sound about right, folks?</description></item><item><title>Trends PS...</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219495</link><pubDate>Tue, 24 Aug 2004 14:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219495</guid><dc:creator>Peter da Silva</dc:creator><description>Oh yes...&lt;br&gt;&lt;br&gt;5) Come out and play in *our* sandboxes as well.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219496</link><pubDate>Tue, 24 Aug 2004 14:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219496</guid><dc:creator>Don Quixote</dc:creator><description>Open source the majority of the .Net Framework, and allow porting to Linux, OSX, etc. As a .Net developer, being able to do cross-platform development would be very beneficial.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219498</link><pubDate>Tue, 24 Aug 2004 14:53:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219498</guid><dc:creator>Anonymous</dc:creator><description>CSP looks alot like running a bunch of child processes that communicate via FIFOs | pipes.&lt;br&gt;&lt;br&gt;You can do that now on a *nix machine and/or across a network with just about any OS that supports Python and sockets (I would assume Windows would - but don't have the time to dig through the dogfood to get a definitive answer).</description></item><item><title>Object Persistence</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219499</link><pubDate>Tue, 24 Aug 2004 14:53:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219499</guid><dc:creator>Morten Mertner</dc:creator><description>I would love to work with Microsoft on an object persistence framework (and OR mapper), and would gladly submit the existing code base of Gentle.NET (see URL) for use in such an endeavour.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219500</link><pubDate>Tue, 24 Aug 2004 14:56:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219500</guid><dc:creator>Parker Smith</dc:creator><description>If &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; had an ounce of decency, it would open its formats and APIs. I bet it won't though, for it knows that that would only accelerate its collapse into irrelevance.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219501</link><pubDate>Tue, 24 Aug 2004 14:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219501</guid><dc:creator>David F. Skoll</dc:creator><description>Too late.  Microsoft has no credibility in the Open Source or Free Software communities, so anything it does will be of interest only to Windows customers, and of little interest to the open-source community.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219502</link><pubDate>Tue, 24 Aug 2004 15:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219502</guid><dc:creator>Bilbo Baggins</dc:creator><description>This is such a joke.&lt;br&gt;&lt;br&gt;&lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; refuse to even open so much as their office file formats.&lt;br&gt;&lt;br&gt;It's just a classic divide-and-conquer technique.  Anyone who cares about the future of software should have nothing to do with it.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219503</link><pubDate>Tue, 24 Aug 2004 15:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219503</guid><dc:creator>Kenneth</dc:creator><description>The huge crusade that Microsoft started against GNU/GPL  has severely damaged the firm's reputation.&lt;br&gt;&lt;br&gt;However, some fair play should be done by Microsoft in order to change the business model before falling under a tombstone:&lt;br&gt;&lt;br&gt;- Publish the APIs for every software.&lt;br&gt;- Stop crafting protocols to turn them incompatible if they hadn't been publicly discussed before.&lt;br&gt;- Build software that runs on top of GPL software.&lt;br&gt;- Stop abusing of other propietary software firms.&lt;br&gt;&lt;br&gt;&lt;br&gt;IMHO, every piece of software is simple while looked through a looking glass, so closing the code will only   stop the cut &amp;amp; paste of software.&lt;br&gt;&lt;br&gt;Internet is not secure anymore, it has been proved that source code can be stolen from any place.&lt;br&gt;&lt;br&gt;So shouldn't it be better to show the code and make it available for public review (one of the strongest points of the OpenSource) but mantaining it copyrighted to defend against piracy and cut &amp;amp; paste? This would upgrade security everywhere and also the firm's image.&lt;br&gt;&lt;br&gt;This way, &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; could use this gun against third parties not allowing their customers to ensure about the quality of the bought product ;)&lt;br&gt;&lt;br&gt;&lt;br&gt;Cheers!&lt;br&gt;&lt;br&gt;&lt;br&gt;kenneth@gnunetworks.com&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219504</link><pubDate>Tue, 24 Aug 2004 15:03:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219504</guid><dc:creator>monster</dc:creator><description>what is this community you speak of? The only people interested in open source microsoft projects are those who want to steal intellectual property</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219518</link><pubDate>Tue, 24 Aug 2004 15:26:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219518</guid><dc:creator>gnome</dc:creator><description>PROTOCOLS...</description></item><item><title>IronPython</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219520</link><pubDate>Tue, 24 Aug 2004 15:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219520</guid><dc:creator>scoffman@covansys.com</dc:creator><description>Continue with new releases of IronPython under the Common Public License so that it can be used in Mono as well as in VisualStudio .NET.</description></item><item><title>I don't think so</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219521</link><pubDate>Tue, 24 Aug 2004 15:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219521</guid><dc:creator>zogger</dc:creator><description>I don't think anyone should develop for, use, support, or encourage anyone to continue to use Microsoft. You listening moz guys? Stop bailing them out! Let em crash and burn all on their own!&lt;br&gt;&lt;br&gt; Sorry, &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; as a &amp;quot;corporation&amp;quot;, no matter if some individual employees here and there are &amp;quot;nice guys&amp;quot;, can be summed up in a few words. *Chronic* *Serial* *Crooks*. Gangsters, proven gangsters. If we had better laws that stopped letting corporations get away with abuse like they have done for years, and if they were enforced, this corporation that has bled dry computing for years and beat up on all sortsof people and cost the economy who kjnows what in huge amounts of lost opportunity, then having to deal with insecure crapware on a daily basis, would have been broken up, cast to the winds, and the shareholders be danged. &lt;br&gt;&lt;br&gt;Ya'all Microsoft folks made enough hundreds of billions, why don't you just retire, go work someplace else and stop working for the mafia? You miss the news the past decade, or what? &lt;br&gt;&lt;br&gt; Oh, I forgot, &amp;quot;cash&amp;quot;, anything is OK as long as you can make some &amp;quot;cash&amp;quot; from it.&lt;br&gt;&lt;br&gt;Sorry, that don't compute, it's the same excuse crack dealers use, &amp;quot;it's just business&amp;quot;.&lt;br&gt;&lt;br&gt;Like some other posters here have said, open source doesn't need microsoft, go away, go buy an island someplace and retire with your loot.&lt;br&gt;&lt;br&gt;thank you very much. I'm sure you're a nice guy, like your kids, pet dogs, open the door for ladies, and so on, but when I think of microsoft &amp;quot;helping&amp;quot; people I think of carjackers &amp;quot;helping&amp;quot; you drive your car.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219532</link><pubDate>Tue, 24 Aug 2004 15:38:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219532</guid><dc:creator>Richard Tallent</dc:creator><description>1. Promote OSS licenses within Microsoft Research.&lt;br&gt;&lt;br&gt;2. Leverage &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;'s patent portfolio by offering open patent licenses on a large number of them, with the proviso of those patents being applied to software that uses MS operating systems. Many patents sitting on the shelf, if applied, would increase the quality of Windows software and would give ISVs a better comfort level when their Windows apps happen to compete or overlap with MS's own offerings. Of course, the Linux crowd wins nothing here, but Windows developers certainly do.&lt;br&gt;&lt;br&gt;3. Open protocols for MS Messenger to other clients.&lt;br&gt;&lt;br&gt;4. Ditto on opening up the ObjectSpaces O/R library that never happened.&lt;br&gt;&lt;br&gt;5. Currently, even MS apps aren't consistent in their widget libraries: e.g., compare toolbars in built-in Windows XP apps to Office 2003. How is an ISV supposed to create quality software with fancy GUI widgets that are consistent with MS products? Open-sourcing some of those libraries would go a long way toward helping many small software companies have high-quality, XP-compliant interfaces without the expense and lock-in of the various proprietary libraries that mimic other MS software.</description></item><item><title>3D Movie Maker</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219542</link><pubDate>Tue, 24 Aug 2004 15:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219542</guid><dc:creator>Travis Wells</dc:creator><description>3D Movie Maker.&lt;br&gt;I doubt you've heard of it, but it was a little program &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; made in '95, aimed at kids, that let you make simple movies, using premade actors.&lt;br&gt;&lt;br&gt;It's 9 years old and still has a community of hundreds of directors. I run a site that stores 1344 movies made with this great little program.&lt;br&gt;By letting you use premade actors,props, and backgrounds, they shifted the focus on the voices and story. It's basicly a movie prototyping program.&lt;br&gt;&lt;br&gt;But it still has flaws. It was made right as Direct3D was being released, so it missed the boat. (It's using a software renderer). Some very useful tools were left out (multi-select, texture/model importing, dynamic camera movement) either because they were aiming it at little kids, or because of limitations of the software renderer.&lt;br&gt;&lt;br&gt;Our community is pretty unknown because you have to own the program to view these movies. With the source we could make a 3dmm2AVI converter and let others view some of the best 3dmm movies without having to buy/download the program. We've got several C++ programs and a dozen VB coders, we could do so much with this program.&lt;br&gt;&lt;br&gt;It's sad that one of Microsoft's best programs is almost completely unknown, and the hundreds of great movies made with it suffer for it.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219555</link><pubDate>Tue, 24 Aug 2004 16:03:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219555</guid><dc:creator>Petrus</dc:creator><description>To be honest, I find myself wondering whether anyone can trust what this guy is saying or not. I offer &amp;lt;A HREF=&amp;quot;&lt;a target="_new" href="http://www.opensource.org/halloween/halloween1.php&amp;quot;&amp;gt;this&amp;lt;/A&amp;gt;"&gt;http://www.opensource.org/halloween/halloween1.php&amp;quot;&amp;gt;this&amp;lt;/A&amp;gt;&lt;/a&gt; as exhibit A for the prosecution.&lt;br&gt;&lt;br&gt;I can see two possibilities here. Either this entire site is a complete crock, and is being used as a means of infiltration, or this guy genuinely *is* decent enough, is passionate about what he does...most importantly is not associated with the &amp;quot;old guard&amp;quot; or Microsoft's senior management...and does want to open lines of diplomatic communication. I'm trying to keep an open mind about the idea that this is possible, especially given the inroads and attacks on Microsoft from all sides recently...The company is basically going to have to change its position or die...it's really that simple.&lt;br&gt;&lt;br&gt;Given the incredibly vague chance that the unthinkable could happen and that co-existence and collaboration really are possible, I see one way in which Microsoft and the open source/UNIX using community could be of enormous benefit to each other, as I will elaborate.&lt;br&gt;&lt;br&gt;As ESR has written, the UNIX world's specialty is in the area of internal, CLI based infrastructure...the core guts of an operating system. In that area, Linux and (to a lesser extent) the other Unices are the best in existence. However, one area where (at least at times) things are a bit more lacking is on the GUI side of things. It is true that the KDE project in particular is looking amazing in most respects these days...but there is still a lot of work to be done in some areas. I remember exchanging email with a KDE developer a bit back where he talked about development/usability guidelines were in somewhat short supply. This brings me to Microsoft.&lt;br&gt;&lt;br&gt;It is of great interest to me that Microsoft's areas of proficiency and weakness are directly the opposite of those seen in the UNIX world. While no offense to anyone here is intended, from the point of view of the technical quality of the core operating system, (including the issue of security) in my view Microsoft's track record runs between barely mediocre and utterly attrocious. However despite this, it needs to be remembered that a builder and an interior decorator are two entirely different professions. Where Microsoft has vast experience which could be of tremendous use is in the area of focus grouping and market research, in terms of usability, as well as having written the very kind of developers' usability guidelines which the poster from the KDE project I mentioned earlier was lamenting the lack of.&lt;br&gt;&lt;br&gt;Basically, I see a situation here where each group has something the other needs and could benefit from. Microsoft I think should be discouraged from continuing to attempt to develop core operating systems, and should leave that to the open source community. Where I can see Microsoft and the consumer world benefiting tremendously would be in Microsoft developing its own window environment/window manager system, similar to KDE. And in fact, this is what Apple have done with OSX. Recognising their own strengths and weaknesses, they decided to abandon trying to develop a core operating system themselves, (which they weren't so good at) and instead focus on developing their user interface. (which they are)&lt;br&gt;&lt;br&gt;This would work well in a number of different ways. Microsoft would benefit enormously because, due to the stability of an underlying UNIX codebase, their poor reputation for stability and security would be able to recover. The customer would benefit by retaining the Windows interface to which he/she was accustomed, but also by no longer being faced with the possibility of his/her computer being violated on a daily basis.&lt;br&gt;&lt;br&gt;Microsoft also would not need fear that this would destroy their ability to make money, either. If a consumer can buy a sound, reliable product that is also easy to use from a readily accessible source, then such peace of mind is something that a very large number of people will continue to very willingly pay for. Some adjustment of their current pricing model would be of benefit to all concerned...but it would still be more than possible to make a profit.</description></item><item><title>the source of the "conflict"</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219556</link><pubDate>Tue, 24 Aug 2004 16:03:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219556</guid><dc:creator>pixel fairy</dc:creator><description>many of us would like to see a world where anyone can freely choose whatever software they want, including yours.&lt;br&gt;&lt;br&gt;you are doing everything you can to prevent this, and drive us away.&lt;br&gt;&lt;br&gt;it doesnt make sense to help someone who is trying to drive you under.&lt;br&gt;&lt;br&gt;as for balmer, he seems to want some kind of war.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219558</link><pubDate>Tue, 24 Aug 2004 16:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219558</guid><dc:creator>Another User</dc:creator><description>Open standards and interoperability are what Microsoft is missing right now.  The most valuable collaboration Microsoft could have with its customers would be to document its file formats.  Word, Excel, Power Point, and so on.</description></item><item><title>Step one: stop these anoying adds in Linux related websites</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219561</link><pubDate>Tue, 24 Aug 2004 16:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219561</guid><dc:creator>ammoQ</dc:creator><description>&lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; has been busy lately placing those nasty &amp;quot;Get The Facts&amp;quot; adds on open source related websites.  While I love the idea of MS indirectly sponsoring OSS-related activities, I could think of adds that are more likely to find interest by the typical reader of such a website. It's simply unfriendly to do that. You want the open source people to develop for and with ms... so where are our free tools? Why does the add say &amp;quot;click here too learn that our system is 10x cheaper and 2x faster than yours&amp;quot; instead of &amp;quot;click hear and get everything you need to write Windows programms for free, this means, Windows+VS (some restrictions apply)&amp;quot;?</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219564</link><pubDate>Tue, 24 Aug 2004 16:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219564</guid><dc:creator>ene</dc:creator><description>I would really like to see the shell opened up (either in source or in specs).&lt;br&gt;Microsoft over the years has really focused on providing a better and better user experience. Based on the current demos, Avalon will only move this goal further.&lt;br&gt;&lt;br&gt;However, I am unconvinced that a single user experience is right for me. Explorer.exe may be a wonderful environment for 95% of users, but true customization (not just theming and custom animations) can only be acheived by having third parties contribute their own innovations.&lt;br&gt;&lt;br&gt;Some environments already exist that replace explorer.exe: &amp;lt;a href=&amp;quot;&lt;a target="_new" href="http://litestep.net&amp;quot;&amp;gt;Litestep&amp;lt;/a&amp;gt;"&gt;http://litestep.net&amp;quot;&amp;gt;Litestep&amp;lt;/a&amp;gt;&lt;/a&gt; and &amp;lt;a href=&amp;quot;&lt;a target="_new" href="http://bb4win.org&amp;quot;&amp;gt;BB4Win&amp;lt;/a&amp;gt;"&gt;http://bb4win.org&amp;quot;&amp;gt;BB4Win&amp;lt;/a&amp;gt;&lt;/a&gt;. These programs are only marginally useful as they were not programmed against the specs, and will likely no longer work under Longhorn.&lt;br&gt;&lt;br&gt;I believe that a fair amount of teenagers+ who migrate to Linux do it not for the OpenSourceness, but for the possibility to tweak their environment. Wouldn't it be great if one day we had a variety on Windows such as &amp;lt;a href=&amp;quot;xwinman.org&amp;quot;&amp;gt;this&amp;lt;/a&amp;gt; ?</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219567</link><pubDate>Tue, 24 Aug 2004 16:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219567</guid><dc:creator>Andrew</dc:creator><description>Open source Windows 3.1.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219568</link><pubDate>Tue, 24 Aug 2004 16:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219568</guid><dc:creator>Erik Sargent</dc:creator><description>My ideas are wiki (which at least one &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; developer started on his own already) and build and test tools.&lt;br&gt;&lt;br&gt;The idea I read that makes the most sense to me is ActiveSync.</description></item><item><title>Microsoft's problem(s) with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219572</link><pubDate>Tue, 24 Aug 2004 16:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219572</guid><dc:creator>James</dc:creator><description>I am not a programmer in any sense of the word.    Thus this comment is coming from a slightly different perspective than most.&lt;br&gt;&lt;br&gt;Part of Microsoft's problem (as I see it) is its past history.  Programs like Stacker and Dr. Dos come to mind fairly quickly.  Kerberos extensions that seem to - in some strange manner - may break non-MS kerberos applications. The other part of the problem is how FOSS developers would view &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;'s approach.  Ie:&lt;br&gt;&lt;br&gt;1.  How do I (Microsoft) convince FOSS developers that I will not just take but give back and/or give help to a project?  (Key words, &amp;quot;give back&amp;quot;, &amp;quot;help a project&amp;quot;)&lt;br&gt;&lt;br&gt;2.  How do I (Microsoft) convince FOSS developers that I will not embrace, extend, and ultimately crush any FOSS package that is worked on (aka Netscape) if it is in my best (financial) interest to crush it?&lt;br&gt;&lt;br&gt;3)  How do I (Microsoft) convince others that if I give access to API/program &amp;quot;blah&amp;quot; that I will not come back later with some sort of patent, copyright and/or trade secret issues and take the work of others?  &lt;br&gt;&lt;br&gt;While I'm doubtful the following would happen (given that MSOffice is a key revenue generator) here are some thoughts on how MS could start to improve it's image to various FOSS groups:&lt;br&gt;&lt;br&gt;0. Maybe a FOSS program to access the &amp;quot;windowsupdate.microsoft.com&amp;quot; site that can be run from a DOS command line instead of a GUI  like IE.  Like Debian's apt-update and apt-upgrade command.&lt;br&gt;&lt;br&gt;1.  Start opening up the (some?) file formats for Word, Excel, etc.  Even if it is from Office 97 or Word for DOS.  Open it up _without_ having to sign a zillion NDAs.&lt;br&gt;&lt;br&gt;2.  Have MSOffice support the file formats of OpenOffice and/or StarOffice.  The formats are freely available.&lt;br&gt;&lt;br&gt;3.  Support official standards first and then other (MS) standards.  I'll let others smarter than I go into detail on how MS might not be up-to-snuff when standards are concerned.&lt;br&gt;&lt;br&gt;4.  Open up NTFS file/system formatso that unix boxes can mount it RW with more confidence.&lt;br&gt;&lt;br&gt;Just some thoughts.  Film at eleven.&lt;br&gt;&lt;br&gt;-- James</description></item><item><title>Get some trust first</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219581</link><pubDate>Tue, 24 Aug 2004 16:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219581</guid><dc:creator>Caleb Moore</dc:creator><description>Hi Josh.&lt;br&gt;&lt;br&gt;As a fairly active open source developer myself I feel that trust is the most important elements of cooperation. An open source project is a huge investment of time and both intellectual and emotional energy, if one is to invest in this one needs to feel very secure that the people that one is working with are trustworthy.&lt;br&gt;&lt;br&gt;Please remember that I am not trying to insult you with the following statements, just sharing my perspective. Microsoft does not have a great track record of trust. Microsoft's business practices have been found illegal by a united states court and although it doesn't seem like the punishment was severe it was enough to lower &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;' credibility to many. Microsoft's practices of using market dominance of one product to displace a competitor's product in another market is seen by many as underhanded. Microsoft's past history of modifying standards without consultation or proper documentation so they become incompatible with competitors products like with &amp;quot;HTML 5.0&amp;quot; shows to most potential partners in open source development that Microsoft is not trustworthy and consistent. The ideological pursuit of excellence in software creation doesn't seem to be shared by Microsoft who have released versions of software with disabled functionality such as Windows XP Home Edition, and even more so the soon to be released Windows XP starter edition. This behavior of purposefully limiting a product is seen as repulsive to almost all open source developers. Look Josh, I like your visual studio, it is an excellent environment and it clearly distinguishes itself from most of its competitors by it's coherent, integrated structure, however you must admit that your company has forced some real crap onto the world.&lt;br&gt;&lt;br&gt;Also, open source software is a community, if you attack one project you offend the it in its entirety. I am well aware that Linux is a serious competitor in Microsoft's main market and your livelihoods at least partially depends on defending against it, however every time it is targeted specifically, even hackers that detest Linux realize that it could be their project that is attacked next. If you pour your free time into developing something how could you trust an organization that is pouring millions into destroying something similar because it is in their way?&lt;br&gt;&lt;br&gt;Finally, there is the practical aspect. If someone is experienced, committed and indoctrinated enough in free software to be an asset to your team in more concrete way than simply &amp;quot;open source hippie diversity window dressing&amp;quot; they are probably more comfortable and experienced with unix than they are with windows simply because of the natural trend of surrounding oneself with software of an open nature if that is what one is keen on. As such there is fairly little benefit for Microsoft in cooperating to create a product that in all reality will be made by the open contributers to work far better on the competitors products (OSX, Solaris, Linux, BSD etc.) than it would under Windows, clearly counter-productive for anything but public image.&lt;br&gt;&lt;br&gt;So in conclusion, yes, I would work with Microsoft engineers if they happened to want to work on something that I was interested. I don't have a grudge against MS, just a deep rooted mistrust. No, I would not work with Microsoft the entity because I am convinced that their strategic overseers are working to undo things that people like myself have done even if their engineers may not be. If you want trust, create a version of MS office for Linux and BSD. It doesn't have to be open source itself or anything, just a symbolic action to say &amp;quot;if you want to use open source products, we're cool with that.&amp;quot; I suggest that you make it using the GTK+ toolkit as it is quite consistent and powerful, it can link to closed software without royalties and it would prove that you are willing to contend with our obfuscated, counter-intuitive, poorly-documented interfaces for a change rather than the other way around.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219584</link><pubDate>Tue, 24 Aug 2004 16:48:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219584</guid><dc:creator>tuco</dc:creator><description>Everyone else has already said it. But the file formats needed to be opened if &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; wants to play nice with the other kids in the sandbox.&lt;br&gt; &lt;br&gt;And since that will NEVER happen, it seems pointless to waste time and engery trying to open up MS.  Longhorn is all about locking down and locking out.  I don't see much of a balance in the the future; only a battle.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219588</link><pubDate>Tue, 24 Aug 2004 16:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219588</guid><dc:creator>Caleb Moore</dc:creator><description>Hi, it's me again. I don't know if you are naive, optimistic or simply trying a cynical image stunt, but I just wanted to add that I sincerely wish you all the best for what you are attempting. I really hope you find the cooperation you are looking for.&lt;br&gt;&lt;br&gt;Good luck -- Caleb</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219590</link><pubDate>Tue, 24 Aug 2004 16:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219590</guid><dc:creator>guy</dc:creator><description>Your choice of &amp;quot;Powered by&amp;quot; says it all. And they are not very &amp;quot;open&amp;quot; choices at all (pay full price for these? I bet not). &lt;br&gt; &lt;br&gt;       L.A.M.P.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219594</link><pubDate>Tue, 24 Aug 2004 17:07:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219594</guid><dc:creator>Tony Hoyle</dc:creator><description>Open up the specs.&lt;br&gt;&lt;br&gt;The IFS driver kit is $800...  I just paid $2000 for MSDN Universal to get the checked build of XP, plus DDK, etc. (admittedly I could get MSDN Prof. instead for this but the point stands I thnik).  That's a *huge* barrier to entry for opensource projects.&lt;br&gt;&lt;br&gt;The reason given for this is that driver development is 'hard' and they don't want any old developer doing it (they recommend a company that wants $25,000 for a 2 day training course on it)... which for me just about sums up the &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; attitude ('we can't let the peasants vote.. only landowners are qualified').  &lt;br&gt;&lt;br&gt;btw. filter driver development is not 'hard' if you have the documentation (for any half decent programmer).  I'm nearly finished just from using google and a little bit of luck.  Still need to wait for the proper docs to arrive to find out what horrendous bugs are in there, though...&lt;br&gt;&lt;br&gt;&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219595</link><pubDate>Tue, 24 Aug 2004 17:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219595</guid><dc:creator>Anonymous coward</dc:creator><description>Don't open source anything. I have to work daily with a number of open source jihads and I see the code they produce.&lt;br&gt;All they do is vent the fact that they have no life in horrible code and use comments to insult each other.&lt;br&gt;Why would &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; support that? If anything, create a way for small ISVs to gain access to MS source code where it is mutually beneficial.</description></item><item><title>Why Microsoft cannot engage with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219596</link><pubDate>Tue, 24 Aug 2004 17:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219596</guid><dc:creator>Simon Brooke</dc:creator><description>When I was a young programmer IBM dominated the industry and was able to use its strength to make genuine innovation difficult or impossible. It wasn't until the arrival of microcomputers as a disruptive technology that people were able to overturn the monopoly and begin to build a more open software market again.&lt;br&gt;&lt;br&gt;And Microsoft very quickly closed that down again. There's no point here in discussing the rights and wrongs of how it was done, but software with proprietary protocols and proprietary file formats make monopolies very easy to establish and very hard to break.&lt;br&gt;&lt;br&gt;Programmers living in a world with a giant have three choices: we can subsist on the scraps that fall from the giants table, tinkering at the edges of the giant's technology; we can seek the specialist niches the giant hasn't yet invaded, and then live in fear of the day when the giant decides to move into our niche; or we can work to develop the new disruptive technology which can overthrow the giant.&lt;br&gt;&lt;br&gt;IBM is now no longer the colossus that bestrides and crushes the rest of the industry, and IBM has rebuilt itself as a good corporate citizen. Much to my surprise, I find I now cooperate with IBM and am happy so to do. When non-Microsoft operating systems account for 90% of the market, when all office applications use open, standard, documented file formats, I may similarly be prepared to co-operate with Microsoft.&lt;br&gt;&lt;br&gt;But until then, no.</description></item><item><title>System.Windows.Forms! .NET is *NOT* cross-platform without it.</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219597</link><pubDate>Tue, 24 Aug 2004 17:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219597</guid><dc:creator>Russ</dc:creator><description>How about System.Windows.Forms? &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; is touting how they submitted C# and .NET for the ECMA standard -- but this is all BS becuase they intentionally left System.Windows.Forms out of the ECMA spec, which of course is the lynchpin of any GUI app.&lt;br&gt;&lt;br&gt;This seems to be the standard MS lock-in mechanism rearing its ugly head. Eveyrone knows that .NET is used a LOT for GUI apps, and it would be a real olive-branch for MS to give people the info they need to implement a compatible widget library for other OSes, so .NET could TRULY be cross-platform.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219599</link><pubDate>Tue, 24 Aug 2004 17:20:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219599</guid><dc:creator>josh ledgard</dc:creator><description>Wow, this is a LOT to read through. I normally try and respond to every comment on my blog. I generally don't get more than 10. :-) In this case, however, I think I'll have to respond to themes of comments.  I'll write up a post today/tommorow with a LOT of my responces. &lt;br&gt;&lt;br&gt;I just wanted you to know I am listening.</description></item><item><title>Rumble in the jungle</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219605</link><pubDate>Tue, 24 Aug 2004 20:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219605</guid><dc:creator>The Silent Penguin</dc:creator><description>Over on his blog, Josh Ledgard (the program manager for visual studio) is looking for feedback on which projects Microsoft should open source next. Ears down to the track and you can hear the train a'coming.......</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219606</link><pubDate>Tue, 24 Aug 2004 17:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219606</guid><dc:creator>BillR</dc:creator><description>I think Travis Wells' comment about 3D Movie Maker says it best:&lt;br&gt;&lt;br&gt;&amp;quot;It's sad that one of Microsoft's best programs is almost completely unknown, and the hundreds of great movies made with it suffer for it.&amp;quot;&lt;br&gt;&lt;br&gt;What's sad is that if there had been an Open Source alternative to hitching all his wagons to a proprietary product and format, there'd be hundreds of films that wouldn't have to rely on anything but the passion and technical skill of them people behind them.&lt;br&gt;&lt;br&gt;having lamented about the past, this all boils down to trust: MicroSoft has a long and storied history of &amp;quot;Embrace, Extend, Extinguish&amp;quot;.  There are a lot of people that see Open Source as a final and effecive protection against &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;'s predatory business practices.  You need to help peopel overcome years of fairly slimy past history.  I know many people feel &amp;quot;tainted&amp;quot; when they involve themselves with MS and its products.  You'll have to overcome that feeling.  It's a religious thing with some folks.  There are practical issues as well.&lt;br&gt;&lt;br&gt;Little things come to mind, like would you allow developers to collaborate via IRC/jabber/etc, or is MSN the only avenue possible?  Stuff like this matters.&lt;br&gt;&lt;br&gt;The license you mention sounds great until one wonders what would happen if MS decides to change libraries, API, file formats, network protocol, etc. a couple years after a fork.  &lt;br&gt;&lt;br&gt;Similarly, how would any software patent notions shake out?  If I work on something with MS, and then am allowed to &amp;quot;use it for [my] own purposes commercially&amp;quot;, how do I know MS won't patent what I've helped with and then lock me out?  If MS intends to grant me royalty-free use of whatever I've worked on in perpetuity, what if I decide to transfer ownership?  Many OS developers don't have cadres of lawyers.  MS does, and is *never* afraid to do business with them first.&lt;br&gt;&lt;br&gt;Would MS have any rights to say what I did with my version of the forked code?  Even if I intend to compete commercially directly against MS?  Or if I intend to collaborate with one of MS's competitors?&lt;br&gt;&lt;br&gt;One last word: Open Source is, at its core, about liberty.  That means there are never interoperability issues, because *everything* is open.  Products and projects stand or fall on their own merit, not because of vendor lock-in, marketing budgets, or scare mongering amongst the users.  Can MicroSoft square with that?  Really?  Deep down?  That's what it means to eat your own Open Source dog food.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219607</link><pubDate>Tue, 24 Aug 2004 17:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219607</guid><dc:creator>Devin Watson</dc:creator><description>I have been courted by Microsoft in the past about going to work for them. And I must say that the benefits were really nice, pay was real good, but there was one thing that hung me up about it: I liked using open source software to solve certain problems that &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; products simply couldn't do on their own.&lt;br&gt;&lt;br&gt;At the time, it was anathema for any Microsoftie to even suggest such a thing, so I think this is a good step in the right direction. If I knew for a fact I could go work for MS *and* write OSS code, or work on OSS projects, then I'd be there in a heartbeat. It'd be the best of both worlds.</description></item><item><title>Dreams that will never come true</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219608</link><pubDate>Tue, 24 Aug 2004 17:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219608</guid><dc:creator>TeD</dc:creator><description>Things i'd love to see:&lt;br&gt;&lt;br&gt;Once longhorn comes out, &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; releases the source code to all the obsolete and unsupported versions of windows.&lt;br&gt;&lt;br&gt;Some work towards a BSD/Linux/Unix backing towards windows (yeah... i like OSX) at least enough so that I wouldn't need to dual boot in order to be able to run certain apps that I require. (Colinux for example is moving towards a good direction.)&lt;br&gt;&lt;br&gt;Opening up explorer.exe, and allowing for more customization would also be a great addition. shell replacement can only go so far.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219621</link><pubDate>Tue, 24 Aug 2004 17:48:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219621</guid><dc:creator>JeffW</dc:creator><description>Consider a native, open-source version of active directory - client and server, not just a client - written in ANSI C, hopefully, that integrates seamlessly with UNIX, and that can be easily ported to any platform. None of this crap about exporting from NIS to Active Directory - I'd like to see a PAM module that speaks AD natively. I suppose that means a complete protocol spec, too, but maybe thats too much to hope for.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219625</link><pubDate>Tue, 24 Aug 2004 18:02:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219625</guid><dc:creator>Chris Kunicki</dc:creator><description>An important part in any plan to promote open source or better community of code sharing requires good infrastructure. SourceForge.NET is years ahead of GotDotNet.com. &lt;br&gt;&lt;br&gt;For some time I have felt the major shortcoming in Microsoft's strategy has not been to bolster GDN and advertise it. GDN is a great tool, but is notoriously slow and it's not a surprise to find it unavailable.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219626</link><pubDate>Tue, 24 Aug 2004 18:03:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219626</guid><dc:creator>Peter</dc:creator><description>All the accessories that come with windows. e.g. Notepad, Paint, Calc, Wordpad&lt;br&gt;&lt;br&gt;And possibly the Games as well.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219633</link><pubDate>Tue, 24 Aug 2004 18:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219633</guid><dc:creator>Omar Buhidma</dc:creator><description>Microsoft would do the whole world a boon if they would hand Internet Explorer over to a Mozilla Foundation like organization.  Competition in the browser arena is healthy.  The only browser that has a chance of really competing with Firefox right now is IE (mainly because of user base), but IE grows more discredited every day.  Hand it over to an organization that's unencumbered by the usual &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; distrust and the emerging browser war will be far more constructive then it would otherwise be.&lt;br&gt;&lt;br&gt;Open file formats would also be good.  My understanding of the way some versions of office applications save to disk make me beleive this may be difficult (and the poor quality of some of Office's file filters for use with older Office file formats leads me to beleive even the MS developers don't have a full grasp of the Office file formats), but any attempt to improve the detail and accuracy of the published file formats would improve Microsofts credibility.&lt;br&gt; &lt;br&gt;Omar</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219641</link><pubDate>Tue, 24 Aug 2004 18:31:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219641</guid><dc:creator>Gonzalo</dc:creator><description>Everything that needed to be said has been said. To summarize:&lt;br&gt;&lt;br&gt;1) Support OASIS file formats in your products. This is how you were able to beat Lotus and Wordperfect before.&lt;br&gt;&lt;br&gt;2) Allow others to read your file protocols and show that you have faith in your own products by letting customers see that you compete on the merits of the Office suite. In other words, don't lock customers.&lt;br&gt;&lt;br&gt;3) Enhance interoperability at every layer of the software stack. Microsoft has the technology how-to and the money to change how we experience computing, but they will only be able to do so by opening up so that we can all work on a common set of standard file protocols and APIs. &lt;br&gt;&lt;br&gt;Open sourcing .NET would be a huge boom to Microsoft as it would alter computing history creating the single most unified computing platform in history.&lt;br&gt;&lt;br&gt;Do it. Be relentless, be the voice of reason and change within Microsoft. Lead and educate others and make it known to management that the world has changed and thus Microsoft must too change.&lt;br&gt;&lt;br&gt;Good luck</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219642</link><pubDate>Tue, 24 Aug 2004 18:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219642</guid><dc:creator>Chris</dc:creator><description>Switch to a linux/bsd based OS and you might have a chance.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219643</link><pubDate>Tue, 24 Aug 2004 18:34:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219643</guid><dc:creator>James Governor</dc:creator><description>great to see this. the walls between open and closed source are coming down. software companies need to do both. i noticed you quoted my business partner and it was interesting because we've spent a lot of time on this:&lt;br&gt;&lt;a target="_new" href="http://www.redmonk.com/jgovernor/archives/000045.html"&gt;http://www.redmonk.com/jgovernor/archives/000045.html&lt;/a&gt;&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219644</link><pubDate>Tue, 24 Aug 2004 18:34:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219644</guid><dc:creator>Cory</dc:creator><description>What would be extremely groovy, would be a free(speech and beer) framework that work beautifully on both platforms. (java still needs work) For instance, .Net is great for App development in Windows. Qt is equally great for Linux (I'm a KDE man.. Sorry Gnome folks) I understand that Qt works on Windows too ($2500 is a bit pricey though.) What would be great, is a project to make ANY application run as well on either platform as it would with it's own APIs would. Or an API translator so You could take a .Net app and have it &amp;quot;traslated&amp;quot; to Qt/C++. This way, applications can be released for either platform and can reach 100% of the market.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219646</link><pubDate>Tue, 24 Aug 2004 18:37:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219646</guid><dc:creator>J. Daniel Smith</dc:creator><description>One way to get some traction on this is to determine were the true &amp;quot;value add&amp;quot; is in various pieces of software.&lt;br&gt;&lt;br&gt;For example, Solitare and Write add very little value (if any), so make the source code available.  Things start to get tricker with things like windows Movie Maker or Internet Explorer, but I think both are relatively unimportant compared to Word (the blather about IE being &amp;quot;integrated&amp;quot; into Windows aside).&lt;br&gt;&lt;br&gt;Large parts of .NET are already open-sourced, and there are projects that provide Visual-Studio like tools.  So maybe VS could be tweaked to separate out the &amp;quot;free&amp;quot; stuff from the &amp;quot;pay&amp;quot; stuff (perhaps pushing the &amp;quot;Express&amp;quot; concept a bit further).&lt;br&gt;</description></item><item><title>Stop issuing trivial software-patents</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219650</link><pubDate>Tue, 24 Aug 2004 18:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219650</guid><dc:creator>Carsten</dc:creator><description>Because this is doing OSS no good and it proves &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; to be dishonest with their &amp;quot;strategy&amp;quot; of embracing OSS. Or is embracing meant as in &amp;quot;embracing one more time before putting an end to OSS&amp;quot;?&lt;br&gt;&lt;br&gt;Besides that I welcomed MS' first SharedSource on sourceforge.net and did download it to see what kind of sourcecode was made available for &amp;quot;free&amp;quot;. I was astonished to see that it was not only half-a-full application (cmd line app) but that it was also code that could eventually be shown to other people. Keep up with that. As to your OSS, or rather Shared-Source, initiative- better keep it as it is, don't try to make another market your market. It has shown in the past, that you did not do good to your first market. As OSS is highly ideology driven, and MS is a firm with the most incompatible ideology to that of OSS I reckon that it would not become OSS if MS tried to make it a part of their strategy - or that it would not become MS, consider MS becoming an anti-imperialistic, non-profit organization, a good laugh we all would have at the mere thought of it, wouldn't we? &lt;br&gt;&lt;br&gt;Leave it as it is I say, but at least change some of MS ideology and (sub)culture to become more respectful in terms of respect for other human beings and their needs besides what MS thinks that their needs are or should be in regard to a prospering MS. It is the people that should prosper on OSS and every other software and not MS on the people by making OSS part of their whatever-the-strategy-was.&lt;br&gt;&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219656</link><pubDate>Tue, 24 Aug 2004 18:57:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219656</guid><dc:creator>avecfrites</dc:creator><description>Not strictly an open source comment, but here is a big win for Microsoft trying to attract hip developers: Give the huge number of Perl developers a way to create &amp;quot;real&amp;quot; Windows apps, cheaply or for free.  This means:&lt;br&gt;&lt;br&gt;1) Really support Perl in .net, not relying on ActiveState and other external parties to provide slow kludgy expensive separate tools.&lt;br&gt;&lt;br&gt;2) Provide a stripped down development kit, free, for Perl coders who want to download and use it.&lt;br&gt;&lt;br&gt;Lots of Perl programmers would love to be able to deploy more than CGI programs, and they typically move to Java, or stay on servers, because Microsoft doesn't give them anywhere to go.&lt;br&gt;&lt;br&gt;&lt;br&gt;</description></item><item><title>Some pragmatic suggestions</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219660</link><pubDate>Tue, 24 Aug 2004 18:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219660</guid><dc:creator>Ian Schmidt</dc:creator><description>This is probably not going to be read ;-), but here's some suggestions.  (My background: I run and play with Linux at home, I write proprietary software (including Win32, Xbox,  and .NET) at work.&lt;br&gt;&lt;br&gt;1) Separate Visual Studio from the languages.  Make it work with GCC (via MinGW/Cygwin), including debugging.  Throw in Perl/Python/whatever support.  Support open-source source management like CVS and Subversion.  Maybe even open source VS itself.  Every Win32 developer on the planet has a pet peeve with VS (mine being the dreadfully bad BRIEF emulation compared to the recently departed CodeWright) and if they all could &amp;quot;scratch their itch&amp;quot; you'd have one hell of a great product.&lt;br&gt;&lt;br&gt;2) Eliminate all the &amp;quot;secret&amp;quot; (by-number) imports in the major Win32 DLLs that apps like IE, Explorer.exe, and Office use.  Shell32 in particular is rife with them, and ComCtl32 has a lot as well.  Throw the docs up on MSDN.  If something is useful for IE, why should I have to reinvent it?&lt;br&gt;&lt;br&gt;3) Open source all the non-essential bits that come with various &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; things.  Pretty much the entire contents of Start -&amp;gt; Programs -&amp;gt; Accessories would be a good place to start.&lt;br&gt;&lt;br&gt;4) Open source older &amp;quot;non-revenue&amp;quot; technologies as they're replaced by the latest and greatest, including entire OSes where applicable (example: Windows 3.1, the 16-bit version of Visual C++, &amp;quot;Bob&amp;quot;, and whatever other skeletons are rattling around MS's closets).&lt;br&gt;&lt;br&gt;5) Open up file formats where applicable.  I understand keeping current Word secret as a business model, but opening up e.g. Word 97's formats would go a long way.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219661</link><pubDate>Tue, 24 Aug 2004 19:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219661</guid><dc:creator>avecfrites</dc:creator><description>Provide a stable socket-capable port of Perl to the Pocket PC, along with a developer price on wifi-equipped Pocket PCs. You'll find some pretty cool mobile p2p apps come out, most of which will be open source.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219663</link><pubDate>Tue, 24 Aug 2004 19:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219663</guid><dc:creator>avecfrites</dc:creator><description>Contribute some interface modules to CPAN that allow Perl programmers to integrate with key Microsoft components, such as Exchange, UI widgets, DHTML, Office, whatever you want enhanced.  CPAN contains lots of great stuff, but a lot of it is also not quite stable and not certain to track future Microsoft changes.&lt;br&gt;</description></item><item><title>Visual Basic</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219668</link><pubDate>Tue, 24 Aug 2004 19:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219668</guid><dc:creator>Daniel von Asmuth</dc:creator><description>How about providing support for Visual Basic (e.g. vs. 6) for all those users who are unwilling to move to VB .Net?</description></item><item><title>I have to agree with Ian Schmidt</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219676</link><pubDate>Tue, 24 Aug 2004 19:24:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219676</guid><dc:creator>Steven Edwards</dc:creator><description>I would like to see Microsoft start releasing the source to older versions of Windows such as Windows 95. I would suggest a 10 year cycle. In 2005 you BSD license what you can from Win95 and in 2008 you do the same for Win98. &lt;br&gt;&lt;br&gt;Windows NT is another case as the NT kernel is still a big cash cow for Microsoft as with our little friend ReactOS I doubt Microsoft would want to release it right away. I would suggest doing it that same way. Release the souce for it in 2008 and then service pack 6 in 2009.&lt;br&gt;&lt;br&gt;I doubt this will ever happen as the community could then adopt a Free version of Windows and improve it rather than buying the latest and greatest. I mean look at Unix, its lasted 30 years.</description></item><item><title>COM/DCOM</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219684</link><pubDate>Tue, 24 Aug 2004 19:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219684</guid><dc:creator>Erik Martino</dc:creator><description>I would like to see COM/DCOM open sourced</description></item><item><title>Open formats.</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219706</link><pubDate>Tue, 24 Aug 2004 19:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219706</guid><dc:creator>Daniel Carrera</dc:creator><description>I would like to see Microsoft adopt open formats.  Specifically, I would like to see &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; Office support the new OASIS file format.&lt;br&gt;&lt;br&gt;OASIS is a standards organization that includes several corporations (Sun, Corel, Boeing, etc), non-profig troups (KDE Leagues) and individuals.&lt;br&gt;&lt;br&gt;The OASIS file format is intended as an open standard for office applications.  It will be the default file format of OpenOffice.org starting at version 2.0 and KOffice starting at version 1.4.&lt;br&gt;&lt;br&gt;I expect future versions of Corel Office will at least support the format (since Corel is in the OASIS committie and helped design the format).&lt;br&gt;&lt;br&gt;I would be much less wary to work with Microsoft if I had the confort and security that the OASIS format brings.&lt;br&gt;&lt;br&gt;If you are interested in talking about this, feel free to contact me.  My name is Daniel Carrera and I am an OpenOffice.org volunteer.&lt;br&gt;&lt;br&gt;I can be reached at dcarrera@openoffice.org&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;Daniel.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219708</link><pubDate>Tue, 24 Aug 2004 20:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219708</guid><dc:creator>audiokat</dc:creator><description>In participating in open-source projects there are several things I enjoy. If there's truely a bug in how something works, e.g. it's supposed to do something and doesn't or does something it's not supposed to such as crash, I can usually pull open the source and debug it until I find it and squish it. I also enjoy being able to find out why it does what it does and whether or not it conforms to the protocol/standard it's supposed to be using and trying to get it to adapt as much as possible to that.&lt;br&gt;&lt;br&gt;As far as what projects I'd like to see Microsoft open source, I think Microsoft needs to decide what applications are core to the business and which applications don't matter as much. For instance, companies spend thousands and thousands of dollars setting up email solutions using exchange and therefore buying windows licenses for their exhange servers as well, many times also using NT authentication or active directory on another machine with another windows license. I would like to see the protocol for exchange published as a standard and to have outlook released as a reference implementation of that standard. Internet Explorer is similar. &lt;br&gt;&lt;br&gt;I think the cooperation between open source and microsoft is mutually beneficial especially with outlook and Internet explorer. Even while many open source folk (and even a bunch of those who are not) don't choose to use or despise internet explorer many of us still have to use it for various reasons and/or support it in web pages and applications. Having internet explorer conform more to standards and open to security audit would be of much help to both parties. Same with Outlook. &lt;br&gt;&lt;br&gt;And a note to those who say they wouldn't get anything back by contributing to a microsoft project.....if microsoft was to grant access to the source of internet explorer or outlook, I think that many of us, especially in the internet or IT field, and any of us that have had a family member calling up asking about a virus they got via IE or outlook or other things of that nature inherantly benefit, whether we get kudos, recognition, beer, cash or nothing.</description></item><item><title>dragon bringers &amp;raquo; Josh Ledgard for Microsoft CEO!</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219721</link><pubDate>Tue, 24 Aug 2004 23:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219721</guid><dc:creator>TrackBack</dc:creator><description>dragon bringers &amp;amp;raquo; Josh Ledgard for Microsoft CEO!</description></item><item><title>More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219728</link><pubDate>Tue, 24 Aug 2004 23:37:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219728</guid><dc:creator>Jeremy's Blog</dc:creator><description>Seems at least one &amp;lt;a href=&amp;quot;http://weblogs.asp.net/jledgard/archive/2004/08/20/217992.aspx&amp;quot;&amp;gt;person&amp;lt;/a&amp;gt; at Microsoft would see them do a little more in the Open Source arena.  On ...</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219743</link><pubDate>Tue, 24 Aug 2004 20:54:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219743</guid><dc:creator>Alvaro</dc:creator><description>Quite simple: take IE into that route. Let the IE development go through a community. The biggest lack for IE are the security bugs and the standards (W3C) no-compliance. Particulary bad is the latter, even for non-IE users (such as me). Letting a community drive or help IE development would definitely help everyone, approaching standards faster and not ever stalling development again.&lt;br&gt;&lt;br&gt;Unless Microsoft removes IE from the Windows OS, of course.&lt;br&gt;&lt;br&gt;By the way, a good choice of license that allows what you are looking for is clearly BSD.&lt;br&gt;&lt;br&gt;Good luck!</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219750</link><pubDate>Tue, 24 Aug 2004 21:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219750</guid><dc:creator>tuco</dc:creator><description>This is OT but I was reading your &amp;quot;When Penguins Attack&amp;quot; and you made mention not understanding &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; Licensing and didn't like losing customers this way.  Here is a link that breaks down some legal terms in the MS EULA for home users and explains things.&lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://www.cybersource.com.au/cyber/about/comparing_the_gpl_to_eula.pdf"&gt;http://www.cybersource.com.au/cyber/about/comparing_the_gpl_to_eula.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;The MS EULA is what keeps me from using Windows! For me, the MS EULA is totally unacceptable.  And I don't see how anyone can accept these terms.  It is control-freak city. Of course, no one reads it and just clicks &amp;quot;I Accept&amp;quot;.  And if you did read it, you'd need to be a lawyer to understand what rights you are surrendering.  The terms in the EULA need to be negotiable.&lt;br&gt;&lt;br&gt;Sorry for being OT but comments for that post are closed.</description></item><item><title>will this even be seen by microsoft itself???</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219756</link><pubDate>Tue, 24 Aug 2004 21:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219756</guid><dc:creator>Leon Anderson</dc:creator><description>I am quite interested to see if any of the ideas and suggestions on this blog will be seen by microsoft developers to put together some sort of suite for the programmer to establish standards and protocals for all to follow....and to be able to quickly deploy feedbacks and benchmarks for the community...what Sun and Helix have over microsoft...i would gladly help with this if there was an actual interaction within the community and the company. Sun and Helix &lt;br&gt;listen to their communities and actually give them feddback for their evolving developments!</description></item><item><title>What projects we should start with</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219762</link><pubDate>Tue, 24 Aug 2004 21:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219762</guid><dc:creator>Leon Anderson</dc:creator><description>My first open source project for the microsoft community is to set up a software that allows virtual internet clustering of computers s that anyone that allows microsoft to do so by agreeing to the &amp;quot; Super Computer Simulation Project &amp;quot; will allow microsoft to set up a virtual cluster over the internet and see how many computers we can actually cluster together.&lt;br&gt;&lt;br&gt;The reason for doing something like this is if ever there is a disaster or situation requiring a vast amount of processing power...more than what the super computers out today can actually put out....&lt;br&gt;&lt;br&gt;RealWorldExample : Imagine a corporate space travel company trying to win that space x contest makes it out to the very top layers of the atmosphere and something goes wrong....&lt;br&gt;there are minutes ( not hours or days ) to figure out what to do with the problem....&lt;br&gt;use the microsoft software that actually uses a database to get or refer a list of available computers online allowing themselves to be used for this situation.&lt;br&gt;&lt;br&gt;not 1 not 100 not 1000 not even 10000&lt;br&gt;but imagine the processing power of 1000000&lt;br&gt;computers...each on an average having a pentium III processor....&lt;br&gt;&lt;br&gt;The draw back is that someone allowing themselves to be used for this would want something in return.....maybe microsoft can offer the big ani-virus companies more of their source code for the developement of better anti-virus software....running this new project/program...you would need it!</description></item><item><title>What's up with the microsoft community</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219766</link><pubDate>Tue, 24 Aug 2004 21:32:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219766</guid><dc:creator>Leon Anderson</dc:creator><description>Hey everybody...would it not be cool if microsoft where to start a community for this project and set them up with a message board&lt;br&gt;and actual adminsitrators/developers that could monitor that blogs and forums and post some helpful comments to those individuals developing &amp;quot;their&amp;quot; software.....but that means they would have to actually pay a few of these &amp;quot;microsoft professionals&amp;quot; some money for administrating these forums. That would mean it would cost them money...and we know this won't happen.....because the whole reason they are going &amp;quot;open source&amp;quot; is that they want to cash in on the &amp;quot;free&amp;quot; development that everyone does for all these other companies/projects.&lt;br&gt;</description></item><item><title>open source the API used by 3D apps and games</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219779</link><pubDate>Tue, 24 Aug 2004 21:53:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219779</guid><dc:creator>palisade</dc:creator><description>Open up Direct3D, if nothing else.&lt;br&gt;&lt;br&gt;a) it would be a heavy blow to opengl&lt;br&gt;b) there would be ports of d3d to macos and linux among other platforms, thereby making d3d ubiquitous (as much as opengl)&lt;br&gt;c) someone would inevitably create embedded versions of d3d for pda for any embedded OS&lt;br&gt;d) slews of bugs and thereby fixes to d3d would come out of the woodwork from 3d and game developers&lt;br&gt;e) tons of features and enhancements would surely be made by those same people&lt;br&gt;&lt;br&gt;The way I see it, &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; would still have their proprietary XNA technology. Therefore there's no harm in opening up D3D, which would really benefit and bring relief to many 3D software developers and game programmers.&lt;br&gt;&lt;br&gt;While you're doing that it might be handy to open up DirectInput along side this. Almost everyone uses this as the defacto method of grabbing high resolution input and handling many devices. Which is just as important as Direct3D. In fact, it might be easier to convince the higher ups to open that up first.</description></item><item><title>Open Source Internet Explorer</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219786</link><pubDate>Tue, 24 Aug 2004 22:09:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219786</guid><dc:creator>MSB</dc:creator><description>I think the one program Microsoft desperately NEEDS to open source is Internet Explorer. IE generates negative revenue as well as negative publicity for Microsoft and apparently Microsoft lacks the motivation to spend resources on getting IE fixed adequately fast. If IE were released as open source under an acceptable license (i.e OSI approved), I have no doubts that IE would quickly develop into a secure and standards-compliant browser. Microsoft would benefit from this as would end users as would web designers. Everyone would win.&lt;br&gt;&lt;br&gt;Aside from releasing its own software as open source I think Microsoft should start distributing open source. There are lots of open source packages for Windows. Why doesn't Microsoft ship a selection of software comparable to what you get with a Linux distro? They could do so at almost no additional cost.&lt;br&gt;Windows should ship with standard Unix tools by default.&lt;br&gt;</description></item><item><title>Microsoft Pulls out of UN Standards Body</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219797</link><pubDate>Tue, 24 Aug 2004 22:26:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219797</guid><dc:creator>James</dc:creator><description>Josh, above you wrote: (quote) &amp;quot;I cringe when I see the news headlines like &amp;quot;&amp;lt;Random Microsoft Executive&amp;gt; Rails Against Open Source&amp;quot;. (/quote)&lt;br&gt;&lt;br&gt;Start cringing again.  :-)  This is why most people hesitate to trust &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;.  The article is on &lt;a target="_new" href="http://www.groklaw.net/"&gt;http://www.groklaw.net/&lt;/a&gt; and the original article from the New York Times.&lt;br&gt;&lt;br&gt;&amp;quot;The New York Times' John Markoff has the story that Microsoft has pulled out of a UN software standards body (United Nations Center for Trade Facilitation and Electronic Business, or U.N./Cefac) for &amp;quot;business reasons&amp;quot;, after a dispute over &amp;quot;a set of thorny issues over control of intellectual property that is being contributed to the standards-setting effort&amp;quot;:&lt;br&gt;&lt;br&gt;    &amp;quot;Earlier this year, Microsoft's participation had created controversy within the group, which is attempting to define standards for creating a new generation of Internet services to automate buying and selling through networks of computers.&amp;quot;&lt;br&gt;&lt;br&gt;In an email to the group, Microsoft made clear that any prior contributions it has made are &amp;quot;not bound by the negotiations taking place over the control of intellectual property.&amp;quot; The group wishes corporations who contribute technology to indemnify the United Nations against IP claims. In May, SAP also withdrew from the group. &lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://www.nytimes.com/2004/08/24/technology/24soft.html"&gt;http://www.nytimes.com/2004/08/24/technology/24soft.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Oops....or maybe this:  &amp;quot;Microsoft published today a new license and FAQ for Sender-ID anti-spam standard being developed by the IETF's MARID WG (based on SPF). To use the license, a signed agreement with MSFT is required. Compatability with the Open Source Definition, the Free Software Definition, the Debian Free Software Guidelines, and the GPL/LGPL licenses is already in question.&amp;quot;&lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://www.imc.org/ietf-mxcomp/mail-archive/msg03496.html"&gt;http://www.imc.org/ietf-mxcomp/mail-archive/msg03496.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://www.imc.org/ietf-mxcomp/mail-archive/msg03514.html"&gt;http://www.imc.org/ietf-mxcomp/mail-archive/msg03514.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;And of course you can't have a post without a slashdot link.  :-)&lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://yro.slashdot.org/comments.pl?sid=119211&amp;amp;threshold=5&amp;amp;mode=thread&amp;amp;commentsort=0&amp;amp;op=Change"&gt;http://yro.slashdot.org/comments.pl?sid=119211&amp;amp;threshold=5&amp;amp;mode=thread&amp;amp;commentsort=0&amp;amp;op=Change&lt;/a&gt;&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219798</link><pubDate>Tue, 24 Aug 2004 22:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219798</guid><dc:creator>Tommi</dc:creator><description>I suggest Microsoft open sources their localization tools. LocStudio, Helium, you name it. They are all better than the competition's and it would be so great if everybody could use them and not only Microsoft's employees and localization vendors.&lt;br&gt;&lt;br&gt;Also the likelihood of bugs in these tools being fixed would most likely be higher than it is now. ;)&lt;br&gt;&lt;br&gt;~Tommi</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219809</link><pubDate>Tue, 24 Aug 2004 22:41:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219809</guid><dc:creator>Jonathan Wilson</dc:creator><description>Heres another cool idea.&lt;br&gt;&lt;br&gt;Support GCC on windows.&lt;br&gt;Help out MingW to be better at windows.&lt;br&gt;</description></item><item><title>Visual Studio PM asks what MS should open source</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219812</link><pubDate>Wed, 25 Aug 2004 01:47:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219812</guid><dc:creator>anil dash's daily links</dc:creator><description>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx...</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219814</link><pubDate>Tue, 24 Aug 2004 22:49:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219814</guid><dc:creator>Jonathan Wilson</dc:creator><description>and, in case it hasnt been said enough yet, Open Source Internet Explorer.&lt;br&gt;&lt;br&gt;Its probobly actually costing you money to maintain it (fix security holes etc). Several experts (including the US government CERT I believe) have said to stop using it.&lt;br&gt;&lt;br&gt;Release it under an OSI licence and I am sure there are a fair few people out there who are willing to make (and let you guys use/ship) genuine improvements to IE to make it a better browser. Better PNG support. Better W3C HTML standards complience. Better W3C CSS standards complience. Better security when it comes to ActiveX and VBScript. And so on.&lt;br&gt;&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219815</link><pubDate>Tue, 24 Aug 2004 22:50:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219815</guid><dc:creator>lilo</dc:creator><description>Probably the simpler is to turn into open source support for &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; hardware devices that MS is no longer producing.&lt;br&gt;&lt;br&gt;I think specifically about the wifi broadband routers and cards (MN-100/500/700, etc). MS has announced that is getting out the business of selling these devices, and is not upgrading the firmware for several of them. &lt;br&gt;&lt;br&gt;It would be great if these can be supported through an open source effort. This wouldn't impact MS business &amp;lt;read not competing&amp;gt;, and in fact would improve the value of an MS product for customers &amp;lt;read increased trust in future MS products&amp;gt;.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219819</link><pubDate>Tue, 24 Aug 2004 22:54:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219819</guid><dc:creator>Tux ninja</dc:creator><description>M$ is a nocive company and you should be ashamed of work for Bill Gate's company.&lt;br&gt;&lt;br&gt;Long live to true free (as freedom, not like freeware) software and linux !</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219834</link><pubDate>Tue, 24 Aug 2004 23:34:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219834</guid><dc:creator>James</dc:creator><description>Why I don't trust any of what is being done... Well how about this one.&lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&amp;amp;Sect2=HITOFF&amp;amp;d=PALL&amp;amp;p=1&amp;amp;u=/netahtml/srchnum.htm&amp;amp;r=1&amp;amp;f=G&amp;amp;l=50&amp;amp;s1=6,775,781.WKU.&amp;amp;OS=PN/6,775,781&amp;amp;RS=PN/6,775,781"&gt;http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&amp;amp;Sect2=HITOFF&amp;amp;d=PALL&amp;amp;p=1&amp;amp;u=/netahtml/srchnum.htm&amp;amp;r=1&amp;amp;f=G&amp;amp;l=50&amp;amp;s1=6,775,781.WKU.&amp;amp;OS=PN/6,775,781&amp;amp;RS=PN/6,775,781&lt;/a&gt;&lt;br&gt;&lt;br&gt;This patent application patents the SU and Sudo commands Which for those who don't know are commands that have been around since before M$ released thier first OS of any kind.  In short.  What is the missing link.  Trust. I don't really think M$ will ever have that.  Not even from their partners (Oracle, IBM, Nvidia, Adobe etc.) past and present.</description></item><item><title>The Microsoft Trap</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219839</link><pubDate>Tue, 24 Aug 2004 23:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219839</guid><dc:creator>Brian</dc:creator><description>Not so long ago RMS wrote a piece about the Java trap.  That is to say that even if a developer writes Java software and licenses it in a free software manner unless it can be used with free software Java VMs like gcj it does not help the community.  It's much the same with .NET, unless it works with Mono or DotGNU it isn't that useful should the commercial system suddenly be yanked out from under you.  And this can be extended to your example of a developer writing a plugin for Visual Studio.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219840</link><pubDate>Tue, 24 Aug 2004 23:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219840</guid><dc:creator>OFFICE</dc:creator><description>OFFICE PLEASE!!!!!!!!!!!!</description></item><item><title>Applicants for patents on sudo and su should be charged with fraud</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219843</link><pubDate>Tue, 24 Aug 2004 23:46:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219843</guid><dc:creator>NotNeeded</dc:creator><description>If instead of utter stupidity and incompetency it can be proven that they are applying for the patent as part of a FUD campaign then they their managers and the CEO of the company should be imprisoned and the company fined 10% of its net worth and prevented from operating for 30 days. Punitive penalties such as this are the only way to stop companies like Microsoft, Monsanto, IBM, Disney and Roche from **stealing** on a regular basis.&lt;br&gt;&lt;br&gt;Tobacco company execs got punished for destroying lungs &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; should be **punished** for stealing and attempting to PATENT a concept so general and self-evident that it is an affront to human decency.&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;blockquote&amp;gt;&lt;br&gt;Sudo was first conceived and implemented by Bob Coggeshall and Cliff&lt;br&gt;Spencer around 1980 at the Department of Computer Science at&lt;br&gt;SUNY/Buffalo.  It ran on a VAX-11/750 running 4.1BSD.  An updated&lt;br&gt;version, credited to Phil Betchel, Cliff Spencer, Gretchen Phillips,&lt;br&gt;John LoVerso and Don Gworek, was posted to the net.sources newsgroup&lt;br&gt;in December of 1985.&lt;br&gt;&lt;br&gt;In the Summer of 1986, Garth Snyder released and enhanced version&lt;br&gt;of sudo. For the next 5 years, sudo was fed and watered by a handful&lt;br&gt;of folks at CU-Boulder, including Bob Coggeshall, Bob Manchek, and&lt;br&gt;Trent Hein.&lt;br&gt;&amp;lt;/blockquote&amp;gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219850</link><pubDate>Wed, 25 Aug 2004 00:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219850</guid><dc:creator>rk sys admin.</dc:creator><description>Please Open Source Resource kits.&lt;br&gt;&lt;br&gt;Windows cant' be professionally administered without resource kits utilities.&lt;br&gt;Those should be opensourced.&lt;br&gt;&lt;br&gt;Resource kits could stay unsuported/separate download. But open source would allow them to improve, faster and in the direction that afects the people who use it most.&lt;br&gt;&lt;br&gt;After the resource kits tools, administrative tools, accessories.&lt;br&gt;When was calc.exe last improved? How long did it take to fix that wrong calculation bug&lt;br&gt;&lt;br&gt;Right now it feels more like the tools provided with windows are unfinished. Have not been worn/shaped by extended use. A bit like an prefab campingcar and an old wooden ship.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219851</link><pubDate>Wed, 25 Aug 2004 00:02:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219851</guid><dc:creator>Richard Goerwitz</dc:creator><description>One thing to keep in mind is that open standards have to come before open source.  You write open source code, in general, that is, to open standards.&lt;br&gt;&lt;br&gt;So, for example, if I write a piece of software that uses the new &amp;quot;caller ID&amp;quot; specification for authenticating mail transfer agents, I need to write it to an open standard.&lt;br&gt;&lt;br&gt;Note that Microsoft, after negotiating with various groups about how this standard should look, and seemingly taking the stance that &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; would collaborate towards the production of an open standard, Microsoft has reneged.&lt;br&gt;&lt;br&gt;Their &amp;quot;caller ID&amp;quot; license is encumbered in unacceptable ways.&lt;br&gt;&lt;br&gt;It's really important, if Microsoft wants to show itself truly committed to open source efforts, to become interested in open standards as well.&lt;br&gt;&lt;br&gt;The license, by the way, for &amp;quot;caller ID&amp;quot; is here: &lt;a target="_new" href="http://download.microsoft.com/download/6/0/a/60a02573-3c00-4ee1-856b-afa39c020a95/callerid_license.pdf"&gt;http://download.microsoft.com/download/6/0/a/60a02573-3c00-4ee1-856b-afa39c020a95/callerid_license.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;I don't see how Microsoft can be seen as a legit advocate of open source unless we see a bit less of this sort of thing....&lt;br&gt;&lt;br&gt;Richard Goerwitz&lt;br&gt;Carleton College</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219852</link><pubDate>Wed, 25 Aug 2004 00:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219852</guid><dc:creator>Outlook PST User.</dc:creator><description>After that administrative tools, accessories.&lt;br&gt;&lt;br&gt;Open sourcing old horrid MAPI code. &lt;br&gt;Specifically PST client code:&lt;br&gt;&lt;br&gt;I really would like a outlook to read a readonly PST file to put on archived mail CD.&lt;br&gt;That should not be difficult with source &lt;br&gt;access.&lt;br&gt;&lt;br&gt;I am sure this would make a lot of people happy.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219855</link><pubDate>Wed, 25 Aug 2004 00:12:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219855</guid><dc:creator>Johan Moller</dc:creator><description>DirectX.&lt;br&gt;&lt;br&gt;At university, we had the choice between OpenGL and DirectX (among other choices). I chose OpenGL because it is portable hence more free. If i want to develop an application (for free or for profit) i write it with portability in mind because that leads to a more wide usage.&lt;br&gt;After i got graduated i'd love to program games and although i'm not sure if that'll be some open or closed source game it'll be in OpenGL because of its portability. When &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; would allow other platforms to implement a working DirectX API, i'd reconsider my point, but currently i don't even have much choice except to go OpenGL. We're currently working on a modeller as a proof-of-concept of some theory we have and so far it runs on Solaris, IRIX, Linux and FreeBSD. Nobody of our group has tried to port it over to Windows yet although it should be trivial. When we decided to develop a our program using DirectX API however it wouldn't be portable to those other platforms hence 2 of our 4 developers (who don't run Windows) couldn't even test the software!</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219874</link><pubDate>Wed, 25 Aug 2004 00:37:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219874</guid><dc:creator>Scott Walters</dc:creator><description>Bill stole 8080 BASIC. He stole DR-DOS&lt;br&gt;(and lost the Digital Research lawsuit to that&lt;br&gt;effect - and Microsoft doesn't lose lawsuites&lt;br&gt;easily).&lt;br&gt;No attribution was made to Berkeley for the&lt;br&gt;BSD stack NT uses. &lt;br&gt;Microsoft paid an &amp;quot;undisclosed sum&amp;quot; (that&lt;br&gt;is well known) to Digital after NT came out&lt;br&gt;and the similarities to VMS were evident - no&lt;br&gt;small coincidence since &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; hired away Digital's&lt;br&gt;lead OS designer and had new OS within two years &lt;br&gt;with the 3.11 GUI badly bolted on.&lt;br&gt;Now Microsoft's on a patent frenzy - most of&lt;br&gt;them have obvious well known prior art - sudo&lt;br&gt;for example. &lt;br&gt;Every license Microsoft can manage has&lt;br&gt;anti-compete clauses that prevent you from&lt;br&gt;working on open source projects after touching&lt;br&gt;Microsoft code.&lt;br&gt;So, HOW STUPID do you think we are?&lt;br&gt;Do you REALLY need anyone so mentally lacking&lt;br&gt;as to cough up their IP and rights to develop&lt;br&gt;elsewhere?&lt;br&gt;Why don't you go ask on the short bus&lt;br&gt;if any of them can program?&lt;br&gt;Bugger all...&lt;br&gt;-scott</description></item><item><title>passionate Microsoft developers</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219886</link><pubDate>Wed, 25 Aug 2004 00:56:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219886</guid><dc:creator>xml</dc:creator><description>I think the &amp;quot;passion&amp;quot; for Microsoft &lt;br&gt;&lt;br&gt;&lt;br&gt;died a few years ago.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219891</link><pubDate>Wed, 25 Aug 2004 01:06:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219891</guid><dc:creator>Roger</dc:creator><description>well, might seem really cool.  &lt;br&gt;&lt;br&gt;However, just wait until the &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; legal/sales team (or attache) swarms down upon an open source project.&lt;br&gt;&lt;br&gt;There would seriously need to be a line here before any collaboration starts.&lt;br&gt;&lt;br&gt;Possibly, some serious protective measures.&lt;br&gt;&lt;br&gt;Since the ball is in Linux's court, I would only accept a &amp;quot;GNU&amp;quot; license before working with them ... or maybe some other really popular license.  Working under a GNU license might provoke ms to work even harder on tearing apart the GNU License.&lt;br&gt;&lt;br&gt;...just my thoughts.&lt;br&gt;&lt;br&gt;&lt;br&gt;btw, never close the doors on an offer.  i'd give it a try, but don't expect to gain anything in return -- type attitude.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219907</link><pubDate>Wed, 25 Aug 2004 01:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219907</guid><dc:creator>Chris Travers</dc:creator><description>I don;t think this went through so trying again.&lt;br&gt;&lt;br&gt;First a little about me:&lt;br&gt;&lt;br&gt;I worked for Microsoft from Aug 1999 until Sept 2003 first as a temp then as an FTE.  I was in &lt;a title="Microsoft Product Support Services" href="http://support.microsoft.com/" target="_blank"&gt;PSS&lt;/a&gt;, and participated quite heavily in discussions regarding how to compete with Linux.  I made several major recommendations which have been acted on in this regard.&lt;br&gt;&lt;br&gt;I now run a consultancy which generally advocates open source software where appropriate in North Central Washington.  I am not hostile towards Microsoft, but I tend to think that one gets a better deal with open soruce software in many environments.  Indeed some markets simply cannot survive without it!   My homepage is at &lt;a target="_new" href="http://www.metatrontech.com"&gt;http://www.metatrontech.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;You ask:&lt;br&gt;&lt;br&gt;What types of projects or specific projects should we look to open source in the future? And don't just say &amp;quot;Everything&amp;quot;.  I'd like suggestions I feel I could actually help teams deliver on in the near future. &lt;br&gt;&lt;br&gt;My answer:&lt;br&gt;&lt;br&gt;Microsoft is in an interesting position here, and I am thinking about what Microsoft can practically open source which will have value for customers.  Here are a few things which come to mind:&lt;br&gt;&lt;br&gt;1)  MDAC, including the Jet database engine.  In the end, this will likely result in faster development in these areas, and a larger number of supported database managers in this package.  Of course, some components may not be able to be open sourced due to licensing issues, but open source what you can, then release your own package with the add-ons.&lt;br&gt;&lt;br&gt;2)  The major POSIX subsystem components of SFU, the NFS server, client, etc.  Encourage others to contribute AD schema enhancements for allowing UNIX systems to authenticate against Windows systems, etc.&lt;br&gt;&lt;br&gt;3)  The various VS.Net command line tools.  Perhapse even VS.net itself....  Though this may be wishful thinking....&lt;br&gt;&lt;br&gt;&lt;br&gt;You asked:&lt;br&gt;If you have participated in non-Microsoft sponsored shared/open source projects... what did you like or not like so much?&lt;br&gt;&lt;br&gt;I run two such projects.  I have liked the level of customer interraction I get and the level of feedback I get regarding design and implimentation of the project.&lt;br&gt;&lt;br&gt;I also participate in various open source communities (not the projects themselves though) and like the quality and quantity of peer-to-peer support.  Also I like the ability to write the developer and ask questions if I need it.  You simply can't get better support than that.&lt;br&gt;&lt;br&gt;You also asked:&lt;br&gt;Would you have interest in working on these types of projects with Microsoft? If  not, what could entice you? If so, what would be your motivation?&lt;br&gt;&lt;br&gt;I don't know.  I am not much of a C or C++ coder so I might not be of much help.  However if the tools were good, I could at least use them and help provide feedback for the developers.</description></item><item><title>To Ian Schmidt, and to the folks wanting a *nix kernel</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219931</link><pubDate>Wed, 25 Aug 2004 02:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219931</guid><dc:creator>Peter da Silva</dc:creator><description>Ian writes, &amp;quot;1) Separate Visual Studio from the languages.  Make it work with GCC (via MinGW/Cygwin), including debugging.&amp;quot;&lt;br&gt;&lt;br&gt;Again, I'd like to urge Microsoft to do this, but use the Interix framework, and open source as much of Interix as you can (I've already got an attaboy from a guy at Microsoft for suggesting this, so there *are* people in there listening) rather the Cygwin.&lt;br&gt;&lt;br&gt;Similarly, a bunch of people write things like &amp;quot;use a Linux kernel!&amp;quot; or &amp;quot;I'm tired of dual-booting&amp;quot;. I quit dual-booting once I had Interix installed on my Windows-mostly box. Interix is pretty much a hosted UNIX port running directly on the NT kernel, bypassing Win32, and in some areas it gives you a more UNIXy system than OSX... for example, from Interix you get real case-sensitive file names under NTFS. Mac OS X won't give you that under HFS+.</description></item><item><title>SUDO "patent" is a red herring.</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219933</link><pubDate>Wed, 25 Aug 2004 02:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219933</guid><dc:creator>Peter da Silva</dc:creator><description>From my reading, what Microsoft has patented is not SUDO, but SUDO-over-RPC. Now this might still be a problematical patent (it's similar to what just about any database admin utility does), but it's not what's been presented on /.&lt;br&gt;&lt;br&gt;On the other hand, it's kind of scary. I can't help but expect it to be a fertile source of security holes if they ever implement anything using it.</description></item><item><title>Patents.</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219950</link><pubDate>Wed, 25 Aug 2004 02:47:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219950</guid><dc:creator>Dwayne L.</dc:creator><description>Well, for starters, Microsoft needs to quit hindering technology development through the use of its patent portfolio.&lt;br&gt;&lt;br&gt;The Sender-ID standardization process comes to mind...</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219977</link><pubDate>Wed, 25 Aug 2004 03:57:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219977</guid><dc:creator>thegrendel</dc:creator><description>Josh,&lt;br&gt;&lt;br&gt;You do seem sincere about this personally.&lt;br&gt;Unfortunately you're working for the wrong outfit.&lt;br&gt;When it's a matter of money, *big* money,&lt;br&gt;your employer will not bend in any meaningful way.&lt;br&gt;In fact, MSFT has been funding proxies to attack&lt;br&gt;Open Source. Six years ago, it was the Wang Labs&lt;br&gt;lawsuit against Netscape/Mozilla. Now, it's&lt;br&gt;the SCO Group and the threat of patents.&lt;br&gt;&lt;br&gt;It all comes down to a matter of trust.&lt;br&gt;Yes, *trust*, the sine qua non, of any meaningful&lt;br&gt;relationship. Open Source people just don't trust MSFT.&lt;br&gt;And considering MSFT's track record, why should we?&lt;br&gt;&lt;br&gt;For this &amp;quot;initiative&amp;quot; to go anywhere, MSFT has to make&lt;br&gt;a meaningful good faith gesture. Previous comments&lt;br&gt;have suggested some good ones, such as for example,&lt;br&gt;releasing the specs to MSFT file formats. Or, how&lt;br&gt;about renouncing the SCOX Unix &amp;quot;license&amp;quot;?&lt;br&gt;&lt;br&gt;Yes, Josh, I commend your efforts but I think you're&lt;br&gt;wasting your time. In fact, I don't think you have much&lt;br&gt;of a future at MSFT, considering what you're advocating.&lt;br&gt;It's unfortunate, but hey, you're young, and you'll&lt;br&gt;probably land on your feet after you're fired.&lt;br&gt;&lt;br&gt;Best of luck.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219981</link><pubDate>Wed, 25 Aug 2004 04:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219981</guid><dc:creator>Zabil</dc:creator><description>Although it seems like next to impossible, Microsoft should do something on the Mono project  this way a wider base can be covered.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219982</link><pubDate>Wed, 25 Aug 2004 04:05:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219982</guid><dc:creator>Girlie Juice</dc:creator><description>Hey Josh, when's your last day?</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#219984</link><pubDate>Wed, 25 Aug 2004 04:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:219984</guid><dc:creator>Daniel</dc:creator><description>hey, what about memphis? (the  interfaces to the upcomming universal back-end)&lt;br&gt;&lt;br&gt;i work in compilers and i'd like to see at least the memphis interface definitions... i see absolutely no problem with publishing the entire back-end source code... just think about it, how many people are that low-level... on the other hand, how many developers (MS developers would actually benefit from a more open memphis)???&lt;br&gt;&lt;br&gt;the msvc++ product managers seam to have a different oppinion, which is quite easy to understand, given their background... :-)&lt;br&gt;&lt;br&gt;isn't just about time for a change???&lt;br&gt;&lt;br&gt;regards,&lt;br&gt;Daniel // theverylittleone@hotmail.com</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220002</link><pubDate>Wed, 25 Aug 2004 04:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220002</guid><dc:creator>Bill Gates</dc:creator><description>You're fired.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220007</link><pubDate>Wed, 25 Aug 2004 05:03:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220007</guid><dc:creator>McDice</dc:creator><description>I commend your efforts as well; being slashdotted isn't goign to help your cause. I remember the feeling of getting called down to the principal's office and I think you're in for something similar. I wish you luck, you seem like a good guy. &lt;br&gt;&lt;br&gt;Anyway, how about open sourcing the &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; shell? It would be really nice to have a [bkctc]sh-like shell for use with Windows systems. You've got the GUI down for all those right mouse clickers but the CLI needs some serious work.&lt;br&gt;&lt;br&gt;Pz!</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220011</link><pubDate>Wed, 25 Aug 2004 05:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220011</guid><dc:creator>AT</dc:creator><description>Tony Hoyle: &lt;br&gt;I disagree with you. &lt;br&gt;DDK must be hidden from public. This is an example of something that must not be given to public. &lt;br&gt;If somebody can not afford to pay a few bucks for DDK - this mean that this person doing some unpaid or hobbist job. &lt;br&gt;&lt;br&gt;Costs of studying how to write correct kernel code is much higher that $25,000 and take longer that 2-days training.&lt;br&gt;As well costs of any flaw in your kernel driver is extremely high. &lt;br&gt;This is not user-space there your flaw affect only your process and your data. Any bug in kernel can result in BSOD or data corruption for totaly independ processes.&lt;br&gt;&lt;br&gt;I would Microsoft keep DDK closed from public. &lt;br&gt;But AFAIK, almost complete Windows source licensed to selected partners. I know several persons who had *legal* access to Windows NT/2000 sources as part of thier job.&lt;br&gt;&lt;br&gt;Something that must be provided to public - is more information about user-mode interfaces, formats and protocols. I'm willing MSFT compily with DoJ settlement fully. No needs to open-source anything. I'm simply willing quality of MSDN documentation increased! This is there community can assist Microsoft.&lt;br&gt;&lt;br&gt;Community need to keep both Microsoft and IBM worlds. Otherwise this will be monopoly for one of thouse big companies.</description></item><item><title>Contribute BACK to the Open Source Community</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220016</link><pubDate>Wed, 25 Aug 2004 05:26:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220016</guid><dc:creator>Mark Janveaux</dc:creator><description>This can be a win/win situation for both Microsoft and the open source community.  Cost of entry is always going to cause open source developers to USE and DEVELOP free and open software and tools instead of to application suites like microsoft office, and visual studio.  Microsoft may be able to gain the communities support however by accepting source code contributions from the open source community and in turn funding and sponsoring, a project of the open source community's choice, perhaps by popular vote or the like.  Microsoft would benefit by extending functionality and be a staunch supporter of open source.  The open source community would benefit by having more choice and a better relationship with an industry giant.</description></item><item><title>Slashdot Comment Responses #1 (On Cardkeys and Trust)</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220037</link><pubDate>Wed, 25 Aug 2004 09:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220037</guid><dc:creator>scooblog by josh ledgard</dc:creator><description /></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220071</link><pubDate>Wed, 25 Aug 2004 07:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220071</guid><dc:creator>Anon</dc:creator><description>Two suggestions:&lt;br&gt;- Support NHibernate&lt;br&gt;- Once the Microsoft Business Framework has been released, give the source to developers so they can suggest and contribute changes.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220091</link><pubDate>Wed, 25 Aug 2004 09:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220091</guid><dc:creator>Jonathan Wilson</dc:creator><description>Also, something else I would like to see is a version of vcbuild.exe that is compatible with the Visual C++ Compiler Toolkit 2003&lt;br&gt;</description></item><item><title>A tool for software structural dependencies analyses </title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220142</link><pubDate>Wed, 25 Aug 2004 10:34:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220142</guid><dc:creator>Patrick Smacchia</dc:creator><description>Well, if &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; needs a tool for software structural dependencies analyses (I know there is no such plan for VS2005), I would be glad to cooperate with the basis of my tool NDepend (which is for now, involved mainly with code metrics):&lt;br&gt;&lt;a target="_new" href="http://smacchia.chez.tiscali.fr/NDepend.html"&gt;http://smacchia.chez.tiscali.fr/NDepend.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;By the way, IBM has releases the tool SA4J (Structural Analysis for Java) &lt;br&gt;&lt;a target="_new" href="http://www.alphaworks.ibm.com/tech/sa4j"&gt;http://www.alphaworks.ibm.com/tech/sa4j&lt;/a&gt;&lt;br&gt;Authors (Alex Iskold and Daniel Kogan) were previously developping and selling an equivalent product called Small Worlds.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220206</link><pubDate>Wed, 25 Aug 2004 14:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220206</guid><dc:creator>Richard Callaby</dc:creator><description>I posted a blog article on this subject about a month ago when I guess this subject was just beginning to start. You can read it here as I do not want to write it all over again on this blog.&lt;br&gt;&lt;br&gt;Here it is:&lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://blog.richard-callaby.net/PermaLink.aspx?guid=1712fefb-a036-40f5-a36f-cd2746a5285f"&gt;http://blog.richard-callaby.net/PermaLink.aspx?guid=1712fefb-a036-40f5-a36f-cd2746a5285f&lt;/a&gt;&lt;br&gt;&lt;br&gt;I list the products that I would love to see open sourced and the reasons behind them. Some fo the reasons are simply so that you guys can concentrate more on creating software and less on fighting inane lawsuits. Just my opinion of course.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220331</link><pubDate>Wed, 25 Aug 2004 17:23:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220331</guid><dc:creator>Steven Hatch</dc:creator><description>Personally, I'd like to see InfoPath as an OSS project or at least open the file format and allow the client to be freely downloaded or packaged with Windows like IE is today. (e.g. HTML is the open file format for IE and the client is a free download.)</description></item><item><title>Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220340</link><pubDate>Wed, 25 Aug 2004 20:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220340</guid><dc:creator>hatch.org</dc:creator><description>Josh Ledgard Program Manager working with the Visual Studio - Community Team at MSFT has a great post regarding the broader collaboration between Microsoft and the vast open source community (via /.). &amp;quot;It should be easy for teams here at...</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220390</link><pubDate>Wed, 25 Aug 2004 18:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220390</guid><dc:creator>David Kastrup</dc:creator><description>The main mindshare problem with Microsoft is lack of standardization, a lack of information, and a lack of interoperation.  I think that the most important thing probably would be the Windows API code under an LGPL-compatible licence.  There are layers between the Windows API and the kernel proper that make up a lot of the idiosyncrasies of Windows.  Making those available for free would make it possible to improve layers like Wine to a degree where they can be used to successfully run most Windows applications natively.&lt;br&gt;&lt;br&gt;This would serve to establish the Windows API and Windows applications on Free Operating systems, at the cost of reducing the market for preloaded consumer Windows.  It would also help to make free software run better under Windows: offerings like SFU are still largely met with distrust.&lt;br&gt;&lt;br&gt;Certainly not a run of the mill kind of decision to be thinking about.</description></item><item><title>Types of projects or specific projects to open source</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220434</link><pubDate>Wed, 25 Aug 2004 19:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220434</guid><dc:creator>M. Dionne</dc:creator><description>Some of the web-service related utilities. For example, xsd.exe, wsdl.exe (&amp;amp; wsewsdl2.exe) and WebServiceStudio. This would allow developers to modify them to meet their specific needs and would also allow the tools to become more robust.&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220535</link><pubDate>Wed, 25 Aug 2004 22:41:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220535</guid><dc:creator>Jonathan Wilson</dc:creator><description>in light of what is said here&lt;br&gt;&lt;a target="_new" href="http://linux.slashdot.org/comments.pl?sid=119328&amp;amp;cid=10072588"&gt;http://linux.slashdot.org/comments.pl?sid=119328&amp;amp;cid=10072588&lt;/a&gt;&lt;br&gt;&lt;br&gt;How about Opening the Microsoft ACPI code&lt;br&gt;</description></item><item><title>Tablet PC serialized Ink format</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220647</link><pubDate>Thu, 26 Aug 2004 01:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220647</guid><dc:creator>Julien</dc:creator><description>There are lots of mentions of opening the file formats in the previous comments, and I second these.&lt;br&gt;I'd like to add the Ink binary format on the Tablet PC. I think it would help the Tablet PC market and allow more cool apps to be developped.&lt;br&gt;&lt;br&gt;Keep the reco algos closed, since I would think that's were most of the IP is... File formats are not the core of intellectual property and they should not be means of protecting a business!</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220713</link><pubDate>Thu, 26 Aug 2004 04:32:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220713</guid><dc:creator>Raja Iskandar Shah</dc:creator><description>I second on the proposal for opening the file formats. OpenOffice.org is already on the way for putting their file formats as open standards. &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt; Office itself can be closed with widgets / tools / wizards etc - but user files should be transparent / portable.&lt;br&gt;&lt;br&gt;I have 1 client, whose Excel file was corrupted. Excel refused to open it. OOo managed to read it in text form so that we could still rebuild a new file. Would have been better if the file format was on open standards, so that the affected lines can be patched to get the whole file back.&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks for taking note.&lt;br&gt;&lt;br&gt;</description></item><item><title>Slashdot Comment Responses #2 (A bit about Patents)</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220719</link><pubDate>Thu, 26 Aug 2004 07:50:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220719</guid><dc:creator>scooblog by josh ledgard</dc:creator><description /></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220768</link><pubDate>Thu, 26 Aug 2004 07:45:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220768</guid><dc:creator>David Carrero Fernandez-Baillo</dc:creator><description>I proposal for opening the file formats, Doc (word), xls (excel), ...&lt;br&gt;</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#220791</link><pubDate>Thu, 26 Aug 2004 08:53:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220791</guid><dc:creator>Tuxiradical</dc:creator><description>This is my list.&lt;br&gt;1) File formats&lt;br&gt;2) File system NTFS.&lt;br&gt;3) VS.NET 2005 Express ;)</description></item><item><title>Slashdot Comment Responses #1 (On Cardkeys and Trust)</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#221026</link><pubDate>Thu, 26 Aug 2004 21:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:221026</guid><dc:creator>scooblog by josh ledgard</dc:creator><description /></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#221197</link><pubDate>Thu, 26 Aug 2004 23:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:221197</guid><dc:creator>Brian H</dc:creator><description>I'd like more of &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;'s internal or nearly abandonware tools to be open-sourced. For instance, there is a tool called CDIMAGE that leaked out of Microsoft a while ago. It was an internal-use tool for composing ISO images for burning on CDs. It has many useful features that I haven't seen elsewhere, but I can't see it succeeding commercially, so why not open-source it?&lt;br&gt;&lt;br&gt;There must be many tools like that in Microsoft, install tools like WiX, build tools, development tools. Distributing them as open-source would generate a lot of good will.</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#222720</link><pubDate>Mon, 30 Aug 2004 17:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:222720</guid><dc:creator>Chris Badal</dc:creator><description>I would like to see the cmd program or another shell program (and several command line programs) get open sourced and included into windows.&lt;br&gt;&lt;br&gt;I would really like it if the open source community could improve upon the 'findstr' program to 'smartly' search through different &lt;a title="Microsoft" href="http://www.microsoft.com" target="_blank"&gt;MS&lt;/a&gt;-format files (.doc, .rtf, .ppt ect...).&lt;br&gt;&lt;br&gt;I would also like to see a new windows shell for windows 2000 &amp;amp; XP (perhaps a shell who's native syntax is perl or bash-like, with command line history and tab-completion).&lt;br&gt;</description></item><item><title>Microsoft and open source</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#222941</link><pubDate>Tue, 31 Aug 2004 01:23:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:222941</guid><dc:creator>Digging .NET</dc:creator><description>Microsoft and open source</description></item><item><title>Slashdot Comment Responses #4 (Contests, Free Software Distribution, Halloween, and More)</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#223597</link><pubDate>Wed, 01 Sep 2004 01:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:223597</guid><dc:creator>scooblog by josh ledgard</dc:creator><description /></item><item><title>Slashdot Comment Responses #4 (Contests, Free Software Distribution, Halloween, and More)</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#223610</link><pubDate>Wed, 01 Sep 2004 01:42:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:223610</guid><dc:creator>scooblog by josh ledgard</dc:creator><description /></item><item><title>Slashdot Comment Responses #5 (Ending on a Good Note)</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#229230</link><pubDate>Tue, 14 Sep 2004 07:12:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:229230</guid><dc:creator>*click*</dc:creator><description>bla</description></item><item><title>More on Open Source at Microsoft via Josh Ledgard's blog.</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#234592</link><pubDate>Mon, 27 Sep 2004 08:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:234592</guid><dc:creator>when setup isn't just xcopy</dc:creator><description>Imagine a blog entry where I discuss Open Source at Microsoft via posts on Josh Ledgard's blog.</description></item><item><title>Scooblog Presents: 16 Predictions for 2005</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#333130</link><pubDate>Tue, 28 Dec 2004 08:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:333130</guid><dc:creator>scooblog by josh ledgard</dc:creator><description /></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#425238</link><pubDate>Sat, 04 Jun 2005 22:04:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:425238</guid><dc:creator>job search</dc:creator><description>Very cool, &lt;br&gt;thanks for taking the time to make this.</description></item><item><title>My Turn: Ten Insane Ideas for Microsoft</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#443752</link><pubDate>Wed, 27 Jul 2005 09:54:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:443752</guid><dc:creator>scooblog by josh ledgard</dc:creator><description>It started with the thinkweek paper, then Dare and Adam dissected it, and Mini encouraged us all to post...</description></item><item><title>My Turn: Ten Insane Ideas for Microsoft</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#443753</link><pubDate>Wed, 27 Jul 2005 09:57:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:443753</guid><dc:creator>scooblog by josh ledgard</dc:creator><description>It started with the thinkweek paper, then Dare and Adam dissected it, and Mini encouraged us all to post...</description></item><item><title>re: More Microsoft Engagement with Open Source Projects</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#508429</link><pubDate>Sun, 01 Jan 2006 13:03:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:508429</guid><dc:creator>yaen</dc:creator><description>hello and have 365 happy days this year.&lt;br&gt;&lt;br&gt;could be cool to open source of dirextx the one thing that shows that microsoft seems to want to keep away from open source.&lt;br&gt;OpenGL is a technology for all gamers. Could it be the same for directx ????</description></item><item><title>Personal Injury Attorney WebLog  &amp;raquo; Blog Archive   &amp;raquo; lifeissues.net | "The Impact of 'Scientific Misinformation' on Other ...</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#4153746</link><pubDate>Wed, 01 Aug 2007 01:38:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4153746</guid><dc:creator>Personal Injury Attorney WebLog  » Blog Archive   » lifeissues.net | "The Impact of 'Scientific Misinformation' on Other ...</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blogsseek.com/personal-injury-attorney/2007/07/31/lifeissuesnet-the-impact-of-scientific-misinformation-on-other/"&gt;http://blogsseek.com/personal-injury-attorney/2007/07/31/lifeissuesnet-the-impact-of-scientific-misinformation-on-other/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Movies &amp;raquo; scooblog by josh ledgard : More Microsoft Engagement with Open Source &amp;#8230;</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#6932344</link><pubDate>Tue, 01 Jan 2008 10:43:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6932344</guid><dc:creator>Movies » scooblog by josh ledgard : More Microsoft Engagement with Open Source …</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://movies.247blogging.info/?p=1581"&gt;http://movies.247blogging.info/?p=1581&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Actors and Actresses  &amp;raquo; Archive du blog   &amp;raquo; scooblog by josh ledgard : More Microsoft Engagement with Open Source &amp;#8230;</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#6973412</link><pubDate>Fri, 04 Jan 2008 03:21:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6973412</guid><dc:creator>Actors and Actresses  » Archive du blog   » scooblog by josh ledgard : More Microsoft Engagement with Open Source …</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://actors.247blogging.info/?p=232"&gt;http://actors.247blogging.info/?p=232&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Actors, Actresses, and the Movies &amp;raquo; scooblog by josh ledgard : More Microsoft Engagement with Open Source &amp;#8230;</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#8328951</link><pubDate>Fri, 21 Mar 2008 14:15:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8328951</guid><dc:creator>Actors, Actresses, and the Movies » scooblog by josh ledgard : More Microsoft Engagement with Open Source …</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://actorsnotinmoviesblog.info/scooblog-by-josh-ledgard-more-microsoft-engagement-with-open-source/"&gt;http://actorsnotinmoviesblog.info/scooblog-by-josh-ledgard-more-microsoft-engagement-with-open-source/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Cars &amp;raquo; scooblog by josh ledgard : More Microsoft Engagement with Open Source &amp;#8230;</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#8330134</link><pubDate>Sat, 22 Mar 2008 02:11:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8330134</guid><dc:creator>Cars » scooblog by josh ledgard : More Microsoft Engagement with Open Source …</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://carsmaxblog.info/scooblog-by-josh-ledgard-more-microsoft-engagement-with-open-source/"&gt;http://carsmaxblog.info/scooblog-by-josh-ledgard-more-microsoft-engagement-with-open-source/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Cast Iron Cookware</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9641991</link><pubDate>Tue, 26 May 2009 22:42:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9641991</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Cast Iron Cookware</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://castironbakeware.info/story.php?title=scooblog-by-josh-ledgard-more-microsoft-engagement-with-open-source"&gt;http://castironbakeware.info/story.php?title=scooblog-by-josh-ledgard-more-microsoft-engagement-with-open-source&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Paid Surveys</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9660892</link><pubDate>Sat, 30 May 2009 02:43:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9660892</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Paid Surveys</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://paidsurveyshub.info/story.php?title=scooblog-by-josh-ledgard-more-microsoft-engagement-with-open-source"&gt;http://paidsurveyshub.info/story.php?title=scooblog-by-josh-ledgard-more-microsoft-engagement-with-open-source&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Wood TV Stand</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9679154</link><pubDate>Mon, 01 Jun 2009 20:51:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9679154</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Wood TV Stand</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://woodtvstand.info/story.php?id=2118"&gt;http://woodtvstand.info/story.php?id=2118&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Indoor Grills</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9680672</link><pubDate>Mon, 01 Jun 2009 22:25:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9680672</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Indoor Grills</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://indoorgrillsrecipes.info/story.php?id=4387"&gt;http://indoorgrillsrecipes.info/story.php?id=4387&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source |  Portable Greenhouse</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9681190</link><pubDate>Mon, 01 Jun 2009 22:47:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9681190</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source |  Portable Greenhouse</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://portablegreenhousesite.info/story.php?id=14635"&gt;http://portablegreenhousesite.info/story.php?id=14635&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Outdoor Ceiling Fans</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9686130</link><pubDate>Tue, 02 Jun 2009 20:40:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9686130</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Outdoor Ceiling Fans</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://outdoorceilingfansite.info/story.php?id=55945"&gt;http://outdoorceilingfansite.info/story.php?id=55945&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Green Tea Fat Burner</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9706433</link><pubDate>Mon, 08 Jun 2009 05:13:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9706433</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Green Tea Fat Burner</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://greenteafatburner.info/story.php?id=1433"&gt;http://greenteafatburner.info/story.php?id=1433&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Best Eye Cream</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9707197</link><pubDate>Mon, 08 Jun 2009 05:52:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9707197</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Best Eye Cream</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://besteyecreamsite.info/story.php?id=407"&gt;http://besteyecreamsite.info/story.php?id=407&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Joint Pain Relief</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9709069</link><pubDate>Mon, 08 Jun 2009 21:46:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9709069</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Joint Pain Relief</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://jointpainreliefs.info/story.php?id=546"&gt;http://jointpainreliefs.info/story.php?id=546&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Insomnia Cure</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9709578</link><pubDate>Tue, 09 Jun 2009 00:51:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9709578</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Insomnia Cure</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://insomniacuresite.info/story.php?id=4727"&gt;http://insomniacuresite.info/story.php?id=4727&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Quick Diets</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9714687</link><pubDate>Tue, 09 Jun 2009 13:48:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9714687</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Quick Diets</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://quickdietsite.info/story.php?id=1412"&gt;http://quickdietsite.info/story.php?id=1412&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Menopause Relief</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9720218</link><pubDate>Wed, 10 Jun 2009 04:17:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9720218</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Menopause Relief</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://menopausereliefsite.info/story.php?id=301"&gt;http://menopausereliefsite.info/story.php?id=301&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | outdoor rugs</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9746600</link><pubDate>Sun, 14 Jun 2009 02:24:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9746600</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | outdoor rugs</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://onlyoutdoorrugs.info/story.php?id=31"&gt;http://onlyoutdoorrugs.info/story.php?id=31&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | wheelbarrow</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9747666</link><pubDate>Sun, 14 Jun 2009 07:23:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9747666</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | wheelbarrow</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://wheelbarrowstyle.info/story.php?id=2071"&gt;http://wheelbarrowstyle.info/story.php?id=2071&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | Outdoor Decor</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9779228</link><pubDate>Fri, 19 Jun 2009 07:38:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9779228</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | Outdoor Decor</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://outdoordecoration.info/story.php?id=2671"&gt;http://outdoordecoration.info/story.php?id=2671&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | bar stools</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9780527</link><pubDate>Fri, 19 Jun 2009 09:30:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9780527</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | bar stools</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://barstoolsite.info/story.php?id=7707"&gt;http://barstoolsite.info/story.php?id=7707&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | garden decor</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9781720</link><pubDate>Fri, 19 Jun 2009 10:22:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9781720</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | garden decor</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://gardendecordesign.info/story.php?id=3877"&gt;http://gardendecordesign.info/story.php?id=3877&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | storage bench</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9782574</link><pubDate>Fri, 19 Jun 2009 11:02:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9782574</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | storage bench</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://thestoragebench.info/story.php?id=2773"&gt;http://thestoragebench.info/story.php?id=2773&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | patio umbrella</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9784998</link><pubDate>Fri, 19 Jun 2009 13:54:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9784998</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | patio umbrella</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://patioumbrellasource.info/story.php?id=97"&gt;http://patioumbrellasource.info/story.php?id=97&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | debt consolidator</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9789253</link><pubDate>Fri, 19 Jun 2009 18:29:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9789253</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | debt consolidator</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://mydebtconsolidator.info/story.php?id=515"&gt;http://mydebtconsolidator.info/story.php?id=515&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> scooblog by josh ledgard More Microsoft Engagement with Open Source | debt solutions</title><link>http://blogs.msdn.com/jledgard/archive/2004/08/20/217992.aspx#9791603</link><pubDate>Fri, 19 Jun 2009 21:16:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9791603</guid><dc:creator> scooblog by josh ledgard More Microsoft Engagement with Open Source | debt solutions</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://debtsolutionsnow.info/story.php?id=1860"&gt;http://debtsolutionsnow.info/story.php?id=1860&lt;/a&gt;&lt;/p&gt;
</description></item></channel></rss>