<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:osnews="http://osnews.com/rss2#">
	<channel>
		<title>OSNews: </title>
		<link>http://www.osnews.com/story/19816/From_Win32_to_Cocoa_Part_III</link>
		<description>Exploring the Future of Computing</description>
		<language>en-us</language>
		<copyright>Copyright 2001-2009, David Adams</copyright>
		<webMaster>adam+nospam@osnews.com</webMaster>
		<lastBuildDate>Mon, 06 Jul 2009 01:13:26 GMT</lastBuildDate>
		<image>
			<url>http://www.osnews.com/images/osnews.gif</url>
			<title>OSNews.com</title>
			<link>http://www.osnews.com</link>
		</image>
		<item>
			<title>Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316607</link>
			<guid isPermaLink="true">http://osnews.com/thread?316607</guid>
			<description>It was sad to know that the java bridge was deprecated by apple. There was a time when Java used to be a first class citizen on OS X. Sadly that is not the case anymore.<br />
<br />
The good news is that the Ruby Cocoa bridge is still there. So programmers who dont wanna learn Objective C do have a chance of writing good apps.<br />
<br />
Of course Apple itself broke Drb in ruby as a part of the 10.5.3 update: <a href="http://www.ruby-forum.com/topic/154556" rel="nofollow">http://www.ruby-forum.com/topic/154556</a><br />
<br />
OS X may not be the developer's heaven as it is made out to be.</description>
			<pubDate>Mon, 02 Jun 2008 11:10:00 GMT</pubDate>
			<author>donotreply@osnews.com (ManishChaks)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316608</link>
			<guid isPermaLink="true">http://osnews.com/thread?316608</guid>
			<description><div class="cquote">... So programmers who dont wanna learn Objective C do have a chance of writing good apps. </div><br />
<br />
You say &quot;learn Objective-C&quot; as if it is this huge chore you have no hope of ever completing. Even with all the fanciness of version 2.0, Objective-C is still just sliver-thin superset of C. I think it is easier, at least in certain regards, for a Java developer to pickup Objective-C than to switch to Python of Ruby.</description>
			<pubDate>Mon, 02 Jun 2008 11:19:00 GMT</pubDate>
			<author>donotreply@osnews.com (lurch_mojoff)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>WPF</title>
			<link>http://osnews.com/thread?316612</link>
			<guid isPermaLink="true">http://osnews.com/thread?316612</guid>
			<description><div class="cquote">I recently wanted to write a Windows application that included a text box in a menu, similar to the &quot;search&quot; menus found in Mac OS X. In the end, I gave up. Windows does support menus, but if you don't want a menu that acts 100% like the built-in menus, you're basically on your own. There is a way to control how the menu is drawn, so instead of taking the standard appearance you can give it a custom one, but that's an all-or-nothing proposition. You can't have a menu that looks like a standard menu except for one item; either the menu is standard, or it's custom, with nothing in between. </div><br />
<br />
This is how you do a menu with a textbox in .net<br />
<br />
		<br />
			<br />
		<br />
<br />
Not exactly rocket science...<br />
<br />
Welcome to 2006. Winforms has been deprecated for a very long time now.</description>
			<pubDate>Mon, 02 Jun 2008 11:52:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316613</link>
			<guid isPermaLink="true">http://osnews.com/thread?316613</guid>
			<description><div class="cquote"> OS X may not be the developer's heaven as it is made out to be. </div><br />
<br />
Oh please...<br />
<br />
Java developers value portability. Java + Cocoa ties you to OS X while incurring the overhead of the JVM. Ergo, few (any?) developers used the Java Cocoa bridge. Right from the start, it was a solution going in search of a problem.<br />
<br />
No one, not even Java developers mourn the demise of the Java Cocoa bridge. Neither should you.</description>
			<pubDate>Mon, 02 Jun 2008 11:56:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: WPF</title>
			<link>http://osnews.com/thread?316614</link>
			<guid isPermaLink="true">http://osnews.com/thread?316614</guid>
			<description><div class="cquote"> This is how you do a menu with a textbox in .net Not exactly rocket science... Welcome to 2006. Winforms has been deprecated for a very long time now. </div><br />
<br />
That's all well and good, but it's still slightly irrelevant. How many end user applications are written in .NET? How easy is that to accomplish in C++ unmanaged code which is what the majority of desktop applications use?</description>
			<pubDate>Mon, 02 Jun 2008 11:59:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316617</link>
			<guid isPermaLink="true">http://osnews.com/thread?316617</guid>
			<description><div class="cquote">You say &amp;quot;learn Objective-C&amp;quot; as if it is this huge chore you have no hope of ever completing. Even with all the fanciness of version 2.0, Objective-C is still just sliver-thin superset of C. I think it is easier, at least in certain regards, for a Java developer to pickup Objective-C than to switch to Python of Ruby. </div><br />
<br />
I hope it doesn't sound impolite, but... you usually don't &quot;learn&quot; ObjC, you *do* it - at least if you come from a C programming background. As you mentioned, ObjC is a superset of C, while, for example, C++ is another language, and so is JAVA. So let's assume you have good C knowledge, did some C++ and are familiar with concepts from the field of object orientation, then ObjC won't be a hard learning time for you. And if you're familiar with JAVA, ObjC isn't a big deal, too, because many elements of the language will look familiar to you. For non-Apple programmers, a look at GNUstep on x86 is worth taking.<br />
<br />
At least I may say this from my individual experiences, maybe it's different when you're coming from &quot;VisualBasic&quot;. :-)</description>
			<pubDate>Mon, 02 Jun 2008 12:26:00 GMT</pubDate>
			<author>donotreply@osnews.com (Doc Pain)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: WPF</title>
			<link>http://osnews.com/thread?316628</link>
			<guid isPermaLink="true">http://osnews.com/thread?316628</guid>
			<description><div class="cquote">How many end user applications are written in .NET?  </div><br />
<br />
AFAIK obj-c is managed (it has gc, so it almost has to be) <br />
<br />
Regardless, I would say 90-95% of windows apps are managed. Only the most performance sensitive stuff is written in unmanaged code nowadays, and we are even starting to see that phased out. <br />
 <br />
 If you want to talk deprecated, nothing written in the last decade should have been using c++. On windows anyways.Edited 2008-06-02 13:36 UTC</description>
			<pubDate>Mon, 02 Jun 2008 13:34:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316629</link>
			<guid isPermaLink="true">http://osnews.com/thread?316629</guid>
			<description>I disagree with that. Java/C++/C# i would say are about 90% the same, obj-c is closer to 60%. It is more like c++ with a dash of smalltalk then Java/C# which are more C++ with problems fixed.</description>
			<pubDate>Mon, 02 Jun 2008 13:40:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: WPF</title>
			<link>http://osnews.com/thread?316630</link>
			<guid isPermaLink="true">http://osnews.com/thread?316630</guid>
			<description>&quot;I would say 90-95%. Only the most performance sensitive stuff is written in unmanaged code nowadays, and we are even starting to see that phased out. <br />
 <br />
 If you want to talk deprecated, nothing written in the last decade should have been using c++.&quot;<br />
<br />
That's true of internal corporate apps, where performance and end user experience matter less, and a lot of code is &quot;throw-away&quot;.<br />
<br />
Anything public facing, shrink-wrapped proprietary or open source, or otherwise, and desktop or systems oriented, is almost always C/C++.<br />
<br />
For software that is not forced on it's users (like internal corporate apps), performance, lnf, and overall end user satisfaction, matter very very much.  If all those things are not excellent, the software is ignored.  For accomplishing these things, C/C++ usually offer the best solutions.</description>
			<pubDate>Mon, 02 Jun 2008 13:40:00 GMT</pubDate>
			<author>donotreply@osnews.com (JeffS)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: WPF</title>
			<link>http://osnews.com/thread?316631</link>
			<guid isPermaLink="true">http://osnews.com/thread?316631</guid>
			<description><div class="cquote">If you want to talk deprecated, nothing written in the last decade should have been using c++. On windows anyways.  </div><br />
<br />
Woah, now that's something unusual <img src="/images/emo/smile.gif" alt=";)" />  The question I'd ask as a reply to that is something like &quot;says who?&quot;. This depends on so many factors, that stating something like this is more like the 640K should be enough that anything else. Just as one example, where I do my stuff, we develop mostly algorithms, with the gui coming much later, and since almost all the algorithms are written in c++ and on windows, it comes easier to create an mfc gui for it. We also use c# and Java when the need arises, but it's not a goal, it's the tool. I never use a language or a tool because it's suddenly fashionable, I always use that in which I can do what I have to do more conveniently - from a certain point of view.</description>
			<pubDate>Mon, 02 Jun 2008 13:55:00 GMT</pubDate>
			<author>donotreply@osnews.com (l3v1)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: WPF</title>
			<link>http://osnews.com/thread?316632</link>
			<guid isPermaLink="true">http://osnews.com/thread?316632</guid>
			<description><div class="cquote">AFAIK obj-c is managed (it has gc, so it almost has to be) <br />
 </div><br />
<br />
Objective-C code is *not* managed.</description>
			<pubDate>Mon, 02 Jun 2008 13:59:00 GMT</pubDate>
			<author>donotreply@osnews.com (lurch_mojoff)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Costly Dev tools</title>
			<link>http://osnews.com/thread?316633</link>
			<guid isPermaLink="true">http://osnews.com/thread?316633</guid>
			<description>Strange, but IIRC, I once read about how Windows gained market share by charging people for their dev tools rather than give them away.<br />
<br />
IIRC, it goes like this: In those times, hardware prices are sky high, so Windows dev tools, at those times, looked cheap, especially compared to those UNIX ones. Moreover, Microsoft opened up their specs and so there was a lot of freeware compilers that were lousy, but got the job done. This allowed hobbyists and professionals alike to be drawn to the Wintel platform. When they achieved dominance, the cost of a dev licence hindered freeware development and this, in turn, allowed Microsoft to quality control the software produced for Wintel, to a small but noticeable extent.<br />
<br />
However, I would agree that leeching off developers is a suicidal move since they are any platform's greatest asset. Not the users, but the developers. Just ask any open source developer in touch with the times.<br />
<br />
Moreover, notice how hardware prices have plummeted for the past decades. If Microsoft kept the hardware to dev tool price ratio, I would bet that those dev tools will have to cost less than to make a burger.</description>
			<pubDate>Mon, 02 Jun 2008 13:59:00 GMT</pubDate>
			<author>donotreply@osnews.com (xiaokj)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: WPF</title>
			<link>http://osnews.com/thread?316638</link>
			<guid isPermaLink="true">http://osnews.com/thread?316638</guid>
			<description>How would you implement garbage collection without a garbage collector? a google of <a href="http://www.google.ca/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=Wk&amp;q=is+objective+c+managed&amp;btnG=Search&amp;meta=" rel="nofollow">http://www.google.ca/search?hl=en&amp;client=firefox-a&amp;rls=org....</a> <br />
leads me to believe there is a vm.</description>
			<pubDate>Mon, 02 Jun 2008 14:08:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: WPF</title>
			<link>http://osnews.com/thread?316640</link>
			<guid isPermaLink="true">http://osnews.com/thread?316640</guid>
			<description>Err... No, end-user applications are virtually never written in .Net. Just corporate stuff - the same kind of stuff that might otherwise be written in Java.<br />
<br />
You also seem to have this problem with dates.<br />
<br />
10 years ago was 1998 - Microsoft were still trying to get away with using a modified, non-standard version of Java.<br />
<br />
The first release of the .Net framework was in 2002 - a mere 6 years ago. It wasn't usable for anything much until version 2, released in 2006. Realistically, developers could have started writing end-user apps in 2006. That's only two years ago.<br />
<br />
As for WPF, that's only available in .Net 3.0 (early 2007), and only got support from Microsoft's tools in .Net 3.5 (late 2007). Any applications written with that won't even have come close to being released yet.<br />
<br />
Clearly, you're not a software developer. Not on Windows anyway.</description>
			<pubDate>Mon, 02 Jun 2008 14:11:00 GMT</pubDate>
			<author>donotreply@osnews.com (ba1l)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316641</link>
			<guid isPermaLink="true">http://osnews.com/thread?316641</guid>
			<description><div class="cquote">... It is more like c++ with a dash of smalltalk then Java/C# which are more C++ with problems fixed. </div><br />
<br />
If we oversimplify thing, yes, Objective-C is <i><b>C</b></i> with a dash of Smalltalk, just as C++ is C with a dash of Simula. I agree that C++, Java and C# are much easier to switch between, given their common ancestry and design philosophy, but, except for a few fairly small conceptual differences (e.g. message passing vs. method calling), when it comes to syntax, design patterns and so on, Objective-C is not that drastically different from them.</description>
			<pubDate>Mon, 02 Jun 2008 14:19:00 GMT</pubDate>
			<author>donotreply@osnews.com (lurch_mojoff)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: WPF</title>
			<link>http://osnews.com/thread?316642</link>
			<guid isPermaLink="true">http://osnews.com/thread?316642</guid>
			<description>A GC for c / c++:<br />
 <br />
 <a href="http://www.hpl.hp.com/personal/Hans_Boehm/gc/" rel="nofollow">http://www.hpl.hp.com/personal/Hans_Boehm/gc/</a><br />
<br />
Just to show that it can be done without a VM.Edited 2008-06-02 14:24 UTC</description>
			<pubDate>Mon, 02 Jun 2008 14:22:00 GMT</pubDate>
			<author>donotreply@osnews.com (rob_mx)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Good article</title>
			<link>http://osnews.com/thread?316646</link>
			<guid isPermaLink="true">http://osnews.com/thread?316646</guid>
			<description>While I liked the article, I found it funny that the author portrayed Microsoft as a company that does not use its own APIs. <br />
<br />
 I guess Office, Internet Explorer, Live Messenger, Streets and Trips, Visual Studio and every other program MS has ever released were written without an api of any kind at their disposal. lol.</description>
			<pubDate>Mon, 02 Jun 2008 14:41:00 GMT</pubDate>
			<author>donotreply@osnews.com (Bit_Rapist)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: WPF</title>
			<link>http://osnews.com/thread?316648</link>
			<guid isPermaLink="true">http://osnews.com/thread?316648</guid>
			<description><div class="cquote">How would you implement garbage collection without a garbage collector? a google of <a href="http://www.google.ca/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=Wk&amp;q=is+objective+c+managed&amp;btnG=Search&amp;meta=" rel="nofollow">http://www.google.ca/search?hl=en&amp;client=firefox-a&amp;rls=org....</a>   <br />
 leads me to believe there is a vm. </div><br />
 <br />
 I don't see how garbage collection necessitates VM. It can very well be implemented as a library of memory allocation/deallocation functions, that are just an interface to a garbage collection engine, meant to replace the standard memory management fuctions in the respective language. For example, this is how Boehm garbage collector library works (and I believe Objective-C uses exactly it, although don't quote me on that). Objective-C is most definitely compiled to bare-metal machine instructions.<br />
<br />
EDIT: Oops, beaten to the punch by rob_mx.Edited 2008-06-02 14:45 UTC</description>
			<pubDate>Mon, 02 Jun 2008 14:42:00 GMT</pubDate>
			<author>donotreply@osnews.com (lurch_mojoff)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: WPF</title>
			<link>http://osnews.com/thread?316649</link>
			<guid isPermaLink="true">http://osnews.com/thread?316649</guid>
			<description><div class="cquote">How would you implement garbage collection without a garbage collector? a google of <a href="http://www.google.ca/search?hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;amp;hs=Wk&amp;amp;q=is+objective+c+managed&amp;amp;btnG=Search&amp;amp;meta=" rel="nofollow">http://www.google.ca/search?hl=en&amp;amp;client=firefox-a&amp;amp;...</a>  <br />
leads me to believe there is a vm. </div><br />
<br />
Looks like you're confusing memory management with managed code. Just like C++ Objective-C code is compiled down to native code, which uses the services provided by a runtime for the language-specific features, e.g. message routing.</description>
			<pubDate>Mon, 02 Jun 2008 14:44:00 GMT</pubDate>
			<author>donotreply@osnews.com (kfet)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: WPF</title>
			<link>http://osnews.com/thread?316650</link>
			<guid isPermaLink="true">http://osnews.com/thread?316650</guid>
			<description><div class="cquote">Err... No, end-user applications are virtually never written in .Net. Just corporate stuff - the same kind of stuff that might otherwise be written in Java. </div><br />
<br />
The vast amount of software written for windows used to be done in VB, not C++, or VB for the front end and C++ as COM objects. Since the shift to .net, everything that used to be done in vb, and most of what used to be done in C++ is now being done in .net. If you are talking about software pushing hardware to the limits (games, cg software, etc), yes, typically it is still done in C++. Other then that it is almost totally .net (with some notable exceptions).<br />
<br />
<div class="cquote">You also seem to have this problem with dates.<br />
<br />
10 years ago was 1998 - Microsoft were still trying to get away with using a modified, non-standard version of Java.  </div><br />
<br />
I was not developing professionally on windows at the time (was a Java guy), but I have been using .net since the first beta, closer to 2000, which was 8 years ago, so it feels like a decade ;-)<br />
<br />
<div class="cquote">The first release of the .Net framework was in 2002 - a mere 6 years ago. It wasn't usable for anything much until version 2, released in 2006. Realistically, developers could have started writing end-user apps in 2006. That's only two years ago.<br />
 </div><br />
<br />
Like I said, I have been writing windows stuff with .net for closer to 8 years now. Granted, they were trivial things, but still.<br />
<br />
<div class="cquote">As for WPF, that's only available in .Net 3.0 (early 2007), and only got support from Microsoft's tools in .Net 3.5 (late 2007). Any applications written with that won't even have come close to being released yet. </div><br />
<br />
3.0 was a bit before vista, which was mid 2006. There were some early tools for WPF, but the first real designers only really became available early 2007 (as an out of band CTP release). <br />
<br />
The problem with WPF is not the tooling, it is the vast armies of Winforms developers who don't know how to code a UI with anything but a visual designer. The studio tooling for WPF is (imo) some of the best work they have done so far, which is saying something because MS does great designers. However, you need to actually know WPF to use it properly.<br />
<br />
<div class="cquote">Clearly, you're not a software developer. Not on Windows anyway. </div><br />
<br />
I've been writing software for close to 15 years now, professionally for about 8, professionally on windows for about 3.</description>
			<pubDate>Mon, 02 Jun 2008 14:45:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: WPF</title>
			<link>http://osnews.com/thread?316652</link>
			<guid isPermaLink="true">http://osnews.com/thread?316652</guid>
			<description>You are right, I stand corrected <img src="/images/emo/smile.gif" alt=";)" /></description>
			<pubDate>Mon, 02 Jun 2008 14:47:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: WPF</title>
			<link>http://osnews.com/thread?316655</link>
			<guid isPermaLink="true">http://osnews.com/thread?316655</guid>
			<description><div class="cquote"><br />
Woah, now that's something unusual <img src="/images/emo/wink.gif" alt=";)" />  The question I'd ask as a reply to that is something like &quot;says who?&quot;. This depends on so many factors, that stating something like this is more like the 640K should be enough that anything else. Just as one example, where I do my stuff, we develop mostly algorithms, with the gui coming much later, and since almost all the algorithms are written in c++ and on windows, it comes easier to create an mfc gui for it. We also use c# and Java when the need arises, but it's not a goal, it's the tool. I never use a language or a tool because it's suddenly fashionable, I always use that in which I can do what I have to do more conveniently - from a certain point of view. </div><br />
<br />
Maybe I should have been more clear. The official way to develop windows apps is .net, and has been for a very long time now. You can use MFC if you want, you could even use Tcl if you really wanted to. But the api that is being actively worked on and encouraged by the guys doing the OS is .net.</description>
			<pubDate>Mon, 02 Jun 2008 14:52:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: WPF</title>
			<link>http://osnews.com/thread?316656</link>
			<guid isPermaLink="true">http://osnews.com/thread?316656</guid>
			<description>You are right, blame it on the education for the java generation <img src="/images/emo/smile.gif" alt=";)" />  I was confusing a managed memory runtime with managed code, and was unaware you could implement it in that way</description>
			<pubDate>Mon, 02 Jun 2008 14:56:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316659</link>
			<guid isPermaLink="true">http://osnews.com/thread?316659</guid>
			<description>stop complaining about Java and OS X. There are hardly any applications that require java 1.6 and most of those are simply compiled with 1.6 and do not really use any features not present in 1.5. Also there is a 1.6 for mac although it is still not a final version. Yes it sucks that even though Sun java is not open source it takes so long to get it to MacOS but the problem is nowhere near the magnitude that it's being presented.<br />
<br />
To me the best thing about OS X compared to windows is that you get free and very powerful development tools. Xcode is great but then again there is the issue of objective-c ... Oh and the author of the article commends Apple for being able to say enough is enough but they paid dearly for that ability and are still paying for it. Adobe anyone? I guess this is the risk of relying on 3rd party vendors but what I really respect in Apple is that they acknowledge the risks and try to offer alternatives to their valued customer base. A good example is the office suite. While it's not as powerful as MS's own it is a lot cheaper and quite capable.</description>
			<pubDate>Mon, 02 Jun 2008 15:03:00 GMT</pubDate>
			<author>donotreply@osnews.com (cg0def)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>I guess it comes down to this...</title>
			<link>http://osnews.com/thread?316660</link>
			<guid isPermaLink="true">http://osnews.com/thread?316660</guid>
			<description>...right tool for the right job.<br />
<br />
What I did like about this article was that at least it shows that there are good tools and good languages available on the Mac, some guys here may not have used a Mac before or maybe assumed it wasn't up there with other platforms...<br />
<br />
Personally, I love Cocoa and Obj-C, but I also love Java, Ruby/Rails and Delphi too...  I am just getting into MacRuby too, which might be an interesting way to write apps for the Mac too...<br />
<br />
I like Win32 too, sure it has it's problems, but it gets you there in the end (most of the time)...  I haven't used C#/.Net very much, but the little I did do was pretty cool...<br />
<br />
Oh, just in case anyone is still wondering about how hard it is to learn Obj-C, I came from a C/C++/Java background when I first used Obj-C and had no problem adapting, very very simple...  Ruby is more of a mind bender in a lot of ways (good ways ;-)<br />
<br />
I don't think its the language that is hard, it's just learning the new APIs, that goes for .Net, JFC, Rails and so on...</description>
			<pubDate>Mon, 02 Jun 2008 15:04:00 GMT</pubDate>
			<author>donotreply@osnews.com (thavith_osn)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: WPF</title>
			<link>http://osnews.com/thread?316662</link>
			<guid isPermaLink="true">http://osnews.com/thread?316662</guid>
			<description><div class="cquote">Err... No, end-user applications are virtually never written in .Net. Just corporate stuff - the same kind of stuff that might otherwise be written in Java.<br />
 </div><br />
<br />
<br />
Oh, really? The ATI/AMD control panel comes to mind. It is quite the consumer application and has nothing to do with corporate activities other than the fact that it was produced by a corporation and is distributed by the same. And this is hardly the only example.</description>
			<pubDate>Mon, 02 Jun 2008 15:11:00 GMT</pubDate>
			<author>donotreply@osnews.com (cg0def)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: WPF</title>
			<link>http://osnews.com/thread?316663</link>
			<guid isPermaLink="true">http://osnews.com/thread?316663</guid>
			<description><div class="cquote">this is more like the 640K should be enough that anything else </div><br />
 <br />
 Oh boy! I remember upgrading my 512K computer to 640K!<br />
 <br />
 It's a known fact of life you need at least 1Mb to get anything done. How was anyone getting anything done those days :-)Edited 2008-06-02 15:19 UTC</description>
			<pubDate>Mon, 02 Jun 2008 15:18:00 GMT</pubDate>
			<author>donotreply@osnews.com (dimosd)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Good article</title>
			<link>http://osnews.com/thread?316668</link>
			<guid isPermaLink="true">http://osnews.com/thread?316668</guid>
			<description><div class="cquote">While I liked the article, I found it funny that the author portrayed Microsoft as a company that does not use its own APIs. </div><br />
I believe the point the author was trying to make is that, for one, Apple themselves are using, for majority of their apps, the framework they are promoting as preferred for OS X development, unlike Microsoft, who still develop most of their software in Win32 instead of .Net. Also, especially when it comes to UI, most new objects in Cocoa and most new frameworks are &quot;librarized&quot; version of code Apple had to implement for their apps, while other frameworks (including .Net) are usually formally designed and then the features they implement are used in actual apps. I personally am still on the fence as to whether this necessarily leads to better framework quality, but still it is an approach quite different to Microsoft's.</description>
			<pubDate>Mon, 02 Jun 2008 15:57:00 GMT</pubDate>
			<author>donotreply@osnews.com (lurch_mojoff)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Comment by GStepper</title>
			<link>http://osnews.com/thread?316670</link>
			<guid isPermaLink="true">http://osnews.com/thread?316670</guid>
			<description>The theorical advantage of Java is portability.<br />
<br />
- Why are the SUN's cross-plateform application (for instance Open Office)  not fully written in Java ?<br />
<br />
- Will we ever see a VirtualBox written in Java ? I doubt so...<br />
<br />
Numerous other apps could be written using the advantage of portability, however I've never seen photoshop or Cubase written fully in Java. Now a simple clue. Portability's drawback is performance...<br />
Beyond the portability myth are simple facts...<br />
<br />
.Net: I'm sorry I can't think of any application that is used everyday by million of users and is written using only .Net/C#....<br />
<br />
I have no doubt this is a great plateform for developping application I just wonder why even Microsoft doens't use it for all their home-made application...<br />
<br />
Objective-C: Is a very simple OO language, basically an OO layer (the smalltalk way) above plain C.<br />
<br />
In contrast, Apple uses this language in virtually all their apps. Millions of people use ObjC written applications. There are thousands applications written using ObjC and Cocoa (or GNUstep).<br />
<br />
Guess what ? I love ObjC</description>
			<pubDate>Mon, 02 Jun 2008 16:09:00 GMT</pubDate>
			<author>donotreply@osnews.com (GStepper)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: WPF</title>
			<link>http://osnews.com/thread?316671</link>
			<guid isPermaLink="true">http://osnews.com/thread?316671</guid>
			<description>I'm not against .NET but that application is really awful. Slow and bloated...</description>
			<pubDate>Mon, 02 Jun 2008 16:22:00 GMT</pubDate>
			<author>donotreply@osnews.com (Bending Unit)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Comment by GStepper</title>
			<link>http://osnews.com/thread?316672</link>
			<guid isPermaLink="true">http://osnews.com/thread?316672</guid>
			<description><div class="cquote"><br />
.Net: I'm sorry I can't think of any application that is used everyday by million of users and is written using only .Net/C#....<br />
 </div><br />
Paint.net may not be used by millions but it's a good example of an excellent .Net application.</description>
			<pubDate>Mon, 02 Jun 2008 16:26:00 GMT</pubDate>
			<author>donotreply@osnews.com (Bending Unit)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316674</link>
			<guid isPermaLink="true">http://osnews.com/thread?316674</guid>
			<description><div class="cquote"><br />
Paint.net may not be used by millions but it's a good example of an excellent .Net application. </div><br />
<br />
Paint.net IS not used by millions of users.<br />
<br />
A lot of ObjC apps are used by millions of users everyday. Do you see the difference ?</description>
			<pubDate>Mon, 02 Jun 2008 16:34:00 GMT</pubDate>
			<author>donotreply@osnews.com (mnemonics)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Good article</title>
			<link>http://osnews.com/thread?316676</link>
			<guid isPermaLink="true">http://osnews.com/thread?316676</guid>
			<description>Visual studio is not written in .NET.<br />
Where you'll find that XCode was written in Obj-C, using XCode.<br />
<br />
Microsoft are not dogfooding their own .NET APIs that they are advertising as the way forward for everybody else.</description>
			<pubDate>Mon, 02 Jun 2008 16:49:00 GMT</pubDate>
			<author>donotreply@osnews.com (Kroc)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: WPF</title>
			<link>http://osnews.com/thread?316678</link>
			<guid isPermaLink="true">http://osnews.com/thread?316678</guid>
			<description>How many of Microsoft's products are written in .NET? <br />
<br />
I'm curious because I am under the impression that the majority of their products are still written in C/C++ as Process Explorer reports very few applications using the mscor*.dll files.</description>
			<pubDate>Mon, 02 Jun 2008 17:03:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: WPF</title>
			<link>http://osnews.com/thread?316679</link>
			<guid isPermaLink="true">http://osnews.com/thread?316679</guid>
			<description>I remember upgrading from my 640k XT to a 1mb 286 and still being steamed that various memory managers ate away at my precious base memory <img src="/images/emo/smile.gif" alt=";)" /></description>
			<pubDate>Mon, 02 Jun 2008 17:04:00 GMT</pubDate>
			<author>donotreply@osnews.com (JayPo)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316683</link>
			<guid isPermaLink="true">http://osnews.com/thread?316683</guid>
			<description><b>Paint.net IS not used by millions of users.</b><br />
<br />
Paint.Net 3.31 alone has 2 millons of downloads from downloads.com (and there are other mirrors)Â´<br />
<br />
nikon capture nx is another tool that needs .net (and judging by it's speed is using it alot)</description>
			<pubDate>Mon, 02 Jun 2008 17:17:00 GMT</pubDate>
			<author>donotreply@osnews.com (smashIt)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316684</link>
			<guid isPermaLink="true">http://osnews.com/thread?316684</guid>
			<description><div class="cquote"><b>Paint.net IS not used by millions of users.</b><br />
<br />
Paint.Net 3.31 alone has 2 millons of downloads from downloads.com (and there are other mirrors)Â´<br />
<br />
nikon capture nx is another tool that needs .net (and judging by it's speed is using it alot) </div><br />
<br />
Sure numbers like this can be misinterpreted.<br />
<br />
2 millions downloads ? This surely is a &quot;reference&quot; application...<br />
<br />
Can you tell approximately how much isthe total windows user-base ?<br />
100 millions ? 200 millions ? Let's say 200 millions (although I'm sure it's far beyond that) that means <b>1%</b> of the user-base is using Paint.net... Again, <b>100%</b> of the Mac OS X user-base use ObjC applications on a daily basis... You can find any numbers you want you won't change that simple fact.</description>
			<pubDate>Mon, 02 Jun 2008 17:30:00 GMT</pubDate>
			<author>donotreply@osnews.com (mnemonics)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316692</link>
			<guid isPermaLink="true">http://osnews.com/thread?316692</guid>
			<description><div class="cquote"><b>Paint.net IS not used by millions of users.</b><br />
<br />
Paint.Net 3.31 alone has 2 millons of downloads from downloads.com (and there are other mirrors)Â´<br />
<br />
nikon capture nx is another tool that needs .net (and judging by it's speed is using it alot) </div><br />
I really hope that Paint.net or nikon capture nx are not the best examples you can give of a high profile .Net apps, because their usage numbers and the category of their users somehow pale in comparison to those of, say, Motion, Soundtrack Pro, Color, Logic or Aperture. (and those are just the apps made by Apple)</description>
			<pubDate>Mon, 02 Jun 2008 17:51:00 GMT</pubDate>
			<author>donotreply@osnews.com (lurch_mojoff)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316694</link>
			<guid isPermaLink="true">http://osnews.com/thread?316694</guid>
			<description><div class="cquote"><br />
nikon capture nx is another tool that needs .net (and judging by it's speed is using it alot) </div><br />
<br />
And that's precisely why anyone who develops software for public consumption stays away from .NET or Java.</description>
			<pubDate>Mon, 02 Jun 2008 17:53:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316695</link>
			<guid isPermaLink="true">http://osnews.com/thread?316695</guid>
			<description>you can argue with your math-teacher if 2 millions qualifie as millions or not, i won't waste further time on this topic<br />
<br />
but why don't you compare .net with an apple-language that was introduced years after the switch to OSX?</description>
			<pubDate>Mon, 02 Jun 2008 17:57:00 GMT</pubDate>
			<author>donotreply@osnews.com (smashIt)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Good article</title>
			<link>http://osnews.com/thread?316697</link>
			<guid isPermaLink="true">http://osnews.com/thread?316697</guid>
			<description>They are eating their own dogfood for new development. .Net was not around when VS was first written. The Live suite on the other hand is relatively new. Ditto with media center.</description>
			<pubDate>Mon, 02 Jun 2008 18:01:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Comment by GStepper</title>
			<link>http://osnews.com/thread?316698</link>
			<guid isPermaLink="true">http://osnews.com/thread?316698</guid>
			<description><div class="cquote">.Net: I'm sorry I can't think of any application that is used everyday by million of users and is written using only .Net/C#.... </div><br />
<br />
The reason you can't is because the only way to really tell a .net app at this point (from a user point of view) is the unhandled exception dialog.</description>
			<pubDate>Mon, 02 Jun 2008 18:03:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316699</link>
			<guid isPermaLink="true">http://osnews.com/thread?316699</guid>
			<description><b>i won't waste further time on this topic</b><br />
<br />
Good Bye ! Au revoir ! Hasta luego !</description>
			<pubDate>Mon, 02 Jun 2008 18:06:00 GMT</pubDate>
			<author>donotreply@osnews.com (mnemonics)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Good article</title>
			<link>http://osnews.com/thread?316700</link>
			<guid isPermaLink="true">http://osnews.com/thread?316700</guid>
			<description>&quot;Where you'll find that XCode was written in Obj-C, using XCode.&quot;<br />
<br />
XCode was written using XCode?  Really?  How'd that work?  I image the computers used were also powered by perpetual motion machines that self-assembled in the presence of the RDF.</description>
			<pubDate>Mon, 02 Jun 2008 18:13:00 GMT</pubDate>
			<author>donotreply@osnews.com (joshv)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>This guy simply has no clue</title>
			<link>http://osnews.com/thread?316701</link>
			<guid isPermaLink="true">http://osnews.com/thread?316701</guid>
			<description>This is the worst series of fanboy articles disguised as technical. This guy has simply no clue, even if he claims to be a developer.<br />
<br />
Pearls of wisdom:<br />
<br />
* Summary : &quot;WinForms is bad. Java is much better designed.&quot;<br />
That must be because basically not a single Java desktop program is installed on ANY of my PCs while I use many Winforms ones. Go figure.<br />
<br />
* Summary : &quot;Apple loves developers so that's why they give developers tools out for free. Microsoft instead tries to monetize its developers... thus Microsoft don't understand that more developers means more software for your platform&quot;<br />
Yeah very! Could it be that Apple desperately needs more developers while Microsoft has loads of it writing new apps?<br />
<br />
* Summary : &quot;Great! Apple &quot;innovated&quot; (lol!) by introducing Core Audio, Core Video, Core Data so developers don't need to write their own modules! YaY!&quot;<br />
Do you mean Apple introduced what Windows provided like 13 years ago? YaY!<br />
<br />
(and these last two are my favourites...)<br />
* Citation: &quot;Finally, Apple also gives away Quartz Composer, which I have to give a shout out to. Although I have no practical use for it, I'm sure someone does, and it's really rather funky.&quot;  <br />
no words for it...<br />
<br />
* Citation: &quot;For example, a kind of &quot;palette&quot; window used for inspecting and adjusting object properties was used in iPhoto and other applications. This is something that lots of software can make use of, and so with Mac OS X 10.5, a system-level palette window was introduced. Instead of a proliferation of slightly different first- and third-party implementations of the concept, Apple has taken a good idea and exposed it to any developer.&quot;<br />
System-wide palette for developers to use... rather innovative ;-D<br />
<br />
I mean, if this guy is pretending, he's great... really...<br />
<br />
If he's not pretending... gosh! If I was Jobs, after reading this, I would wonder &quot;Where the hell am I doing wrong?!?!?&quot; ;-P</description>
			<pubDate>Mon, 02 Jun 2008 18:17:00 GMT</pubDate>
			<author>donotreply@osnews.com (TBPrince)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316702</link>
			<guid isPermaLink="true">http://osnews.com/thread?316702</guid>
			<description><div class="cquote">"<i>... So programmers who dont wanna learn Objective C do have a chance of writing good apps. </div> You say &quot;learn Objective-C&quot; as if it is this huge chore you have no hope of ever completing. Even with all the fanciness of version 2.0, Objective-C is still just sliver-thin superset of C. I think it is easier, at least in certain regards, for a Java developer to pickup Objective-C than to switch to Python of Ruby. </i>"<br />
<br />
Sorry, but Objective-C is crap, in my opinion. The syntax is too arcane, and the whole sender-receiver model is unnecessarily ambiguous. It makes C++ look incredibly elegant, by comparison.</description>
			<pubDate>Mon, 02 Jun 2008 18:19:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Good article</title>
			<link>http://osnews.com/thread?316703</link>
			<guid isPermaLink="true">http://osnews.com/thread?316703</guid>
			<description>Xcode is the natural son of &quot;Project Builder&quot; (herited from the NeXT days). Xcode was firstly compiled with ProjectBuilder then Xcode was used to compile following versions of Xcode.<br />
 <br />
 It's pretty simple and logical IMO.Edited 2008-06-02 18:25 UTC</description>
			<pubDate>Mon, 02 Jun 2008 18:23:00 GMT</pubDate>
			<author>donotreply@osnews.com (mnemonics)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Good article</title>
			<link>http://osnews.com/thread?316704</link>
			<guid isPermaLink="true">http://osnews.com/thread?316704</guid>
			<description><div class="cquote">Visual studio is not written in .NET. Where you'll find that XCode was written in Obj-C, using XCode. Microsoft are not dogfooding their own .NET APIs that they are advertising as the way forward for everybody else. </div><br />
<br />
For the VAST number of line-of-business applications, .NET (or Java, if you don't mind a GUI circa 1995) is more than adequate; and, quite frankly, it's advisable, given the RAD development model. Not a lot of people actually write huge apps like Visual Studio or Word. Those that do should pick whatever tool is most appropriate.</description>
			<pubDate>Mon, 02 Jun 2008 18:26:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Good article</title>
			<link>http://osnews.com/thread?316705</link>
			<guid isPermaLink="true">http://osnews.com/thread?316705</guid>
			<description><div class="cquote">I believe the point the author was trying to make is that, for one, Apple themselves are using, for majority of their apps, the framework they are promoting as preferred for OS X development, unlike Microsoft, who still develop most of their software in Win32 instead of .Net. </div><br />
  <br />
  As I pointed out in a previous post, most developers don't write the kind of publicly-consumed applications that Microsoft produces (ie. Word, Excel, Visual Studio, IE, etc). They write line-of-business applications that pertain to their particular business use-cases. C/C++ isn't a good tool to use in those scenarios, but .NET/Java are excellent for that purpose. Hence, that's why Microsoft advocates .NET (and Sun advocates Java) for LOB apps. I've never heard Microsoft suggest that you should be using .NET to produce an app like Word. It's just common sense: Use whatever tool is most appropriate for the job. Apple is handing every developer a hammer, regardless of the problem, when they really only need a screw driver. The reason is simple: They want to tie you to their platform, no different than Microsoft or Sun or anybody else. At least with .NET and Java, you can run your code on other platforms.Edited 2008-06-02 18:36 UTC</description>
			<pubDate>Mon, 02 Jun 2008 18:34:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: WPF</title>
			<link>http://osnews.com/thread?316706</link>
			<guid isPermaLink="true">http://osnews.com/thread?316706</guid>
			<description>Actually, most applications written for Windows are inhouse apps written in Visual Basic or C#.  Most developers for Windows are working for a company writing apps in VB, VB.NET or C#.  Therefore, most user apps are written using the .net framework (or the vb6 runtime, which predates the .net framework)</description>
			<pubDate>Mon, 02 Jun 2008 18:37:00 GMT</pubDate>
			<author>donotreply@osnews.com (BluenoseJake)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316707</link>
			<guid isPermaLink="true">http://osnews.com/thread?316707</guid>
			<description><i>Sorry, but Objective-C is crap, in my opinion. The syntax is too arcane, and the whole sender-receiver model is unnecessarily ambiguous. It makes C++ look incredibly elegant, by comparison.</i><br />
<br />
That's your opinion and I respect it.<br />
<br />
But would you care enought to argument you point of view ? You know arguments, facts.... because it seems that you dislike Objective-C simply because you don't understand it and find it ambiguous. This really gives you less credibility than you surely deserve.</description>
			<pubDate>Mon, 02 Jun 2008 18:41:00 GMT</pubDate>
			<author>donotreply@osnews.com (mnemonics)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: WPF</title>
			<link>http://osnews.com/thread?316709</link>
			<guid isPermaLink="true">http://osnews.com/thread?316709</guid>
			<description>&quot;The first release of the .Net framework was in 2002 - a mere 6 years ago. It wasn't usable for anything much until version 2, released in 2006. Realistically, developers could have started writing end-user apps in 2006&quot;<br />
<br />
The .NET framework was very usable out of the gate, I developed tonnes of stuff with it using Visual Studio 2002, I also used 1.5, which came out with 2003, and version 2, which came out in 2005, not 2006.<br />
<br />
Just because you think something is not useful, doesn't mean that others don't.  Clearly you aren't a software developer, at least not on Windows anyway.</description>
			<pubDate>Mon, 02 Jun 2008 18:42:00 GMT</pubDate>
			<author>donotreply@osnews.com (BluenoseJake)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Good article</title>
			<link>http://osnews.com/thread?316710</link>
			<guid isPermaLink="true">http://osnews.com/thread?316710</guid>
			<description>I was about to point out the same thing. Regardless of the name changes and different UI, OSX at its core is still NextStep. Liek the author of the article pointed out some of the development tools used today in OSX come from NeXT.</description>
			<pubDate>Mon, 02 Jun 2008 18:42:00 GMT</pubDate>
			<author>donotreply@osnews.com (apoclypse)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: Good article</title>
			<link>http://osnews.com/thread?316711</link>
			<guid isPermaLink="true">http://osnews.com/thread?316711</guid>
			<description>I can't agree more.<br />
<br />
Besides my 2 macs, I have 2 NeXT stations <img src="/images/emo/wink.gif" alt=";)" /> <br />
<br />
And countless PCs, old SUN stations....</description>
			<pubDate>Mon, 02 Jun 2008 18:51:00 GMT</pubDate>
			<author>donotreply@osnews.com (mnemonics)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316712</link>
			<guid isPermaLink="true">http://osnews.com/thread?316712</guid>
			<description><div class="cquote"><br />
* Summary : &quot;WinForms is bad. Java is much better designed.&quot;<br />
That must be because basically not a single Java desktop program is installed on ANY of my PCs while I use many Winforms ones. Go figure.<br />
 </div><br />
<br />
A well designed API from a programmers point of view doesn't necessarily mean you will see it a lot as a user. The majority of client side code you will come into contact with as a Windows user is going to be written in Win32. No one will claim Win32 is well designed, not unless they've had 5 - 6 beers.<br />
<br />
<div class="cquote"><br />
* Summary : &quot;Apple loves developers so that's why they give developers tools out for free. Microsoft instead tries to monetize its developers... thus Microsoft don't understand that more developers means more software for your platform&quot;<br />
Yeah very! Could it be that Apple desperately needs more developers while Microsoft has loads of it writing new apps?<br />
 </div><br />
<br />
You've missed the point. Apple needs many 3rd party developers and they've done a lot to reduce the barrier to entry by making their development tools free. Microsoft too need as many 3rd party developers as they can get. Sadly, the tools are all commercial. Stuff like Shark, Instruments, the stuff in /Developer/Applications/Performance all come for free with Xcode, but you'd need high end VS to get it. <br />
<br />
<div class="cquote"><br />
* Summary : &quot;Great! Apple &quot;innovated&quot; (lol!) by introducing Core Audio, Core Video, Core Data so developers don't need to write their own modules! YaY!&quot;<br />
Do you mean Apple introduced what Windows provided like 13 years ago? YaY!<br />
 </div><br />
<br />
You accuse the author of being a fan boy, and yet you make asinine comments like this? You have clearly no idea what Core Audio and Core Video do.<br />
<br />
<div class="cquote"><br />
System-wide palette for developers to use... rather innovative ;-D<br />
 </div><br />
<br />
Have you see the palettes he's talking about? When Apple introduces a new UI theme/widget, it's available to all developers from the get go. How long did it take C++ developers on Windows to get access to ribbons?<br />
<br />
Though I agree with you that Quartz Composer is a waste of time though it does allow you to create some very amazing looking demos. Pity I have the artistic ability of a hippopotamus.</description>
			<pubDate>Mon, 02 Jun 2008 19:01:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316713</link>
			<guid isPermaLink="true">http://osnews.com/thread?316713</guid>
			<description><div class="cquote">But would you care enought to argument you point of view ? You know arguments, facts.... because it seems that you dislike Objective-C simply because you don't understand it and find it ambiguous. This really gives you less credibility than you surely deserve. </div><br />
<br />
Oh, I understand it. I just don't like it. Here's are some examples of why I don't like Objective-C. It has a late-binding contract so, when you call a particular object method, there is no guarantee that the receiver will even process it. You don't know until RUNTIME. That's weak and error-prone. Contrast that with C++, which has very strict compile-time type-safety built into it. Additionally, I don't like the syntax for Objective-C. It looks like it was put together by someone who thought that things like consistency and readability are secondary considerations. The code just looks UGLY. Contrast that with C++, with namespaces, visibility modifiers, better inheritance semantics, and there's no competition.</description>
			<pubDate>Mon, 02 Jun 2008 19:37:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316715</link>
			<guid isPermaLink="true">http://osnews.com/thread?316715</guid>
			<description><div class="cquote">The majority of client side code you will come into contact with as a Windows user is going to be written in Win32. </div><br />
<br />
It depends on what you do with your client computer. For many people, who only use a web browser to read email and play games, that's probably true. But there's a huge number of people running in corporate environments that run nothing but managed (C#, Java) LOB applications. Most (if not all) of the applications in these sorts of environments are managed.<br />
<br />
<div class="cquote">No one will claim Win32 is well designed, not unless they've had 5 - 6 beers. </div><br />
<br />
Neither would anyone say the same of Cocoa or any of Apple's APIs. It's all crap, when it comes right down to it.<br />
<br />
<div class="cquote">Apple needs many 3rd party developers and they've done a lot to reduce the barrier to entry by making their development tools free. Microsoft too need as many 3rd party developers as they can get. Sadly, the tools are all commercial. Stuff like Shark, Instruments, the stuff in /Developer/Applications/Performance all come for free with Xcode, but you'd need high end VS to get it. </div><br />
<br />
That's simply not true. Not all editions of Visual Studio are commercial. For example, Visual Studio Express (see <a href="http://www.microsoft.com/express/default.aspx" rel="nofollow">http://www.microsoft.com/express/default.aspx</a>) is freely available. Also, the Win32 SDK includes a compiler, debugger, headers/libs, and lots of tools. For free. In addition, there's a huge raft of open source tools such as Eclipse (<a href="http://www.eclipse.org/downloads/" rel="nofollow">http://www.eclipse.org/downloads/</a>) which developers can use. Some people would even argue that the open source tools are BETTER. So, really, the idea that you HAVE to use a commercial edition of Visual Studio to develop apps for Windows is just ridiculous and wrong.<br />
<br />
<div class="cquote">You accuse the author of being a fan boy, and yet you make asinine comments like this? You have clearly no idea what Core Audio and Core Video do. </div><br />
<br />
DirectSound, DirectShow, DirectInput, Direct3D, etc have all been around for a VERY long time. That's his point -- and it's valid to mention. Apple isn't breaking new ground here.</description>
			<pubDate>Mon, 02 Jun 2008 20:00:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316716</link>
			<guid isPermaLink="true">http://osnews.com/thread?316716</guid>
			<description>Expression Blend and Expression Design are two awesome apps written using WPF.  They greatly influenced .Net 3.5.  Silverlight and these apps are examples of Microsoft eating their own dog food and making changes based on what they learn.<br />
<br />
Seriously though Microsoft has some awesome technology for developers not just around the GUI.  WPF is as good as it gets and on the stuf that is not GUI related Apple has nothing comparable.</description>
			<pubDate>Mon, 02 Jun 2008 20:14:00 GMT</pubDate>
			<author>donotreply@osnews.com (andrewg)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Good article</title>
			<link>http://osnews.com/thread?316717</link>
			<guid isPermaLink="true">http://osnews.com/thread?316717</guid>
			<description><div class="cquote">"<i>I believe the point the author was trying to make is that, for one, Apple themselves are using, for majority of their apps, the framework they are promoting as preferred for OS X development, unlike Microsoft, who still develop most of their software in Win32 instead of .Net. </div><br />
  <br />
  As I pointed out in a previous post, <b>most developers don't write the kind of publicly-consumed applications that Microsoft produces (ie. Word, Excel, Visual Studio, IE, etc)</b>. They write line-of-business applications that pertain to their particular business use-cases. C/C++ isn't a good tool to use in those scenarios, but .NET/Java are excellent for that purpose. Hence, that's why Microsoft advocates .NET (and Sun advocates Java) for LOB apps. I've never heard Microsoft suggest that you should be using .NET to produce an app like Word. It's just common sense: Use whatever tool is most appropriate for the job. Apple is handing every developer a hammer, regardless of the problem, when they really only need a screw driver. The reason is simple: They want to tie you to their platform, no different than Microsoft or Sun or anybody else. At least with .NET and Java, you can run your code on other platforms. </i>"<br />
<br />
Perhaps on the Windows platform but I'm truly hardpressed to find Java/.NET applications [mono the exception for GNOME, in part] on Linux and OS X that are Client-Server based applications in the traditional client-server model.<br />
<br />
How much of KDE is written in C/C++ and how much of it is written in Java/.NET?<br />
<br />
How much of GNUstep is written in C/ObjC/ObjC++/C++ and how much is written in Java/.NET?<br />
<br />
How much of OS X is written in Java/.NET versus C/ObjC/ObjC++/C++?<br />
<br />
How much of LaTeX Tools are written in Java/.NET?<br />
<br />
How much of Adobe's applications are written in Java/.NET?<br />
<br />
Intuit? Corel? Oracle? Sybase? IBM? Sun?<br />
<br />
What are Safari, Firefox, IE, OmniWeb, Konqueror, Opera, et. al are written in Java/.NET?<br />
<br />
The article is honest. Microsoft wants more people to move to .NET but realizes cutting ties with C/C++ and demanding people switch to C# for general application development would produce an abandoning ship to Linux and OS X tenfold more than they already do.</description>
			<pubDate>Mon, 02 Jun 2008 20:25:00 GMT</pubDate>
			<author>donotreply@osnews.com (tyrione)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316719</link>
			<guid isPermaLink="true">http://osnews.com/thread?316719</guid>
			<description><i>Oh, I understand it. I just don't like it. Here's are some examples of why I don't like Objective-C. It has a late-binding contract so, when you call a particular object method, there is no guarantee that the receiver will even process it. You don't know until RUNTIME. That's weak and error-prone. Contrast that with C++, which has very strict compile-time type-safety built into it. Additionally, I don't like the syntax for Objective-C. It looks like it was put together by someone who thought that things like consistency and readability are secondary considerations. The code just looks UGLY. Contrast that with C++, with namespaces, visibility modifiers, better inheritance semantics, and there's no competition.</i><br />
<br />
- Thanks for your answer.<br />
<br />
- Late binding is a <b>feature</b> in ObjC and while I agree with you it can be error-prone for the Objc beginner, it allows for better flexibility.<br />
<br />
- In ObjC programs there is just no need for namespaces and all C++ related stuffs. Mutiple heritage is a non sense in Objc (and not needed) It's a bit like arguing that C++ lacks &quot;protocols&quot;, &quot;categories&quot; or &quot;properties&quot; from ObjC.</description>
			<pubDate>Mon, 02 Jun 2008 20:39:00 GMT</pubDate>
			<author>donotreply@osnews.com (mnemonics)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316725</link>
			<guid isPermaLink="true">http://osnews.com/thread?316725</guid>
			<description>it may be valid to mention that Directx components have been available for years, but the scope and integration into the OS isn't the same. Besides that Apple also had system services for sound and video even as far back as system 7.5 so I really don't see his point. No one uses directsound for anything other than games or simple applications. Yes its there and has been for a while, but who really uses it? Even MS themselves don't fully use it and that is where Apple and MS differ.</description>
			<pubDate>Mon, 02 Jun 2008 21:38:00 GMT</pubDate>
			<author>donotreply@osnews.com (apoclypse)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Good article</title>
			<link>http://osnews.com/thread?316726</link>
			<guid isPermaLink="true">http://osnews.com/thread?316726</guid>
			<description>I think you kind of missed my point. Most app developers don't write the kinds of apps that would require C/C++. Your average corporate or small-business developer doesn't need the horsepower or complexity offered by C/C++; so, .NET and Java applications really work well in those environments. In my company, for example, our support devs write data collection apps in C#. Most of the data goes to payroll/accounting or HR. More and more of those apps are moving from client machines up to web servers. But web applications aren't always possible/useful to all users; for example, the sales folks who are on the road all the time need apps which do projections for them, keep track of expenses, and other stuff. They don't want to VPN into the corporate network to do all of those things, so client apps work for them. The devs who are writing these apps are using C# because C/C++ would be overkill for what they need. The apps are corporate, highly targeted at specific scenarios, and relatively simple. That, really, is what most devs do in the real world. They aren't writing Internet Explorer or KDE or whatever. For THOSE guys, yeah, sure, I'll grant you, C/C++ is the better tool. But those guys only represent a thimbleful of the larger market for developers. All that you have to do is crack open the classified ads and see what sorts of jobs people are looking for. It's a common theme: Java, .NET, databases, web development. You won't see many jobs for C/C++ developers, on average, compared to the others, and I think that is reflected in Microsoft's emphasis on managed code.</description>
			<pubDate>Mon, 02 Jun 2008 21:41:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316727</link>
			<guid isPermaLink="true">http://osnews.com/thread?316727</guid>
			<description><div class="cquote">it may be valid to mention that Directx components have been available for years, but the scope and integration into the OS isn't the same. </div><br />
<br />
Uh, no. I disagree. Microsoft's technologies are layered in a way that makes it possible/probable to use them either directly or indirectly. For example, at the bottom of the stack is Direct3D/DirectSound/DXVA/etc. Above it are DirectShow for video playback. And, above that is Windows Media Player controls and APIs. <br />
<br />
<div class="cquote">Besides that Apple also had system services for sound and video even as far back as system 7.5 so I really don't see his point. </div><br />
<br />
None of this stuff is new. Both MS and Apple provide (and have provided) audio/video APIs. In other words, the level of innovation is only very incremental.<br />
<br />
<div class="cquote">No one uses directsound for anything other than games or simple applications. Yes its there and has been for a while, but who really uses it? Even MS themselves don't fully use it and that is where Apple and MS differ. </div><br />
<br />
Yes, they do use DirectSound. They just don't realize it. Whenever most apps call playSound(), it eventually calls down DirectSound. The fact that you aren't AWARE that you're calling DirectSound is irrelevant. You are. Why do you think that it's necessary to call into the lowest layer of the stack in order to call that INTEGRATED? That's a nonsensical definition for integration. Integration is all about targeting the layer of technology that makes the most sense. If I don't want to learn about DirectShow or Direct3D or whatever, I can simply host a Windows Media Player control, and have IT do the heavy lifting. Or, if my needs are more complex, I have the option of targeting the lower level runtimes directly.</description>
			<pubDate>Mon, 02 Jun 2008 21:53:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316728</link>
			<guid isPermaLink="true">http://osnews.com/thread?316728</guid>
			<description><div class="cquote">- Late binding is a feature in ObjC and while I agree with you it can be error-prone for the Objc beginner, it allows for better flexibility. </div><br />
<br />
Flexibility = Instability.<br />
<br />
<div class="cquote">- In ObjC programs there is just no need for namespaces and all C++ related stuffs. </div><br />
<br />
Objective-C is a poor man's object-oriented language, circa 1990. It doesn't go far enough in implementing the kinds of useful features that C++ provides, and<br />
I'm stunned that anybody would want to use it when they could be using C++.</description>
			<pubDate>Mon, 02 Jun 2008 22:02:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: Good article</title>
			<link>http://osnews.com/thread?316731</link>
			<guid isPermaLink="true">http://osnews.com/thread?316731</guid>
			<description>The problem here is that you are putting Objective-C/Cocoa into the same league in terms of programming complexity as C/C++, whereas in reality it is much more similar to Java/C#. 99% of the time you don't really have to deal with pointers (one can regard 'ClassName *var;' as syntax sugar, so that doesn't really qualify as pointer manipulation) and Objective-C's strong dynamic mechanisms work very well for GUI environments, which are by nature hard to describe flexibly using static typing. This is further emphasized in ObjC-2.0 which features an automatic GC.<br />
<br />
As the author pointed out, no single feature of Objective-C or Cocoa really put them above other players. It's much more about the combination and implementation of these features. Also, one can transition programming styles from dynamic RAD with good code manageability all the way down to assembly-level programming without having to switch languages.</description>
			<pubDate>Mon, 02 Jun 2008 22:14:00 GMT</pubDate>
			<author>donotreply@osnews.com (saso)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[7]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316734</link>
			<guid isPermaLink="true">http://osnews.com/thread?316734</guid>
			<description><div class="cquote">Flexibility = Instability. </div><br />
<br />
It really comes to what you want to use the language for. Objective-C isn't a one-size-fits-all thing. This way you would have to disregard all dynamic languages (PHP, Smalltalk, Perl, Ruby, Self, Python, to just name a few) as ill approaches.<br />
<br />
<div class="cquote">Objective-C is a poor man's object-oriented language, circa 1990. It doesn't go far enough in implementing the kinds of useful features that C++ provides, and I'm stunned that anybody would want to use it when they could be using C++. </div><br />
<br />
On the other side one could argue that C++ is so bloated that most programmers don't use even one third of the language's features in their work. Some languages are designed maximalistically (C++), some minimalistically (ObjC, Ruby, Self). It really comes down to taste.</description>
			<pubDate>Mon, 02 Jun 2008 22:32:00 GMT</pubDate>
			<author>donotreply@osnews.com (saso)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: Good article</title>
			<link>http://osnews.com/thread?316735</link>
			<guid isPermaLink="true">http://osnews.com/thread?316735</guid>
			<description><div class="cquote">I think you kind of missed my point. Most app developers don't write the kinds of apps that would require C/C++.  </div><br />
<br />
Yet MS has poured loads of development hours into .NET, designing Winforms and then abandoning it in favor of WPF. All this while, MFC has not dramatically changed since its inception about 15 years ago and WTL is not officially supported. I think the message from Redmond is pretty clear.<br />
<br />
C++ developers, sod off.</description>
			<pubDate>Mon, 02 Jun 2008 22:33:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[7]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316737</link>
			<guid isPermaLink="true">http://osnews.com/thread?316737</guid>
			<description><i>Flexibility = Instability</i><br />
<br />
With such a statement I (we) have a much better understanding of how the logical part of your brain works...<br />
<br />
And it reminds me of the famous slogans of the party in G. Orwell's book &quot;<i>1984</i>&quot;. After &quot;<i>War is peace</i>&quot;, &quot;<i>Freedom is slavery</i>&quot; and &quot;<i>Ignorance is strengh</i>&quot; we finaly have a forth slogan &quot;<i>Flexibility is instability</i>&quot;. Thank you so so much !!!<br />
<br />
<i>Objective-C is a poor man's object-oriented language, circa 1990. It doesn't go far enough in implementing the kinds of useful features that C++ provides...</i><br />
<br />
You do realize that in the above sentence one can freely interposes Objective-C and C++ and your sentence will reamain as &quot;true&quot; as in your original sentence. It's just a matter of preference (very subjective by essence) and your preferences are valuable for only one person on this planet.... you !!!<br />
<br />
<i>...and I'm stunned that anybody would want to use it when they could be using C++</i><br />
<br />
Funny but I'm not stunned at all. I wonder why....</description>
			<pubDate>Mon, 02 Jun 2008 22:35:00 GMT</pubDate>
			<author>donotreply@osnews.com (mnemonics)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316738</link>
			<guid isPermaLink="true">http://osnews.com/thread?316738</guid>
			<description><div class="cquote"><br />
That's simply not true. Not all editions of Visual Studio are commercial. For example, Visual Studio Express (see <a href="http://www.microsoft.com/express/default.aspx" rel="nofollow">http://www.microsoft.com/express/default.aspx</a>) is freely available. Also, the Win32 SDK includes a compiler, debugger, headers/libs, and lots of tools. For free.  </div><br />
<br />
With VS Express, you're shafted if you're a C++ developer and want to use a slightly modern framework instead of coding direct to the Win32 API. There is no MFC. Neither is there any ATL. As a result, you can't use WTL either. If you're after designing UIs, you're stuck with a resource editor that hasn't been updated since .rc files were introduced. If you're going to write COM components, tough luck, no GUID generator. <br />
<br />
While Xcode doesn't compete with VS Team System, it's definitely better than VS Express, Standard or Professional. I mean, come on. What kind of self respecting developer doesn't profile his code? Or search for memory leaks? The lack of a profiler means no PGO either.</description>
			<pubDate>Mon, 02 Jun 2008 22:46:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316739</link>
			<guid isPermaLink="true">http://osnews.com/thread?316739</guid>
			<description><div class="cquote">You've missed the point. Apple needs many 3rd party developers and they've done a lot to reduce the barrier to entry by making their development tools free. Microsoft too need as many 3rd party developers as they can get. Sadly, the tools are all commercial. Stuff like Shark, Instruments, the stuff in /Developer/Applications/Performance all come for free with Xcode, but you'd need high end VS to get it. </div><br />
<br />
People having been throwing around visual studio claims (one way or another) all over the place in this post. Here is a rough overview of the actual SKUs<br />
<br />
VS express editions gives you all you need to do most things. They are limited in<br />
<br />
C#/VB.net only<br />
Web designer is kinda sucky<br />
No class diagrams<br />
No .net compact support (for pda/smartphones)<br />
Can only connect to local databases<br />
XML editor only supports XML<br />
Can only debug locally<br />
Can only compile 32bit<br />
No SQL/Server or Windows Server WMI integration<br />
No office addin support<br />
No code profiling<br />
No code analysis<br />
No plugins<br />
No database tools (like schema compares or refactoring)<br />
No integrated testing<br />
No issue/project management features<br />
No database deployment features<br />
<br />
out of all of that, 32bit only binaries are the only thing that really sucks. Other then that, it is a very good ide (for the price), and while the latest XCode may be better, it is in the same range. What you are missing are things you would only really miss in more serious projects then stuff for end users.<br />
<br />
---------------<br />
<br />
With studio standard, you get<br />
<br />
All the .net languages<br />
The full web designer<br />
Plugin support<br />
Mobile support<br />
Ability to connect to remote databases and services<br />
Database diagrams<br />
64bit support<br />
<br />
This is for the more serious hobbiest, or the economy version for independant professionals who do not have an MSDN subscription<br />
<br />
---------------------------<br />
<br />
With pro you get<br />
<br />
Full remote abilities<br />
XSLT support<br />
SQL Server integration (ssis/dts projects)<br />
<br />
Usually pro is another 100$ or so. you would only really get it if you need the heavy duty data transformation stuff in sql server.<br />
<br />
----------------------<br />
<br />
After that, we get into the team system stuff. They are designed for teams of developers working on large projects. You don't usually actually buy these, you buy MSDN subscriptions<br />
<br />
These are divided into SKUs for<br />
Software Developers<br />
Software Architects<br />
Software Testers<br />
Database Professionals<br />
Team Suite (i.e. Ultimate, either for the VP of technology or motivation to get that MVP award)<br />
<br />
---------------------<br />
<br />
The apple tools are designed for people doing desktop apps. Personally, I like WPF/C# better, but overall when it comes to smaller things, I think XCode is the better product. As soon as you start talking databases, web services, server side scripting, XCode is not even in the same class, and even the express versions of VS would be a better choice.<br />
<br />
As for the criticism that MS doesn't include a profiler in the free SKU, IMO that is something that should be pushed down to Pro (like testing was). However, a profiler is not something that everyone needs, and in a team setting the guy who needs it will have it.</description>
			<pubDate>Mon, 02 Jun 2008 22:51:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: WPF</title>
			<link>http://osnews.com/thread?316740</link>
			<guid isPermaLink="true">http://osnews.com/thread?316740</guid>
			<description>I just finished listening to a podcast where a microsoft guy was complaining that too few people at microsoft had any knowledge of unmanaged code. Outside of the windows/office teams, its all about .net.</description>
			<pubDate>Mon, 02 Jun 2008 23:50:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[8]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316741</link>
			<guid isPermaLink="true">http://osnews.com/thread?316741</guid>
			<description><div class="cquote">Thank you so so much !!! </div><br />
 <br />
 You're welcome. You plainly see an archaic defect in Objective-C as some kind of benefit, so whatever. More power to you. Enjoy it, if it works for you.<br />
 <br />
 <div class="cquote">It's just a matter of preference (very subjective by essence) and your preferences are valuable for only one person on this planet.... you !!! </div><br />
 <br />
 LMAO! Rrrrrright. I'm quite confident that, if you were to actually check around, you'd find that the people that prefer Objective-C to C++ is a very small number, indeed. The problem (I think) is that you've been using Objective-C so long that you've lost the [objective] capacity to know that it's crap.Edited 2008-06-02 23:56 UTC</description>
			<pubDate>Mon, 02 Jun 2008 23:56:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: Good article</title>
			<link>http://osnews.com/thread?316742</link>
			<guid isPermaLink="true">http://osnews.com/thread?316742</guid>
			<description><div class="cquote">"<i>I think you kind of missed my point. Most app developers don't write the kinds of apps that would require C/C++.  </div> Yet MS has poured loads of development hours into .NET, designing Winforms and then abandoning it in favor of WPF. All this while, MFC has not dramatically changed since its inception about 15 years ago and WTL is not officially supported. I think the message from Redmond is pretty clear. C++ developers, sod off. </i>"<br />
<br />
Nonsense. VS 2008 updated MFC. <br />
<br />
<a href="http://channel9.msdn.com/posts/Charles/Pat-Brenner-New-Updates-to-MFC-in-Visual-Studio-2008/" rel="nofollow">http://channel9.msdn.com/posts/Charles/Pat-Brenner-New-Updates-to-M...</a></description>
			<pubDate>Tue, 03 Jun 2008 00:04:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316743</link>
			<guid isPermaLink="true">http://osnews.com/thread?316743</guid>
			<description><div class="cquote">With VS Express, you're shafted if you're a C++ developer and want to use a slightly modern framework instead of coding direct to the Win32 API. There is no MFC. Neither is there any ATL. As a result, you can't use WTL either. If you're after designing UIs, you're stuck with a resource editor that hasn't been updated since .rc files were introduced. If you're going to write COM components, tough luck, no GUID generator. </div><br />
<br />
Those components are part of the free Windows Platform SDK. Since many people get both VS Express and Windows Platform SDK, there's no sense in downloading the same components twice. So, download the Platform SDK. Game over.</description>
			<pubDate>Tue, 03 Jun 2008 00:17:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: WPF</title>
			<link>http://osnews.com/thread?316745</link>
			<guid isPermaLink="true">http://osnews.com/thread?316745</guid>
			<description>Let me just say that if you had any knowlege about Objective-C, then you'd not have to &quot;believe&quot; [sic] anything about its features, and could actually make some substantial statement.<br />
<br />
Objective-C code is compiled to machine code and not &quot;managed&quot; in the sense the word is usually used.<br />
<br />
Objective-C manages memory either manually or by reference counting (whether that counts as &quot;garbage-collected&quot; is not universally accepted, but most would say it doesn't).</description>
			<pubDate>Tue, 03 Jun 2008 00:35:00 GMT</pubDate>
			<author>donotreply@osnews.com (Morin)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: WPF</title>
			<link>http://osnews.com/thread?316746</link>
			<guid isPermaLink="true">http://osnews.com/thread?316746</guid>
			<description>If you knew anything about obj-c, you would know with 2.0 there is real, full gc.<br />
<br />
Like I have said in other places, I was mistaking a managed memory runtime with a managed language.</description>
			<pubDate>Tue, 03 Jun 2008 00:43:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316748</link>
			<guid isPermaLink="true">http://osnews.com/thread?316748</guid>
			<description>The only reason Xcode may lack on the Database stuff is for some stupid reason Apple has pulled Enterprise Object Frameworks from the mix.<br />
<br />
Put that back in and suddenly they leap-frog VS on this matter.</description>
			<pubDate>Tue, 03 Jun 2008 00:54:00 GMT</pubDate>
			<author>donotreply@osnews.com (tyrione)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316750</link>
			<guid isPermaLink="true">http://osnews.com/thread?316750</guid>
			<description>I dunno, studio has very good db tooling. And what about creating/consuming web services? I can't imagine working on a large system without services. WCF/Studio makes this ridicules easy</description>
			<pubDate>Tue, 03 Jun 2008 01:07:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[9]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316752</link>
			<guid isPermaLink="true">http://osnews.com/thread?316752</guid>
			<description><i>Enjoy it, if it works for you.</i><br />
<br />
It works for me, for Apple devs and thousands of 3rd party devs... Now you learnt ObjC (a mandatory step to understand it), you wrote several real life programs with it (another mandatory step to understand it) and still it doesn't work for you... There's something weird....<br />
<br />
<i>LMAO</i><br />
<br />
You're at the first step of a 3 steps process:<br />
<b>âIf you want to make someone angry tell him a lie; if you want to make him furious, tell him the truth. All truth passes through three stages. First, it is ridiculed* , second it is violently opposed, and third it is accepted as self-evident.â</b> - Arthur Schopenhauer, Philosopher, 1788-1860<br />
<br />
*:Where you are.<br />
<br />
<i>I'm quite confident that, if you were to actually check around, you'd find that the people that prefer Objective-C to C++ is a very small number, indeed</i><br />
<br />
Using exactly the same kind of intellectual (biaised, non-argumented, dishonnest) stunt, one can say that the &quot;Elite&quot; is always composed by a very small number, indeed !<br />
<br />
<br />
<i>The problem (I think) is that you've been using Objective-C so long that you've lost the [objective] capacity to know that it's crap.</i><br />
<br />
I've been using ObjC for about 5 years and C++ for about 7 years.<br />
While I can easily count your subjective, non-argumented statements against ObjC, you can't give a single example of my subjective, non-argumented statements against C++ since I use and like C++ too. Still, according to you, &quot;<b>I</b>&quot; lost objective capacity to know...</description>
			<pubDate>Tue, 03 Jun 2008 01:31:00 GMT</pubDate>
			<author>donotreply@osnews.com (mnemonics)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316753</link>
			<guid isPermaLink="true">http://osnews.com/thread?316753</guid>
			<description><div class="cquote">"<i>The majority of client side code you will come into contact with as a Windows user is going to be written in Win32. </div><br />
<br />
It depends on what you do with your client computer. For many people, who only use a web browser to read email and play games, that's probably true. But there's a huge number of people running in corporate environments that run nothing but managed (C#, Java) LOB applications. Most (if not all) of the applications in these sorts of environments are managed.<br />
<br />
<div class="cquote">No one will claim Win32 is well designed, not unless they've had 5 - 6 beers. </div><br />
<br />
<b>Neither would anyone say the same of Cocoa or any of Apple's APIs. It's all crap, when it comes right down to it.</b><br />
<br />
<div class="cquote">Apple needs many 3rd party developers and they've done a lot to reduce the barrier to entry by making their development tools free. Microsoft too need as many 3rd party developers as they can get. Sadly, the tools are all commercial. Stuff like Shark, Instruments, the stuff in /Developer/Applications/Performance all come for free with Xcode, but you'd need high end VS to get it. </div><br />
<br />
That's simply not true. Not all editions of Visual Studio are commercial. For example, Visual Studio Express (see <a href="http://www.microsoft.com/express/default.aspx" rel="nofollow">http://www.microsoft.com/express/default.aspx</a>) is freely available. Also, the Win32 SDK includes a compiler, debugger, headers/libs, and lots of tools. For free. In addition, there's a huge raft of open source tools such as Eclipse (<a href="http://www.eclipse.org/downloads/" rel="nofollow">http://www.eclipse.org/downloads/</a>) which developers can use. Some people would even argue that the open source tools are BETTER. So, really, the idea that you HAVE to use a commercial edition of Visual Studio to develop apps for Windows is just ridiculous and wrong.<br />
<br />
<div class="cquote">You accuse the author of being a fan boy, and yet you make asinine comments like this? You have clearly no idea what Core Audio and Core Video do. </div><br />
<br />
DirectSound, DirectShow, DirectInput, Direct3D, etc have all been around for a VERY long time. That's his point -- and it's valid to mention. Apple isn't breaking new ground here. </i>"<br />
<br />
What a load dung. The entire industry has been copying what we did at NeXT for the past 15 years. Now that they've caught up suddenly Cocoa is crap? Truly classic.<br />
<br />
All the Direct this or Direct that have rich, mature and modern Cocoa APIs on OS X. What Apple did, before Steve's return, was to let their lead in Graphics and Audio languish and go into the ground outside of QuickTime.<br />
<br />
Let's revisit this thread in 3 years and see where the toolkits currently stand.<br />
<br />
With Carbon gone you'll see far more resources extending Cocoa as it should have been a 5 years ago.</description>
			<pubDate>Tue, 03 Jun 2008 01:36:00 GMT</pubDate>
			<author>donotreply@osnews.com (tyrione)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316755</link>
			<guid isPermaLink="true">http://osnews.com/thread?316755</guid>
			<description><div class="cquote">What a load dung. The entire industry has been copying what we did at NeXT for the past 15 years. Now that they've caught up suddenly Cocoa is crap? Truly classic. </div><br />
<br />
Maybe you missed my point: I wasn't singling Apple out. I think that BOTH Windows AND Apple graphics APIs are the suck. Microsoft hasn't really provided a way to bridge GDI and Direct3D in any meaningful way. And Apple's graphics perf with Quartz hardware support is so laughably bad that they won't turn it on, by default. As for Cocoa/Carbon, who cares? They're just lame frameworks, like MFC/Win32.</description>
			<pubDate>Tue, 03 Jun 2008 01:56:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Good article</title>
			<link>http://osnews.com/thread?316759</link>
			<guid isPermaLink="true">http://osnews.com/thread?316759</guid>
			<description><div class="cquote">"<i>While I liked the article, I found it funny that the author portrayed Microsoft as a company that does not use its own APIs. </div> I believe the point the author was trying to make is that, for one, Apple themselves are using, for majority of their apps, the framework they are promoting as preferred for OS X development, unlike Microsoft, who still develop most of their software in Win32 instead of .Net. Also, especially when it comes to UI, most new objects in Cocoa and most new frameworks are &quot;librarized&quot; version of code Apple had to implement for their apps, while other frameworks (including .Net) are usually formally designed and then the features they implement are used in actual apps. I personally am still on the fence as to whether this necessarily leads to better framework quality, but still it is an approach quite different to Microsoft's. </i>"<br />
<br />
I think most of Microsft new apps are .NET apps.  For example, World Wide Telescope is a .NET app.  And I believe that the Expression suite (Blend, Media Encoder, etc) are .NET apps.  Sure, older apps like Office aren't .NET, but there's no reason to rewrite what already works for no reason.<br />
<br />
Also, I recall it took Apple years to finally write the Finder in Cocoa (it was a Carbon app for years).</description>
			<pubDate>Tue, 03 Jun 2008 02:27:00 GMT</pubDate>
			<author>donotreply@osnews.com (MollyC)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316761</link>
			<guid isPermaLink="true">http://osnews.com/thread?316761</guid>
			<description><div class="cquote"> You've missed the point. Apple needs many 3rd party developers and they've done a lot to reduce the barrier to entry by making their development tools free. Microsoft too need as many 3rd party developers as they can get. Sadly, the tools are all commercial. Stuff like Shark, Instruments, the stuff in /Developer/Applications/Performance all come for free with Xcode, but you'd need high end VS to get it.  </div><br />
<br />
I developed Mac programs for years, and in my opinion, Apple treats its 3rd party developers like garbage.  They bundle anything and everything so there's almost no room to compete with them (people complain about the few apps that Microsoft bundles but seem to not mind the massive bundling Apple does).  The changes they make to their API are more likely to break apps than Microsoft's API changes, and it's not even close.  They killed off CodeWarrior by not providing them with the information necessary to create universal binaries.  For years, CodeWarrior was the preferred development tool over Apple's offerings, even though it wasn't free like Apple's were.  That should tell you something. <br />
<br />
<div class="cquote"> Have you see the palettes he's talking about? When Apple introduces a new UI theme/widget, it's available to all developers from the get go. How long did it take C++ developers on Windows to get access to ribbons? </div><br />
<br />
Well, the Office team invented Ribbons, not the Windows team.  The Office team is independent.  They &quot;rolled&quot; their own UI, and anyone else could've done the same without waiting on Microsoft.  I find your complaint that Microsoft didn't immediately make the Ribbon UI available to others ironic, because if Microsoft had been split into an &quot;Apps&quot; company and an &quot;OS&quot; company, then this is exactly the behavior you'd get.  Any UI that the &quot;Apps&quot; company invented would not be provided by the &quot;OS&quot; company since they would be separate companies.  Isn't this what lots of Microsoft bashers wanted?<br />
<br />
At any rate, Microsoft pretty quickly did provide a free license to the UI that apps devs and component devs can use, and there are already multiple component devs providing Ribbon UI to devs, and Microsoft's own new .NET and MFC libs provide these Ribbon UI tools written by 3rd-party component devs.  (Note that the actuall Office code is NOT provided by Microsoft, since the Office team is independent and writes their code in a way that is suitable for their own internal use, but not in a way that is suitable for use in a library usable by 3rd parties).   And these 3rd-party Ribbon UI components were available even before Office 2007 RTM'ed.</description>
			<pubDate>Tue, 03 Jun 2008 03:08:00 GMT</pubDate>
			<author>donotreply@osnews.com (MollyC)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>calm down</title>
			<link>http://osnews.com/thread?316764</link>
			<guid isPermaLink="true">http://osnews.com/thread?316764</guid>
			<description>Cocoa is targeted for the desktop development.<br />
<br />
WPF is for desktop, mobile web, and the web itself (silverlight 2 and 3 will support limited WPF controls).<br />
<br />
You guys are taking this article TOO seriously. It comes down to what you're building and who you're targeting.</description>
			<pubDate>Tue, 03 Jun 2008 03:59:00 GMT</pubDate>
			<author>donotreply@osnews.com (djames)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Good article</title>
			<link>http://osnews.com/thread?316774</link>
			<guid isPermaLink="true">http://osnews.com/thread?316774</guid>
			<description>The same way that GCC compiles GCC and Visual Studio is developed using Visual Studio.</description>
			<pubDate>Tue, 03 Jun 2008 06:26:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316775</link>
			<guid isPermaLink="true">http://osnews.com/thread?316775</guid>
			<description><div class="cquote"><br />
Those components are part of the free Windows Platform SDK.  </div><br />
<br />
No, they are not. I have looked, and you *are* shafted if you wish to develop COM, ATL, WTL or MFC applications with VS Express. It was possible to use WTL/ATL in VS 2005 express. Realizing this mistake, MS has removed all ATL headers from the Platform SDK.</description>
			<pubDate>Tue, 03 Jun 2008 06:30:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316776</link>
			<guid isPermaLink="true">http://osnews.com/thread?316776</guid>
			<description>Good and informative post. Shame I can't mod you up <img src="/images/emo/sad.gif" alt=";)" /> Edited 2008-06-03 06:33 UTC</description>
			<pubDate>Tue, 03 Jun 2008 06:32:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316780</link>
			<guid isPermaLink="true">http://osnews.com/thread?316780</guid>
			<description><div class="cquote">They killed off CodeWarrior by not providing them with the information necessary to create universal binaries.  For years, CodeWarrior was the preferred development tool over Apple's offerings, even though it wasn't free like Apple's were.  That should tell you something. </div><br />
<br />
Oh man, you got no clue. I had to join just to debunk you.<br />
<br />
I've been developing software for 30 years. Yeah, CodeWarrior rocked - I used it for years. Before that I used Symantec C for the Mac. Before that.... However, people used it because it was way better than the expensive MPW Shell - back in the days when Steve was NOT there and Apple did not give it's tools away free.... So to say it cost more and people still used it is disingenuous. It cost LESS and was the 1st tool available for building PPC apps, and was pretty good at it. They killed off Symantec on the mac as well (wait, Symantec killed off Symantec tools all on its own...)<br />
<br />
Metrowerks was bought by Motorola, so as they could have dev tools like Intel has theirs, to make money and make tools for their chips. Motorola switched focus to embedded systems, and abandoned their X86 products (yes, they made a compiler for x86 BEFORE Motorola bought them. You could even cross debug Mac&gt;PC or PC&gt;Mac). <br />
<br />
Motorola had an interest in supporting THEIR CPUs, the PowerPC and embedded chips. It was Metrowerks, under the ownership of Motorola, that had no interest in creating Universal Binaries. Motorola and Metrowerks were gone from X86 LONG before the transition, and had no interest in supporting mac OS X strongly.<br />
<br />
Timeline - Motorola acquires Metrowerks in 1999..<br />
2000 - Motorola ceases developing the compiler for x86<br />
2001 - Motorola persists in supporting legacy tools with no new developments now in a couple of years.<br />
June 2005 - Apple announces transition to Intel<br />
July 2005 - unwilling to resurrect the X86 compiler killed as soon as Motorola bought Metrowerks, Metrowerks abandons the tools they had not really advanced in 5+ years on the Mac.<br />
<br />
Get your facts straight</description>
			<pubDate>Tue, 03 Jun 2008 09:03:00 GMT</pubDate>
			<author>donotreply@osnews.com (ebernet)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: WPF</title>
			<link>http://osnews.com/thread?316785</link>
			<guid isPermaLink="true">http://osnews.com/thread?316785</guid>
			<description><div class="cquote">Err... No, end-user applications are virtually never written in .Net. Just corporate stuff - the same kind of stuff that might otherwise be written in Java.  </div> <br />
<br />
The software used to flash the N800 and N810 in Windows is written in DotNet and *requires* the DotNet 2 framework.</description>
			<pubDate>Tue, 03 Jun 2008 09:34:00 GMT</pubDate>
			<author>donotreply@osnews.com (memson)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316787</link>
			<guid isPermaLink="true">http://osnews.com/thread?316787</guid>
			<description><div class="cquote"> The reason you can't is because the only way to really tell a .net app at this point (from a user point of view) is the unhandled exception dialog. </div><br />
<br />
Dragging the exe on to Reflector is more technical, but yields faster results.<br />
<br />
Microsoft Management Studio for Sql Server is at least in part written in DotNet. The shell app seems not to be (or MS hacked it to look like it isn't), but the tonne of assemblies it uses say different.</description>
			<pubDate>Tue, 03 Jun 2008 09:44:00 GMT</pubDate>
			<author>donotreply@osnews.com (memson)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316788</link>
			<guid isPermaLink="true">http://osnews.com/thread?316788</guid>
			<description>100% of Mac users eh?  I am sure Adobe would disagree with you.  And Finder itself is largely a 32-bit Carbon app:<br />
<br />
<a href="http://www.carbondev.com/site/?page=64-bit+Carbon" rel="nofollow">http://www.carbondev.com/site/?page=64-bit+Carbon</a></description>
			<pubDate>Tue, 03 Jun 2008 09:46:00 GMT</pubDate>
			<author>donotreply@osnews.com (zetsurin)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316796</link>
			<guid isPermaLink="true">http://osnews.com/thread?316796</guid>
			<description><div class="cquote">Timeline - <br />
 Motorola acquires Metrowerks in 1999.. <br />
 <br />
 2000 - Motorola ceases developing the compiler for x86 <br />
 <br />
 2001 - Motorola persists in supporting legacy tools with no new developments now in a couple of years. <br />
 <br />
 June 2005 - Apple announces transition to Intel July <br />
 <br />
 2005 - unwilling to resurrect the X86 compiler killed as soon as Motorola bought Metrowerks, Metrowerks abandons the tools they had not really advanced in 5+ years on the Mac. Get your facts straight </div><br />
 <br />
 IIRC it was even worse than that... Metroworks x86 compilers were sold off to a third party. They didn't own them at the time of transition. Not to worry, they were pretty crappy and only did PE executables. They used GCC for anything else x86 (including their folly into LINUX.)<br />
 <br />
 AFAIR, their Mac PowerPC compiler only ever targeted the CFM too, so Universal Binaries were always going to be a little more tricky.<br />
<br />
EDIT: by CFM, we of course mean PEF format (as in, BeOS people don't need to try to contradict me on that one), as opposed to the native mach-o MacOS X exe format inherited from OPENSTEP/NEXTSTEP. The Next platform always did &quot;fat&quot; binaries in the exact same way Mac OS X does them now (well, I didn't look at the layout, but I assume any changes are streamlining)... An OPENSTEP .App can be 68000, x86, SPARC and whatever the HP chip was, all at the same time. Much like Universal Binaries now. The Mac &quot;fat&quot; binaries don't even come close IMO to the elegance of the approach used by Mac OS X.Edited 2008-06-03 11:14 UTC</description>
			<pubDate>Tue, 03 Jun 2008 11:08:00 GMT</pubDate>
			<author>donotreply@osnews.com (memson)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[7]: WPF</title>
			<link>http://osnews.com/thread?316799</link>
			<guid isPermaLink="true">http://osnews.com/thread?316799</guid>
			<description><div class="cquote">If you knew anything about obj-c, you would know with 2.0 there is real, full gc. Like I have said in other places, I was mistaking a managed memory runtime with a managed language. </div><br />
<br />
Objective C 2.0 is pretty much restricted to Leopard and up to date Tiger installs.</description>
			<pubDate>Tue, 03 Jun 2008 11:17:00 GMT</pubDate>
			<author>donotreply@osnews.com (memson)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316800</link>
			<guid isPermaLink="true">http://osnews.com/thread?316800</guid>
			<description><div class="cquote">I dunno, studio has very good db tooling. And what about creating/consuming web services? I can't imagine working on a large system without services. WCF/Studio makes this ridicules easy </div><br />
<br />
Visual Studio has crappy database tooling. It's a bit like the source control integration. Great if you want basic stuff, power users - it just gets in the way. I am constantly in Microsoft Management Studio to get any real work done.</description>
			<pubDate>Tue, 03 Jun 2008 11:19:00 GMT</pubDate>
			<author>donotreply@osnews.com (memson)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316801</link>
			<guid isPermaLink="true">http://osnews.com/thread?316801</guid>
			<description>yeah, i was talking from an end user point of view. the rendering engines of both avid and sony vegas also use .net, but im pretty sure the main apps dont</description>
			<pubDate>Tue, 03 Jun 2008 11:29:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: WPF</title>
			<link>http://osnews.com/thread?316802</link>
			<guid isPermaLink="true">http://osnews.com/thread?316802</guid>
			<description><div class="cquote">Welcome to 2006. Winforms has been deprecated for a very long time now. </div><br />
 <br />
 WPF is  only available in Visual Studio 2008. The 2005 plug-in was never release for production use.<br />
 <br />
 If I had time to hand code forms I would be writing in C++, not using a RAD environment.<br />
 <br />
 Winforms is here and will be here for a long time yet. WPF is pretty much unused. I know of no one using it in production.<br />
 <br />
 As with all discussions of this nature, use the right tool for the job. C/C++ is the correct tool for most platforms without a strong framework (LINUX for example.) Java is the correct platform for weenies and losers. Win32 is the only API if you want nice lean apps wich are pretty much unmaintainable, MFC and ATL are slight movements in a positive direction, but still way off the mark. Winforms is pretty much the only choice for DotNet (especially if you want to be cross platform) and Objective C is for the Mac. All other discussions are window dressing ;-) YMMV<br />
<br />
Edit: messed up spelling.Edited 2008-06-03 11:31 UTC</description>
			<pubDate>Tue, 03 Jun 2008 11:30:00 GMT</pubDate>
			<author>donotreply@osnews.com (memson)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: WPF</title>
			<link>http://osnews.com/thread?316805</link>
			<guid isPermaLink="true">http://osnews.com/thread?316805</guid>
			<description>Yeah, I sorta disagree.<br />
 <br />
 Your right that the 2k5 designer wasn't ever RTM'd, but that doesn't mean it can't be used to learn. WPF not only addresses the (valid) points in the article about the inflexibility of winforms, but it flips it around and makes the mac environment look inflexible by comparison. <br />
 <br />
 You are right that WPF adoption has been extremely limited, but for the purposes of this conversation winforms is being used as a straw man. <br />
 <br />
 As for hand coding, you don't need to hand code, but for the best experience you want to be in split screen (which is what the designer gives you by default), and be switching back and forth between the designer and the code. XAML is a high level declarative markup language, and it is really not hard to learn at all if you have any web experience. The benefits are definately there, and (IMO) make it the best tool for the job for any ui that goes beyond typical LOB stuff.<br />
<br />
Just so we are on the same page, check this out <a href="http://www.beacosta.com/blog/?p=40" rel="nofollow">http://www.beacosta.com/blog/?p=40</a> . I like to pull that out in any discussion on why WPF is worth learning, just because so many people really don't understand how wide the gulf is between it and winforms.<br />
 <br />
 <div class="cquote">As with all discussions of this nature, use the right tool for the job. C/C++ is the correct tool for most platforms without a strong framework (LINUX for example.) Java is the correct platform for weenies and losers. Win32 is the only API if you want nice lean apps wich are pretty much unmaintainable, MFC and ATL are slight movements in a positive direction, but still way off the mark. Winforms is pretty much the only choice for DotNet (especially if you want to be cross platform) and Objective C is for the Mac. All other discussions are window dressing ;-) YMMV </div><br />
 <br />
 Agreed on pretty much all respects except for the winforms one ;-) But I have the perspective of a web guy who does occasional smart clients, and the soul of an early adopter, so I guess i fall into the YMMV disclaimerEdited 2008-06-03 12:29 UTC</description>
			<pubDate>Tue, 03 Jun 2008 12:26:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: WPF</title>
			<link>http://osnews.com/thread?316825</link>
			<guid isPermaLink="true">http://osnews.com/thread?316825</guid>
			<description>GNUstep Renaissance (<a href="http://en.wikipedia.org/wiki/GNUstep_Renaissance" rel="nofollow">http://en.wikipedia.org/wiki/GNUstep_Renaissance</a>),  which also runs natively on OSX, has been around for quite a while now too. The only downside is that it never gained enough traction in the community to force us to write a GUI designer for it.</description>
			<pubDate>Tue, 03 Jun 2008 13:51:00 GMT</pubDate>
			<author>donotreply@osnews.com (saso)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: Comment by GStepper</title>
			<link>http://osnews.com/thread?316827</link>
			<guid isPermaLink="true">http://osnews.com/thread?316827</guid>
			<description><div class="cquote">100% of Mac users eh?  I am sure Adobe would disagree with you.  And Finder itself is largely a 32-bit Carbon app:<br />
<br />
<a href="http://www.carbondev.com/site/?page=64-bit+Carbon" rel="nofollow">http://www.carbondev.com/site/?page=64-bit+Carbon</a> </div> <br />
<br />
Adobe ? By default, you have no Adobe app pre-installed on a mac.<br />
-&gt;Adobe : irrelevant.<br />
<br />
Finder: Largely ??? hum you mean not entirely, right ?<br />
Funny you don't go further in your explanation...<br />
<br />
Yes <b>100% of OS X users</b> use ObjC/Cocoa applications each and every time they use their computer... (Preview,iLife, iWork suite all use extensivily Cocoa through ObjC, let alone AdressBook, Safari, mail, iCal, Xcode, Interface Builder...) Whether or not Cocoa apps are &quot;mapped&quot; to Carbon features at some time in their execution doesn't change anything at all !</description>
			<pubDate>Tue, 03 Jun 2008 14:11:00 GMT</pubDate>
			<author>donotreply@osnews.com (mnemonics)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[10]: Why was the Java bridge deprecated?</title>
			<link>http://osnews.com/thread?316859</link>
			<guid isPermaLink="true">http://osnews.com/thread?316859</guid>
			<description><div class="cquote">It works for me, for Apple devs and thousands of 3rd party devs... </div><br />
<br />
Again, if it works for you, great. Whatever. I could care less. If you want a preprocessor masquerading as an object-oriented langugage, fine. Use Objective-C. If you want a real object-oriented language, step up to C++. <br />
<br />
<div class="cquote">Using exactly the same kind of intellectual (biaised, non-argumented, dishonnest) stunt, one can say that the &quot;Elite&quot; is always composed by a very small number, indeed ! </div><br />
<br />
Perhaps it's slipped your mind that YOU were the one who introduced the exclusionary argument earlier in this thread: <br />
<br />
<b>&quot;... your preferences are valuable for only one person on this planet.... you !!!&quot;</b><br />
<br />
<div class="cquote">Funny but I'm not stunned at all. I wonder why.... </div><br />
<br />
Because you don't know any better.</description>
			<pubDate>Tue, 03 Jun 2008 18:45:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316860</link>
			<guid isPermaLink="true">http://osnews.com/thread?316860</guid>
			<description><div class="cquote">No, they are not. I have looked, and you *are* shafted if you wish to develop COM, ATL, WTL or MFC applications with VS Express. It was possible to use WTL/ATL in VS 2005 express. Realizing this mistake, MS has removed all ATL headers from the Platform SDK. </div><br />
<br />
Wrong. The source code for ATL et al is downloadable. You just go and get it. <br />
<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a55b6b43-e24f-4ea3-a93e-40c0ec4f68e5&amp;DisplayLang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=a55b6b43-e...</a></description>
			<pubDate>Tue, 03 Jun 2008 18:48:00 GMT</pubDate>
			<author>donotreply@osnews.com (tomcat)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: This guy simply has no clue</title>
			<link>http://osnews.com/thread?316863</link>
			<guid isPermaLink="true">http://osnews.com/thread?316863</guid>
			<description>Thanks, well put. I forgot about the whole CFM thing....<br />
bottom line is, it was Metrowerks (Motorola, Freescale, what have you) that did not care. They did not bring it forward because they had to actually DO something, which they had not done in 5+ years at that point. I say good riddance to them (it was such a shame - circa 1996, using CW with PowerPlant was the tits. I loved the environment and the Object Oriented framework. They rocked).</description>
			<pubDate>Tue, 03 Jun 2008 18:52:00 GMT</pubDate>
			<author>donotreply@osnews.com (ebernet)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: calm down</title>
			<link>http://osnews.com/thread?316879</link>
			<guid isPermaLink="true">http://osnews.com/thread?316879</guid>
			<description><div class="cquote">Cocoa is targeted for the desktop development.<br />
<br />
WPF is for desktop, mobile web, and the web itself (silverlight 2 and 3 will support limited WPF controls).<br />
<br />
You guys are taking this article TOO seriously. It comes down to what you're building and who you're targeting. </div><br />
<br />
Cocoa Touch is targeted for Mobile.</description>
			<pubDate>Tue, 03 Jun 2008 21:04:00 GMT</pubDate>
			<author>donotreply@osnews.com (tyrione)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: WPF</title>
			<link>http://osnews.com/thread?316882</link>
			<guid isPermaLink="true">http://osnews.com/thread?316882</guid>
			<description>1) GC in ObjC is optional, and many (most?) apps don't use it.<br />
2) GC and &quot;managed code&quot; (whatever that means -- usually it seems to mean a VM) are entirely separate considerations. You often have GC without a VM, and it's quite possible to have a VM that doesn't do GC. (I believe that this is the case with LLVM, although it gives hooks to implement your own GC)</description>
			<pubDate>Tue, 03 Jun 2008 21:27:00 GMT</pubDate>
			<author>donotreply@osnews.com (SomeGuy)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: WPF</title>
			<link>http://osnews.com/thread?316883</link>
			<guid isPermaLink="true">http://osnews.com/thread?316883</guid>
			<description>quite easily. you look at the memory, see if it's being referred to. if it's not, free it. Do this periodically, and you have a garbage collector.<br />
<br />
Sure, that's oversimplified, but it captures the essence. Hell, you can get garbage collection in pure C code (google Boehm GC) and some applications even use it. (see: GCC, Inkscape, and the GNU native-compiled Java)</description>
			<pubDate>Tue, 03 Jun 2008 21:29:00 GMT</pubDate>
			<author>donotreply@osnews.com (SomeGuy)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Cocoa is a framework for GUIs</title>
			<link>http://osnews.com/thread?317053</link>
			<guid isPermaLink="true">http://osnews.com/thread?317053</guid>
			<description>I've had extensive experience developing with Cocoa, along with Java Swing, Win 32 API, and GTK. Here are some points I'd like to make:<br />
<br />
1) GUI application writing should not require fast APIs.<br />
<br />
Yes, Obj-C is not nearly as fast as, say, C++. However, Sending messages dynamically during runtime makes writing applications very flexible. The speed benefits of C++ are not critical to writing code that handles menus. It is Obj-C's message passing system that gives Cocoa its incredible flexibility and rapid development.<br />
<br />
2) Message passing determined at runtime is a good thing.<br />
<br />
The author correctly points out that Obj-C makes it easy to extensively modify the behavior of provided widgets. The author points out how Windows' APIs don't allow much changed behavior, which severely hampers its abilities.<br />
<br />
I once had to write in Swing some code that uses JTables. It took me several hundreds of lines of code and many hours sifting through documentation to get pretty basic behavior. This sort of thing is much easier to do in Cocoa and in much less code.<br />
<br />
3) Speed critical areas in an application can easily switch over to high-performance languages like C.<br />
<br />
Obj-C easily allows mixing of languages. In fact, you can even have C++ code mixed in with Obj-C. So, if there's something slow in the program, it can be replaced by C or C++. The best platforms are those that can be integrated with foreign platforms.<br />
<br />
4) Xcode isn't great, but Makefiles can be used instead.<br />
<br />
I love using vim and screen for development. I abhor even good IDEs like Visual Studio and Eclipse. I loathe Xcode over all the other main IDEs. I feel I am very productive with vim and screen even though they require a much higher learning curve than GUI IDEs. While Apple does not make it easy to develop Makefiles that compile a MacOS X application, it can be done. Traditional Unix users should be happy they can use typical tools yet produce beautiful OS X applications.</description>
			<pubDate>Wed, 04 Jun 2008 22:36:00 GMT</pubDate>
			<author>donotreply@osnews.com (samad)</author>
			<category>Comments</category>
		</item>
	</channel>
</rss>
