<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Python, Java and the Mac</title>
	<atom:link href="http://blog.amber.org/2005/08/17/python-java-and-the-mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.amber.org/2005/08/17/python-java-and-the-mac/</link>
	<description>Thoughts of a minor lunatic</description>
	<pubDate>Tue, 06 Jan 2009 14:22:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: petrilli</title>
		<link>http://blog.amber.org/2005/08/17/python-java-and-the-mac/comment-page-1/#comment-2538</link>
		<dc:creator>petrilli</dc:creator>
		<pubDate>Fri, 19 Aug 2005 19:38:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amber.org/?p=1754#comment-2538</guid>
		<description>I think what Apple realized is that the Java/Objective-C bridge was a pointless thing.  Various people like "Aaron Hillegrass":http://www.bignerdranch.com/classes/instructors.shtml (author of the best books on MacOS X programming) have said similar things. Use Java, or use Objective-C, but blending the two, no matter how technically brilliant the effort, was a bastard child.</description>
		<content:encoded><![CDATA[<p>I think what Apple realized is that the Java/Objective-C bridge was a pointless thing.  Various people like <a href="http://www.bignerdranch.com/classes/instructors.shtml">Aaron Hillegrass</a> (author of the best books on MacOS X programming) have said similar things. Use Java, or use Objective-C, but blending the two, no matter how technically brilliant the effort, was a bastard child.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://blog.amber.org/2005/08/17/python-java-and-the-mac/comment-page-1/#comment-2536</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 19 Aug 2005 16:04:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amber.org/?p=1754#comment-2536</guid>
		<description>Peter, 

Very sane points. I certainly don't think regular Java support will be going away. I also didn't mean to suggest that Apple somehow coordinated the two things, just that it's an interesting moment.</description>
		<content:encoded><![CDATA[<p>Peter, </p>
<p>Very sane points. I certainly don&#8217;t think regular Java support will be going away. I also didn&#8217;t mean to suggest that Apple somehow coordinated the two things, just that it&#8217;s an interesting moment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Herndon</title>
		<link>http://blog.amber.org/2005/08/17/python-java-and-the-mac/comment-page-1/#comment-2525</link>
		<dc:creator>Peter Herndon</dc:creator>
		<pubDate>Thu, 18 Aug 2005 15:31:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amber.org/?p=1754#comment-2525</guid>
		<description>I think Paul's post takes the article too seriously.  Yes, Apple posts these articles on their website, and doesn't attribute them, giving them a very "official" air.  However, the span of article content suggests that Apple likes publishing Mac programming success stories that contain useful information, not that Apple itself is endorsing a particular methodology as the One, True Way.

They've published stuff on just about every conceivable language, framework, or technology that can be used well and highlights the ease of programming on OS X.  The facts that Apple has deprecated the Java-ObjC bridge, and also has published an article on PyObjC, have been conflated from the coincidence they really are.

Yes, programming in Python (or Ruby) under OS X is easy.  But the truth is that Python updates are not yet available from Software Update, while Java updates are.  Until Apple reverses that situation, I don't think there's any significance to Apple's choice to publish Rentzsch's article, beyond that it is a great article.</description>
		<content:encoded><![CDATA[<p>I think Paul&#8217;s post takes the article too seriously.  Yes, Apple posts these articles on their website, and doesn&#8217;t attribute them, giving them a very &#8220;official&#8221; air.  However, the span of article content suggests that Apple likes publishing Mac programming success stories that contain useful information, not that Apple itself is endorsing a particular methodology as the One, True Way.</p>
<p>They&#8217;ve published stuff on just about every conceivable language, framework, or technology that can be used well and highlights the ease of programming on OS X.  The facts that Apple has deprecated the Java-ObjC bridge, and also has published an article on PyObjC, have been conflated from the coincidence they really are.</p>
<p>Yes, programming in Python (or Ruby) under OS X is easy.  But the truth is that Python updates are not yet available from Software Update, while Java updates are.  Until Apple reverses that situation, I don&#8217;t think there&#8217;s any significance to Apple&#8217;s choice to publish Rentzsch&#8217;s article, beyond that it is a great article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: petrilli</title>
		<link>http://blog.amber.org/2005/08/17/python-java-and-the-mac/comment-page-1/#comment-2524</link>
		<dc:creator>petrilli</dc:creator>
		<pubDate>Thu, 18 Aug 2005 03:04:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amber.org/?p=1754#comment-2524</guid>
		<description>Ah, that's a good, and difficult question.  Some things I like from Python:

* Indentation as block-delimeters.  This reduces silly syntax noise.
* The emphasis on trying to find one clear way to do everything

However, from Ruby I love this:

* Blocks
* Smalltalk-style iterators
* More robust object-model, if not anywhere near Smalltalk, or Lisp.

It's a trade-off which I'd use. Python is "more established" and has better libraries.  It also is _substantially_ better documented in my opinion -- largely due to its origin in attempting to teach languages.  It's also, in my experience, faster, though that's often not a major issue.

Honestly, I'm finding myself more interested in Ruby because of it's support of blocks and better iterator support.  If they could eliminate its Perlisms, I'd be happy.</description>
		<content:encoded><![CDATA[<p>Ah, that&#8217;s a good, and difficult question.  Some things I like from Python:</p>
<ul>
<li>Indentation as block-delimeters.  This reduces silly syntax noise.</li>
</ul>
<ul>
<li>The emphasis on trying to find one clear way to do everything
<p>However, from Ruby I love this:</p>
</li>
<li>Blocks</li>
<li>Smalltalk-style iterators</li>
</ul>
<ul>
<li>More robust object-model, if not anywhere near Smalltalk, or Lisp.
<p>It&#8217;s a trade-off which I&#8217;d use. Python is &#8220;more established&#8221; and has better libraries.  It also is <em>substantially</em> better documented in my opinion&#8212;largely due to its origin in attempting to teach languages.  It&#8217;s also, in my experience, faster, though that&#8217;s often not a major issue.</p>
<p>Honestly, I&#8217;m finding myself more interested in Ruby because of it&#8217;s support of blocks and better iterator support.  If they could eliminate its Perlisms, I&#8217;d be happy.</p>
</li>
</ul>
]]></content:encoded>
	</item>
	<item>
		<title>By: Troy Brumley</title>
		<link>http://blog.amber.org/2005/08/17/python-java-and-the-mac/comment-page-1/#comment-2523</link>
		<dc:creator>Troy Brumley</dc:creator>
		<pubDate>Thu, 18 Aug 2005 02:41:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.amber.org/?p=1754#comment-2523</guid>
		<description>The cost to Apple to support Java was probably relatively high.  Given the apparent weakness of Sun and Java, it makes perfect sense to me.  I haven't really done anything with Python or Ruby, other than read a couple of introductory tutorials.  Which do you prefer, and why?</description>
		<content:encoded><![CDATA[<p>The cost to Apple to support Java was probably relatively high.  Given the apparent weakness of Sun and Java, it makes perfect sense to me.  I haven&#8217;t really done anything with Python or Ruby, other than read a couple of introductory tutorials.  Which do you prefer, and why?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
