<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Gridshore &#187; Mac OSX</title>
	<atom:link href="http://www.gridshore.nl/category/mac-osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gridshore.nl</link>
	<description>A weblog about software engineering, Architecture, Technology an other things we like.</description>
	<lastBuildDate>Tue, 13 Dec 2011 15:36:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Upgrade maven and switch between versions using bash on the mac</title>
		<link>http://www.gridshore.nl/2011/03/14/upgrade-maven-and-switch-between-versions-using-bash-on-the-mac/</link>
		<comments>http://www.gridshore.nl/2011/03/14/upgrade-maven-and-switch-between-versions-using-bash-on-the-mac/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 17:25:17 +0000</pubDate>
		<dc:creator>jettro</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/?p=1142</guid>
		<description><![CDATA[<p>Over three years a go I wrote a blog post explaining the steps to upgrade you maven installation on Mac OS X Leopard. I have been using snow leopard now for a while and things changed a bit. In one of the comments to that post Oskar Carlstedt mentioned the steps required on Snow [...]]]></description>
			<content:encoded><![CDATA[<p>Over three years a go I wrote a <a href="http://www.gridshore.nl/2008/01/28/upgrading-maven-on-the-mac/">blog post explaining the steps to upgrade you maven installation on Mac OS X Leopard</a>. I have been using snow leopard now for a while and things changed a bit. In one of the comments to that post Oskar Carlstedt mentioned the steps required on Snow Leopard. This is all fine if you upgrade a minor version, but with maven 3 things changed a lot. I have some projects that require maven 2, we did not have time yet to fix problems we have with maven 3. Still I prefer using maven 3. Therefore I have to change between versions often. I decided to create a bash script to help me out.</p>
<p>Within this blogpost I&#8217;ll explain the installation of maven on Snow Leopard and I&#8217;ll present the bash script that can help you to switch between installations of maven.</p>
<p><span id="more-1142"></span><br />
<h2>Maven on the Mac (Snow Leopard)</h2>
<p>By default maven is installed in the path: /usr/share/java. The maven executables are installed as maven-3.0.2 and maven-2.2.1. Since the upgrade path is a bit slow I tend to install my own maven binaries. I extract them as provided by apache using the apache-maven-x.x.x format.</p>
<p><img src="http://www.gridshore.nl/wp-content/uploads/Screen-shot-2011-03-14-at-10.45.03.png" alt="Maven installtions" border="0" width="600" height="217" /></p>
<p>A soft link is available in /usr/share/maven. This is the link that points to one of the maven binaries. This is the place where you switch between versions of maven. You can remove the soft link and create one to the right maven home folder. A small catch is that you need to be root to remove and create the link. Using sudo is good enough.</p>
<p>The commands to do this are:</p>
<pre>
cd /usr/share
sudo rm maven
ln -s /usr/share/java/apache-maven-3.0.2 maven
</pre>
<p>So not a lot of work, but just annoying to do one or more times a day. Therefore I have wanted to have a bash script to do it for me.</p>
<h2>Introducing bash</h2>
<p>When automating something on the Mac I tend to use bash. I am not an expert, but using google I can do interesting things. I&#8217;ll step to the script. To start off, define the two maven installations that I currently use:</p>
<pre>
maven2=apache-maven-2.2.1
maven3=apache-maven-3.0.2
</pre>
<p>Next step is to remove the current soft link if it exists.</p>
<pre>
if [ -e /usr/share/maven ]
then
	sudo rm /usr/share/maven
fi
</pre>
<p>Next is to store the maven implementation version in a variable</p>
<pre>
maven=$maven3

if [ $# == 0 ]
then
	echo "No Arguments supplied, using default maven 3"
elif [ $1 == 2 ]
then
	maven=$maven2
else
	echo "Using the default maven setting, provided argument [$1] is not recognized"
fi
</pre>
<p>The default is maven 3, than we check if arguments are provided to the script. If no arguments are provided, we do nothing and use the default. if an argument is provided we check if it is 2. If so, we set maven 2 as the implementation. If something else than 2 is provided we take the default which is maven 3. The final step is to create the soft link again.</p>
<pre>
sudo ln -s /usr/share/java/$maven /usr/share/maven
</pre>
<h3>Using spaces</h3>
<p>One thing that took me a few moments to understand is the use of spaces within bash. maven=$maven2 is not the same as maven = $maven2</p>
<h2>The complete script</h2>
<pre class="brush: bash; title: ; notranslate">
#!/bin/bash
echo &amp;quot;Setting the maven implementation version&amp;quot;

maven2=apache-maven-2.2.1
maven3=apache-maven-3.0.2

if [ -e /usr/share/maven ]
then
	echo &amp;quot;Remove the maven soft link.&amp;quot;
	sudo rm /usr/share/maven
else
	echo &amp;quot;Maven soft link could not be found.&amp;quot;
fi

maven=$maven3

if [ $# == 0 ]
then
	echo &amp;quot;No Arguments supplied, using default maven 3&amp;quot;
elif [ $1 == 2 ]
then
	echo &amp;quot;Setting maven to use to maven 2&amp;quot;
	maven=$maven2
else
	echo &amp;quot;Using the default maven setting, provided argument [$1] is not recognized&amp;quot;
fi

echo &amp;quot;Creating new soft link to $maven&amp;quot;
sudo ln -s /usr/share/java/$maven /usr/share/maven
</pre>
<h2>Room for improvement</h2>
<p>It would be nice to do a scan of the directory /usr/share/java and provide you with options to select from. You could also select the most recent version of maven 2 or 3 or even 2.2 and 3.0. If I have a need for that I&#8217;ll update the script <img src='http://www.gridshore.nl/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h2>Concluding</h2>
<p>That is it, you now have a script that you can call with the implementation you want to set. I called mine setmaven.sh and you would call it like:</p>
<pre>
./setmaven.sh 2
</pre>
<p>You can check if it is working with the well known mvn &#8211;version command</p>
<p><img src="http://www.gridshore.nl/wp-content/uploads/Screen-shot-2011-03-14-at-18.59.53.png" alt="Screen shot 2011 03 14 at 18 59 53" border="0" width="600" height="388" /></p>
<p>Feel free to comment for improvements.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2011%2F03%2F14%2Fupgrade-maven-and-switch-between-versions-using-bash-on-the-mac%2F&amp;title=Upgrade%20maven%20and%20switch%20between%20versions%20using%20bash%20on%20the%20mac&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2011/03/14/upgrade-maven-and-switch-between-versions-using-bash-on-the-mac/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Two new apps for the mac</title>
		<link>http://www.gridshore.nl/2009/03/20/two-new-apps-for-the-mac/</link>
		<comments>http://www.gridshore.nl/2009/03/20/two-new-apps-for-the-mac/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 23:21:58 +0000</pubDate>
		<dc:creator>jettro</dc:creator>
				<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[uninstall]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/?p=679</guid>
		<description><![CDATA[<p>This is a short post about two applications that I am using on the mac. I know one of them is not the most obvious choice, still I like it a lot better than another one that is used a lot. I am talking about a twitter client.</p> <p>This is Syrinx, just a twitter [...]]]></description>
			<content:encoded><![CDATA[<p>This is a short post about two applications that I am using on the mac. I know one of them is not the most obvious choice, still I like it a lot better than another one that is used a lot. I am talking about a twitter client.</p>
<p><a href="http://www.mrrsoftware.com/MRRSoftware/Syrinx.html"><img src="http://www.gridshore.nl/wp-content/uploads/syrinx1.png" alt="syrinx1.png" border="0" width="128" height="128" align="left" /></a>This is <a href="http://www.mrrsoftware.com/MRRSoftware/Syrinx.html">Syrinx</a>, just a twitter client. But a client that does what you need, nothing more nothing less. It shows your friends, it shows twits. It keeps track of your last read tweet. It is also less present than some other twitter clients that are well known.</p>
<p><a href="http://www.appzapper.com/"><img src="http://www.gridshore.nl/wp-content/uploads/appzapper.png" alt="AppZapper.png" border="0" width="128" height="128" align="right" /></a>The second application I want to talk about is an application that takes care of removing applications from your machine. Each application stores more files than the ones in your application folder. This small little app knows them and removes them as well. Just pick up the application you want to delete, drag it into the <a href="http://www.appzapper.com/">appzapper</a> window and it is gone. Appzapper is not free. It will cost you around 13 dollars. I do not think that is to much for a handy tool like this.</p>
<h2>Twitter</h2>
<p>I do want to use this post to announce that gridshore is on twitter now as well. You can find me on http://www.twitter.com/gridshore. Don&#8217;t worry, I will not write tweets about my personal stuff, only about new items I am working on. Technical stuff I am looking at or maybe conferences I visit. Check it out if you are interested. I also installed the plugin in wordpress, so often the tweets appear on the site as well.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2009%2F03%2F20%2Ftwo-new-apps-for-the-mac%2F&amp;title=Two%20new%20apps%20for%20the%20mac&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2009/03/20/two-new-apps-for-the-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>widgets  for the mac</title>
		<link>http://www.gridshore.nl/2009/01/18/widgets-for-the-mac/</link>
		<comments>http://www.gridshore.nl/2009/01/18/widgets-for-the-mac/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 09:48:53 +0000</pubDate>
		<dc:creator>jettro</dc:creator>
				<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/?p=630</guid>
		<description><![CDATA[<p>Sunday morning, it is raining, and I am playing with the new mac. I was browsing through the default bookmarks and stumbled upon the widgets download page. Usually I do not use these nifty little apps a lot. Which is about to change. I have found some nice widgets that will make my life [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.gridshore.nl/wp-content/uploads/dashboard.png" alt="dashboard.png" border="0" width="106" height="114" align="left" />Sunday morning, it is raining, and I am playing with the new mac. I was browsing through the default bookmarks and stumbled upon the widgets download page. Usually I do not use these nifty little apps a lot. Which is about to change. I have found some nice widgets that will make my life on the mac easier.</p>
<p>This post is about those widgets, hope you find them useful as well. I&#8217;ll discuss a widget for storing passwords, </p>
<p><span id="more-630"></span>
<p><a href="http://www.apple.com/downloads/dashboard/networking_security/cryptboard.html">CryptBoard</a> &#8211; This little widget let&#8217;s you store encrypted passwords. You can close the vault from your dashboard, if you are using it, you can also leave it open. The data in the vault is stored encrypted on your machine.</p>
<p><a href="http://islayer.com/apps/istatpro/">iStat pro</a> &#8211; This widget gives you an idea about the usage of your resources. A very configurable widget with data about your hard disks, temperatures, cpu, memory, network, processes and some others. The look and feel is highly configurable.</p>
<p><a href="http://www.apple.com/downloads/dashboard/developer/vicheatsheetwidget.html">Vi cheat sheet</a> &#8211; want to become comfortable with the best editor around <img src='http://www.gridshore.nl/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . This nifty widget will help you find the right keys in those dark days.</p>
<p>After this widget I did not find anything useful. Hmm, makes you think about the usage of the dashboard. There is a lot of very bad widgets to be found, and not to many useful ones. But those that are useful, are the ones I&#8217;ll use regularly. I did not mention the out of the box widgets like : systran language translator and accuweather.</p>
<p>So it is by far an extensive list, please use the comment if there are widgets you use often.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2009%2F01%2F18%2Fwidgets-for-the-mac%2F&amp;title=widgets%20%20for%20the%20mac&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2009/01/18/widgets-for-the-mac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Upgrade subversion client on mac osx</title>
		<link>http://www.gridshore.nl/2008/12/21/upgrade-subversion-client-on-mac-osx/</link>
		<comments>http://www.gridshore.nl/2008/12/21/upgrade-subversion-client-on-mac-osx/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 10:36:52 +0000</pubDate>
		<dc:creator>jettro</dc:creator>
				<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[1.5]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/?p=545</guid>
		<description><![CDATA[<p>The mac is a pretty complete system for developing applications. Once I was surprised that tools like subversion and maven come pre-installed. There is a big advantage for the non-technical users that these tools are pre installed. Although I doubt that these people will use it a lot. Would you teach a person to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.gridshore.nl/wp-content/uploads/subversion-logo-hor-468x64.png" alt="subversion_logo_hor-468x64.png" border="0" width="234" height="32" align="left" />The mac is a pretty complete system for developing applications. Once I was surprised that tools like subversion and maven come pre-installed. There is a big advantage for the non-technical users that these tools are pre installed. Although I doubt that these people will use it a lot. Would you teach a person to use command line subversion? I guess not. You would teach them to use a tool like <a href="http://versionsapp.com/">Versions</a>. As a developer you can run into problems when you want to upgrade one of these libraries. Some time a go I have already written a post about <a href="http://www.gridshore.nl/2008/01/28/upgrading-maven-on-the-mac/">upgrading maven on the mac</a>. This is a short post about upgrading subversion.</p>
<p><span id="more-545"></span>
<p>Like I said, mac osx comes with a subversion client out of the box. At least Leopard does. If you do not believe me, try the following command and watch the output:</p>
<p><em>svn &#8211;version</em></p>
<pre>
svn, version 1.4.4 (r25188)
   compiled May 31 2008, 03:45:57
Copyright (C) 2000-2006 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).
The following repository access (RA) modules are available:
* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
  - handles 'http' scheme
  - handles 'https' scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme
</pre>
<p>This is not the most recent version of subversion. That comes with performance as well as use ability problems. I am not going into details here. The biggest problem to me is that I use Versions and IntelliJ with subversion 1.5. Now my command line client does not work anymore. This is a problem for some of the maven projects. Therefore I want to upgrade the commandline subversion client. I was surprised that there are almost no resources on the web to do this without installing other libraries. But I found a pretty easy way. Execute the following steps:</p>
<ul>
<li>Download the binaries from the website : <a href="http://subversion.tigris.org/getting.html#osx">http://subversion.tigris.org/getting.html#osx</a>. I used the openCollabnet version. You do have to provided your details to download, just leave everything empty.</li>
<li>Use the downloaded installer to install all the subversion binaries.</li>
<li>Make sure that the new binaries are on the path before the original subversion libraries. Issue the following command in a terminal.<br/><em>export PATH=/usr/local/bin:$PATH</em></li>
</ul>
<p>Those are the most important steps. If you do this in a terminal and execute the svn &#8211;version again you get the following output</p>
<pre>
svn, version 1.5.4 (r33841)
   compiled Oct 27 2008, 11:19:10
Copyright (C) 2000-2008 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).
The following repository access (RA) modules are available:
* ra_neon : Module for accessing a repository via WebDAV protocol using Neon.
  - handles 'http' scheme
  - handles 'https' scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
  - with Cyrus SASL authentication
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
  - handles 'http' scheme
  - handles 'https' scheme
</pre>
<p>That worked, the version is now <strong>1.5.4</strong>. If you do not want to execute this command every time you need it, you can add it to you <em>.profile</em>. If you need more info on how to do just that, you can <a href="http://www.tech-recipes.com/rx/2621/os_x_change_path_environment_variable/">find a good explenation here</a>.</p>
<p>Hope this post helps you use the new and improved subversion.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F12%2F21%2Fupgrade-subversion-client-on-mac-osx%2F&amp;title=Upgrade%20subversion%20client%20on%20mac%20osx&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/12/21/upgrade-subversion-client-on-mac-osx/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Mac osx killer apps III</title>
		<link>http://www.gridshore.nl/2008/11/30/mac-osx-killer-apps-iii/</link>
		<comments>http://www.gridshore.nl/2008/11/30/mac-osx-killer-apps-iii/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 11:03:18 +0000</pubDate>
		<dc:creator>jettro</dc:creator>
				<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/?p=499</guid>
		<description><![CDATA[<p>Again a blog post about the tools I use on the mac. I have written about this before and therefore I have decided to create a separate page with a list of all the tools. That way you can find the tools a lot quicker. This post focusses on new tools I have found. [...]]]></description>
			<content:encoded><![CDATA[<p>Again a blog post about the tools I use on the mac. I have written about this before and therefore I have decided to create a separate page with a list of all the tools. That way you can find the tools a lot quicker. This post focusses on new tools I have found. You can find the page &#8220;<a href="http://www.gridshore.nl/mac-osx-tools/">Mac osx tools</a>&#8221; at the top of the screen.</p>
<p><img src="http://www.gridshore.nl/wp-content/uploads/logo-fluid.png" alt="logo_fluid.png" border="0" width="128" height="128" align="left" />The first tool I want to talk about is a nice utility that can create applications out of website. With <a href="http://fluidapp.com/">Fluid</a> you take a url, give it an icon and create an application. This application can have it&#8217;s own links and preferences. Looks nice and it comes with some advantages. You can place it on your dashboard. It has it&#8217;s own icon when going through you apps with command-tab. Very easy interface and free to use.</p>
<p>Find out about more tools by clicking on more</p>
<p><span id="more-499"></span>
<p>Another tool I want to talk about is not free. <a href="http://www.omnigroup.com/applications/OmniGraffle/">Omnigraffle</a> costs a lot of money. Still I want to mention it here because it has so many nice things. This is the best tool I ever used for drawing diagrams. It just works like expected. Has a lot of alignment, sizing, grouping, colouring options to you available.<img src="http://www.gridshore.nl/wp-content/uploads/logo-omnigrafflepro.png" alt="logo_OmniGrafflePro.png" border="0" width="128" height="128" align="right" /></p>
<p>I was not sure if I really had to mention this one. But I decided that the current release of <a href="http://www.openoffice.org">open office</a> is so good, it would be an error to leave it out. I use it on a daily basis and it does what it should do. Writing documents in a lot of formats including the microsoft 2007 editions of word, excel, etc. Very nice if you do not want to pay any money for the microsoft office suite. Nine out of ten users will find what they need in the suite.</p>
<p><img src="http://www.gridshore.nl/wp-content/uploads/logo-betterzip.png" alt="logo_BetterZip.png" border="0" width="128" height="128" align="left" />The next application is nice when dealing with zip files. <a href="http://macitbetter.com/">BetterZip</a> feels very comfortable to create new zips. I would like a command line interface but have not found it yet. It would be nice to be able to open a new archive from the the command line. Or just create a new zip based on a folder from within finder. These options seem to be missing. Still a nice utility for less than 20 dollars</p>
<p>Mac OSX comes with out of the box support for subversion. Using the command line is not very difficult for the basic tasks. But for more advanced tasks a graphical interface would be nice. It would be even better if this interface gives the feeling of a mac application. Well search no longer (if you want to pay for at least). <a href="http://versionsapp.com/">Versions</a> is here. This is a very nice application and it seems to work very well. The biggest disadvantage is the price. It costs 46.41 euro&#8217;s, which is not cheap for an application that only makes your life easier. Than again, if you work a lot with subversion it could be worth the money.<img src="http://www.gridshore.nl/wp-content/uploads/logo-versions.png" alt="logo_Versions.png" border="0" width="128" height="128" align="right" /></p>
<p>The last two applications are actually plugins for your system preferences. The first is for setting default applications. This is not easy out of the box, with this application you make it available from the System Preferences panel. The application is called : <a href="http://www.rubicode.com/Software/RCDefaultApp/">RCDefaultApp</a>. The second I want to mention is about the temperature of your mac book pro. It can become pretty hot since the fans jump in late. The Mac should be perfectly capable of handling this, however you can have more options available. The speed is better at lower temperature and the machine just feels nicer when the temperature is lower. If you want this as well, go to the <a href="http://www.lobotomo.com/products/FanControl/index.html">website of the utility Fan Control</a></p>
<p>That is it for now, do not forget to checkout the page with tools, feel free to come with better alternatives or good ideas.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F11%2F30%2Fmac-osx-killer-apps-iii%2F&amp;title=Mac%20osx%20killer%20apps%20III&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/11/30/mac-osx-killer-apps-iii/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Want to see a real UI cross-platform application framework?</title>
		<link>http://www.gridshore.nl/2008/11/02/want-to-see-a-real-ui-cross-platform-application-framework/</link>
		<comments>http://www.gridshore.nl/2008/11/02/want-to-see-a-real-ui-cross-platform-application-framework/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 22:49:20 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Frontend Technology]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2008/11/02/want-to-see-a-real-ui-cross-platform-application-framework/</guid>
		<description><![CDATA[<p>Ever wondered what language or library is used for Google Earth, Skype, Sony Mylo, Photoshop Album, KDE, VLC Media Player and of course my companies own Papyrus EYE? It is NOT .NET, JAVA nor Adobe Flex, OpenLaszlo, JavaFX, AJAX, or Silverlight.</p> <p>Read on, if you want to find out..</p> <p> <p>It`s Qt [ pronounced [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered what language or library is used for Google Earth, Skype, Sony Mylo, Photoshop Album, KDE, VLC Media Player and of course my <a title="ISIS Papyrus" href="http://www.isis-papyrus.com/" target="_blank">companies</a> own <a title="Papyrus EYE Press Release" href="http://www.isis-papyrus.com/e/pages/pressreleases/2/PR20080922.htm" target="_blank">Papyrus EYE</a>? It is <strong><u>NOT</u></strong> .NET, JAVA nor Adobe Flex, OpenLaszlo, JavaFX, AJAX, or Silverlight.</p>
<p>Read on, if you want to find out..</p>
<p><span id="more-396"></span>
<p>It`s <strong><a title="QT" href="http://trolltech.com/" target="_blank">Qt</a></strong> [ pronounced cute] formally Trolltech now Noka. Qt is a cross-platform application framework. Using Qt, you can develop applications and user interfaces once, and deploy them across many desktop and embedded operating systems without rewriting the source code.</p>
<p>I am just giving you some URLÂ´s to check out yourself to begin with a blog of one who you may not expect to blog on something old as C++ instead, it`s Mike Gualtieri from Forrester Research. In his latest blog &#8220;<a title="C++ is still cool" href="http://blogs.forrester.com/appdev/2008/11/c-is-cool.html" target="_blank">Spotlight: C++ is still cool</a>&#8221; he writes about his experience at the QT Software Developer Days Conference.</p>
<p>The second blog is from our <a title="The Chief Architects news blog" href="http://isispapyrus.wordpress.com/2008/03/" target="_blank">Chief Architect Max J. Pucher</a> who mentioned a time ago QT .</p>
<p>So dust of your C++ skills and have a refreshing look at Qt.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F11%2F02%2Fwant-to-see-a-real-ui-cross-platform-application-framework%2F&amp;title=Want%20to%20see%20a%20real%20UI%20cross-platform%20application%20framework%3F&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/11/02/want-to-see-a-real-ui-cross-platform-application-framework/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Using smultron as a TextMate alternative</title>
		<link>http://www.gridshore.nl/2008/08/30/using-smultron-as-a-textmate-alternative/</link>
		<comments>http://www.gridshore.nl/2008/08/30/using-smultron-as-a-textmate-alternative/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 13:16:51 +0000</pubDate>
		<dc:creator>jettro</dc:creator>
				<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[text editor]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/?p=223</guid>
		<description><![CDATA[<p>This is a short post about again another tool for the mac. I was using TextMate as an external text editor. There were a few reasons why I liked it a lot. I am using it mainly for editing files without opening a full blown editor like IntelliJ or DashCode. Since I am doing [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.gridshore.nl/wp-content/uploads/smultron-logo.png" alt="smultron_logo.png" border="0" width="139" height="138" align="left" />This is a short post about again another tool for the mac. I was using TextMate as an external text editor. There were a few reasons why I liked it a lot. I am using it mainly for editing files without opening a full blown editor like IntelliJ or DashCode. Since I am doing a lot of java development, I have a lot of property files as well as xml files that I need to edit. I heard about TextMate and got curious, for me there were a few reasons why I liked TextMate a lot.</p>
<ul>
<li>Quick startup times</li>
<li>Possibility to startup TextMate from the command line <br /># mate &lt;filename&gt;</li>
<li>Integration with subversion</li>
<li>Xml formatting</li>
</ul>
<p>Today I decided to by TextMate, than I saw it was almost 50 euros. that is to much for me for just a text editor. Therefore I started looking for something else. I found the open source tools <a href="http://smultron.sourceforge.net/">Smultron</a>. My conclusion, TextMate is better but not worth the 50 euros when you compare them. I did have to integrate an xml formatter to get three of the points out of the four mentioned within Smultron.</p>
<p>read on to find out the small steps I had to take.</p>
<p><span id="more-223"></span><br />
<h2>installing smultron</h2>
<p>Actually installing has two steps, the first step is downloading the application and moving it to the desired location. For me that is the applications folder. The second step is installing the command line. Which is as easy as going to the help menu and choosing the menu item <em>Install Command-Line Utility</em>. You can find the download here:</p>
<p><a href="http://smultron.sourceforge.net/">http://smultron.sourceforge.net/</a></p>
<p>After unzipping and moving, open de application and go to the mentioned menu item in the help menu. You have to enter your root password twice, which is explained why (for the application and the man pages). Test if everything went well by typing smultron at the command line. It will open the application. It is more useful if you provide a filename at the command line like the following command. Then that file will be opened in smultron</p>
<p><em># smultron pom.xml</em></p>
<p>Now we have a fast text editor with code highlighting and lot&#8217;s of other functionality. We can open a file using that editor from the command line. To bad there is no subversion integration, but for my purpose the svn command line application is good enough. Than the final requirement, the xml formatting. This is also not included smultron. But smultron does have an easy way of calling command line applications. The next section deals with just that.</p>
<h2>Using Tidy to format xml using smultron</h2>
<p>The mac comes standard with a utility called Tidy. I am not sure if this utility is installed the moment you install the developer tools. If it is not installed you can find more information on <a href="http://tidy.sourceforge.net/docs/Overview.html#help">this page</a>. This is the same page to find information about everything you can do with tidy. I managed to format my files in a reasonable way using the following command</p>
<p><em>tidy &#8211;input-xml true &#8211;output-xml true &#8211;indent yes &#8211;wrap 100 -m pom.xml</em></p>
<p>Next step is to integrate this with smultron. To be able to do this, we need to add a command. Open the command window by going to the menu tools > Handle Commands > Show Commands Window. There is also a shortcut, command + B. I added my command to the Other collection. Select the Other group and push the plus sign at the right of the screen to create a new command. Give the command a new name, I used <em>format xml document</em>. You can also give it a shortcut. The command is the same as before, only we need the full path. We also provide a special parameter from smultron %%p. This parameters copies the complete path when executing the script.</p>
<p><em>/usr/bin/tidy &#8211;input-xml true &#8211;output-xml true &#8211;indent yes &#8211;wrap 100 -m %%p</em></p>
<p>Your command window now should look like the following image. If something is not working, check the command result window. Again using the menu tools, or a shortcut alt+shift+command+B.</p>
<p><img src="http://www.gridshore.nl/wp-content/uploads/screendump-smultron2.png" alt="screendump_smultron.png" border="0" width="651" height="358" /></p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F08%2F30%2Fusing-smultron-as-a-textmate-alternative%2F&amp;title=Using%20smultron%20as%20a%20TextMate%20alternative&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/08/30/using-smultron-as-a-textmate-alternative/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mac osx killer apps (part 2)</title>
		<link>http://www.gridshore.nl/2008/05/12/mac-osx-killer-apps-part-2/</link>
		<comments>http://www.gridshore.nl/2008/05/12/mac-osx-killer-apps-part-2/#comments</comments>
		<pubDate>Mon, 12 May 2008 08:44:29 +0000</pubDate>
		<dc:creator>jettro</dc:creator>
				<category><![CDATA[Mac OSX]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/?p=129</guid>
		<description><![CDATA[<p>Some months ago I wrote an article with my favorite mac osx tools. I am using my mac more and more, with my current employer I can use it for almost everything I want. I do not have ms office, so sometimes I need to use my other laptop. I also use my other [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.gridshore.nl/wp-content/uploads/logo-keycue.png" alt="logo_keycue.png" border="0" width="128" height="128" align="left" />Some months ago I wrote an <a href="http://www.gridshore.nl/2008/01/27/mac-os-x-tools/">article with my favorite mac osx tools</a>. I am using my mac more and more, with my current employer I can use it for almost everything I want. I do not have ms office, so sometimes I need to use my other laptop. I also use my other laptop to run databases etc. Just because 2 Gb ram is not always enough.</p>
<p>Telling you about what I do with my other laptop is not the reason to write this post. I want to share a very cool application that can help you to become a lot more effective during all your tasks. It is an application to help you find and then remember all you shortcuts. It integrates with all the applications I use to show possible shortcuts. It is not a free program, but the value you get for only 20 euro&#8217;s (excluding vat) is very good. Try it yourself, you&#8217;ll be supprised.</p>
<p>Here is the website where you can download a trial<br /><a href="http://www.ergonis.com/products/keycue/">http://www.ergonis.com/products/keycue/</a></p>
<p><span id="more-129"></span></p>
<p>To give you an idea about what it looks like, check the following screendump</p>
<p><img src="http://www.gridshore.nl/wp-content/uploads/snapshot-2008-05-12-10-40-56.jpg" alt="Snapshot 2008-05-12 10-40-56.jpg" border="0" width="600" height="375" align="center" /></p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F05%2F12%2Fmac-osx-killer-apps-part-2%2F&amp;title=Mac%20osx%20killer%20apps%20%28part%202%29&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/05/12/mac-osx-killer-apps-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java 6 for Mac OSX leopard</title>
		<link>http://www.gridshore.nl/2008/05/01/java-6-for-mac-osx-leopard/</link>
		<comments>http://www.gridshore.nl/2008/05/01/java-6-for-mac-osx-leopard/#comments</comments>
		<pubDate>Thu, 01 May 2008 09:28:56 +0000</pubDate>
		<dc:creator>jettro</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[java 6]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/?p=123</guid>
		<description><![CDATA[<p>A month a so a go I wrote this item about java 6 on the mac. It was a beta release an I had some issues with it, but it was workable. Now the real deal is ready to be installed. You can download it form the following url. http://www.apple.com/downloads/macosx/apple/application_updates/javaformacosx105update1.html </p> <p> Running the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.gridshore.nl/wp-content/uploads/logoduke3dprogressionsmall.jpg" alt="logoDuke3DprogressionSmall.jpg" border="0" width="300" height="95" align="left"/>A month a so a go I wrote this item about <a href="http://www.gridshore.nl/2008/03/29/java-on-apples-mac-osx/">java 6 on the mac</a>. It was a beta release an I had some issues with it, but it was workable. Now the real deal is ready to be installed. You can download it form the following url. <br />
<a href="http://www.apple.com/downloads/macosx/apple/application_updates/javaformacosx105update1.html">http://www.apple.com/downloads/macosx/apple/application_updates/javaformacosx105update1.html</a>
</p>
<p>
Running the update gives you two extra options in the java preferences pane. Now you can choose for java 6 (64 bit) but you can also choose for java 5 (64 bit).
</p>
<p>I changed my settings to java 6 in the preference pane and now a java -version results in this:
</p>
<pre>
	java version "1.6.0_05"
	Java(TM) SE Runtime Environment (build 1.6.0_05-b13-120)
	Java HotSpot(TM) 64-Bit Server VM (build 1.6.0_05-b13-52, mixed mode)
</pre>
<p>
You still have to do the trick with the softlink, beware of the order of arguments. In my previous article I made an error. So the correct thing to do would be:
</p>
<pre>
sudo rm CurrentJDK
sudo ln -s 1.6 CurrentJDK
</pre>
<p>
Now you are al set to start using java 6 on the mac. Have fun.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F05%2F01%2Fjava-6-for-mac-osx-leopard%2F&amp;title=Java%206%20for%20Mac%20OSX%20leopard&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/05/01/java-6-for-mac-osx-leopard/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Java on apple&#8217;s Mac OSX</title>
		<link>http://www.gridshore.nl/2008/03/29/java-on-apples-mac-osx/</link>
		<comments>http://www.gridshore.nl/2008/03/29/java-on-apples-mac-osx/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 12:03:15 +0000</pubDate>
		<dc:creator>jettro</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[java 6]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2008/03/29/java-on-apples-mac-osx/</guid>
		<description><![CDATA[<p>When I bought my Mac a few months ago, there was some doubt about the support of apple for java. Java 6 was out for a while and Leopard was still shipped with java 5. There were a lot of blogs and a lot of reactions to the lag of support. For me it [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.gridshore.nl/wp-content/uploads/logoduke3dprogressionsmall.jpg" alt="logoDuke3DprogressionSmall.jpg" border="0" width="300" height="95" align="left" />When I bought my Mac a few months ago, there was some doubt about the support of apple for java. Java 6 was out for a while and Leopard was still shipped with java 5. There were a lot of blogs and a lot of reactions to the lag of support. For me it was not a real problem, java 5 was already a big step forward. Yes I was working for big corporations still doing IBM websphere 5.1. But since I have moved to <a href="http://www.jteam.nl">JTeam</a> (well oke, I am starting this week) I need java 6. I knew there was an opensource initiative to port java 6 to the mac. So I started googling for it. But I stumbled upon this site from apple: <a href="http://developer.apple.com/java/">http://developer.apple.com/java/</a>. There now is a developer release for java 6. I also started reading some other java related material for the mac. In this blog item I want to share some of the stuff I found. I do want to stress that most of the knowledge comes directly from the articles I have found on the mentioned website.  I will try to give references if I can still find them.</p>
<p>read on for the tips.</p>
<p><span id="more-94"></span></p>
<h2>Downloading java 6</h2>
<p>Before you can download the software you need to become a member of the apple developer connection group. Go to the following url to download the java 6 developer preview 9.<br />
<a href="http://developer.apple.com/java/download/">http://developer.apple.com/java/download/</a><br />
The downloaded package contains an installer for the java six library.
</p>
<h2>Learn about basic usage of java on Mac OSX Leopard</h2>
<p>
The best starting point for learning about java on Mac OSX Leopard is this link: <a href="http://developer.apple.com/java/javaleopard.html">http://developer.apple.com/java/javaleopard.html</a>. The mac supports multiple version of java out of the box, after installing java 6 there are versions 3,4,5 and 6 available. You can find them in the following location:
</p>
<pre>
/System/Library/Frameworks/JavaVM.framework/Versions
jettro:Versions jettro$ ls -al
total 56
drwxr-xr-x  14 root  wheel  476 Mar 29 12:20 .
drwxr-xr-x  11 root  wheel  374 Mar 18 19:41 ..
lrwxr-xr-x   1 root  wheel    5 Mar 18 19:41 1.3 -> 1.3.1
drwxr-xr-x   3 root  wheel  102 Sep 29  2007 1.3.1
lrwxr-xr-x   1 root  wheel    5 Nov  4 17:54 1.4 -> 1.4.2
lrwxr-xr-x   1 root  wheel    3 Mar 18 19:41 1.4.1 -> 1.4
drwxr-xr-x   8 root  wheel  272 Aug  5  2007 1.4.2
lrwxr-xr-x   1 root  wheel    5 Nov  4 17:54 1.5 -> 1.5.0
drwxr-xr-x   9 root  wheel  306 Mar 29 11:15 1.5.0
lrwxr-xr-x   1 root  wheel    5 Mar 18 19:41 1.6 -> 1.6.0
drwxr-xr-x  10 root  wheel  340 Mar 29 11:14 1.6.0
drwxr-xr-x   8 root  wheel  272 Mar 18 19:41 A
lrwxr-xr-x   1 root  wheel    1 Mar 18 19:41 Current -> A
lrwxr-xr-x   1 root  wheel    3 Mar 29 11:16 CurrentJDK -> 1.6
</pre>
<p>
As you can see, there are a lot of different folders and soft links here to be found. For me the softlink CurrentJDK is pointing to a different location than the default. I changed it to 1.6. If you have absolute no knowledge of unix, then I recommend you learn or you be very careful. I removed the old virtual link and created a new one. You have to be the super user to be able to do this.
</p>
<pre>
sudo rm CurrentJDK
sudo ln -s 1.6 CurrentJDK
</pre>
<p>
By going up one folder you can get a general idea about the usage of java. The most important is the Home soft link. This is the one you can use as a Java home when you need it.
</p>
<pre>
/System/Library/Frameworks/JavaVM.framework
jettro:JavaVM.framework jettro$ ls -al
total 64
drwxr-xr-x  11 root  wheel   374 Mar 18 19:41 .
drwxr-xr-x  84 root  wheel  2856 Nov  4 17:54 ..
lrwxr-xr-x   1 root  wheel    27 Mar 18 19:41 Classes -> Versions/CurrentJDK/Classes
lrwxr-xr-x   1 root  wheel    24 Nov  4 17:54 CodeResources -> Versions/A/CodeResources
lrwxr-xr-x   1 root  wheel    28 Mar 18 19:41 Commands -> Versions/CurrentJDK/Commands
lrwxr-xr-x   1 root  wheel    24 Mar 18 19:41 Headers -> Versions/Current/Headers
lrwxr-xr-x   1 root  wheel    24 Mar 18 19:41 Home -> Versions/CurrentJDK/Home
lrwxr-xr-x   1 root  wheel    23 Mar 18 19:41 JavaVM -> Versions/Current/JavaVM
lrwxr-xr-x   1 root  wheel    29 Mar 18 19:41 Libraries -> Versions/CurrentJDK/Libraries
lrwxr-xr-x   1 root  wheel    26 Mar 18 19:41 Resources -> Versions/Current/Resources
drwxr-xr-x  14 root  wheel   476 Mar 29 12:20 Versions
</pre>
<p>
Now we made IntelliJ make use of java 6, cool stuff or not. To control the default java versions for applications, applets and java webstart apple has provided us a utility application. Go to /Applications/Utilities/Java Preferences. Using the following screen you can adjust the version of java used by applets and programs.
</p>
<p>
 <img src="http://www.gridshore.nl/wp-content/uploads/screendump-mac-java-settings.png" alt="Screendump_mac_java_settings.png" border="0" width="564" height="735" />
</p>
<p>
Now you can check the version of java by opening a command prompt and typing java -version.
</p>
<pre>
jettro:~ jettro$ java -version
java version "1.6.0_04-dp"
Java(TM) SE Runtime Environment (build 1.6.0_04-dp-b06-110)
Java HotSpot(TM) 64-Bit Server VM (build 1.6.0_04-b12-45-optimized, mixed mode)
</pre>
<p>
So nice java 6 on the mac, bye bye old stuff.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F03%2F29%2Fjava-on-apples-mac-osx%2F&amp;title=Java%20on%20apple%27s%20Mac%20OSX&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/03/29/java-on-apples-mac-osx/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

