<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Guido Kollerie &#187; os x</title>
	<atom:link href="http://kollerie.wordpress.com/category/os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://kollerie.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sat, 02 Jan 2010 10:12:11 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='kollerie.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/7bab15172daa41eaec505a3d495b4781?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Guido Kollerie &#187; os x</title>
		<link>http://kollerie.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kollerie.wordpress.com/osd.xml" title="Guido Kollerie" />
		<item>
		<title>Setting up PostgreSQL on OS X for development</title>
		<link>http://kollerie.wordpress.com/2010/01/02/setting-up-postgresql-on-os-x-for-development/</link>
		<comments>http://kollerie.wordpress.com/2010/01/02/setting-up-postgresql-on-os-x-for-development/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 10:12:11 +0000</pubDate>
		<dc:creator>Guido</dc:creator>
				<category><![CDATA[os x]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[web2py]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://kollerie.wordpress.com/?p=173</guid>
		<description><![CDATA[Currently I&#8217;m working on my third web based project that uses PostgreSQL as its backend. Two of these projects were/are being developed under OS X. Installing PostgreSQL under OS X is a breeze when one uses MacPorts. However I have seen more than one developer being confused about the steps that should follow the installation [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=173&subd=kollerie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Currently I&#8217;m working on my third web based project that uses PostgreSQL as its backend. Two of these projects were/are being developed under OS X. Installing PostgreSQL under OS X is a breeze when one uses <a href="http://www.macports.org/">MacPorts</a>. However I have seen more than one developer being confused about the steps that should follow the installation and the post installation instructions as printed out by the PostgreSQL port.</p>
<p>The installation instructions can be compressed into three steps:</p>
<ol>
<li>Install/update MacPorts</li>
<li>Execute: sudo port install postgresql83 postgresql83-server</li>
<li>Follow post-install instructions as printed out by above command</li>
</ol>
<h2>Trying to connect to PostgreSQL</h2>
<p>Now that the PostgreSQL is installed you might be tempted to connect to it by starting the PostgreSQL interactive terminal. This is what will happen (gkoller is the user I&#8217;m currently logged in as under OS X):<br />
<code><br />
gkoller@Kinchenna $ psql<br />
psql: FATAL:  database "gkoller" does not exist<br />
</code></p>
<p>So by default it looks for a database named identically to the currently logged in user. Should we want to connect to a different database we should specify the database&#8217;s name after the &#8216;psql&#8217; command.<br />
E.g.:<br />
<code><br />
psql hgh<br />
</code></p>
<p>I have chosen the name &#8216;hgh&#8217; as it is the (abbreviated) name of my latest project. The above command will fail with a similar message as the first command. So let&#8217;s create the &#8216;hgh&#8217; database:<br />
<code><br />
gkoller@Kinchenna $ createdb hgh<br />
createdb: database creation failed: ERROR:  role "gkoller" does not exist<br />
</code></p>
<p>Again the error message is clear. The currently logged in user does not have access to (does not have a role with the same name defined in) PostgreSQL. Simply executing a &#8216;createuser gkoller&#8217; will not help as we don&#8217;t have enough privileges to do that. More importantly nor does root. So a &#8217;sudo createuser gkoller&#8217; does not work either. And this is what stumps most developers that try to get PostgreSQL up and running for web development on OS X</p>
<h2>Granting privileges to the currently logged in user</h2>
<p>When PostgreSQL was installed it was configured with one superuser, namely &#8216;postgres&#8217;. Hence adding new users with superuser privileges should be done as user &#8216;postgres&#8217;.<br />
<code><br />
sudo su postgres -c 'createuser -P --superuser gkoller'<br />
</code></p>
<p>Now the currently logged in user has PostgreSQL superuser privileges. This means we don&#8217;t have to use &#8217;sudo&#8217; and &#8217;su&#8217; to executed PostgreSQL commands to create databases, roles, and other users.</p>
<h2>Creating a database and user for project HGH</h2>
<p>Now that I am a super user it is easy to create additional users and databases. For my HGH project I want a separate database and user. I&#8217;ll name them both &#8216;hgh&#8217;.</p>
<p>This is how:<br />
<code><br />
gkoller@Kinchenna $ createuser hgh -P<br />
Enter password for new role: &lt;password&gt;<br />
Enter it again: &lt;password&gt;<br />
Shall the new role be a superuser? (y/n) n<br />
Shall the new role be allowed to create databases? (y/n) y<br />
Shall the new role be allowed to create more new roles? (y/n) n</p>
<p>gkoller@Kinchenna $ createdb -E utf8 -O hgh -W -U hgh hgh<br />
Password: &lt;password&gt;<br />
</code></p>
<h2>Conclusion</h2>
<p>After PostgreSQL installation and post-installation you should create a new superuser named after your OS X login account. This allows for access to PostgreSQL commands without the need to use &#8217;sudo&#8217; and &#8217;su&#8217;.</p>
<p>This is achieved by executing the following command:<br />
<code><br />
sudo su postgres -c 'createuser -P --superuser &lt;your_username&gt;'<br />
</code></p>
<p>Where &lt;your_username&gt; should be replaced with the username of your<br />
OS X account (short) name.</p>
Posted in os x, postgresql, web2py Tagged: osx, postgresql <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kollerie.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kollerie.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kollerie.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kollerie.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kollerie.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kollerie.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kollerie.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kollerie.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kollerie.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kollerie.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=173&subd=kollerie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kollerie.wordpress.com/2010/01/02/setting-up-postgresql-on-os-x-for-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9880a45fd73e78ed1620f626e4797779?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Guido</media:title>
		</media:content>
	</item>
		<item>
		<title>Dvorak keyboard regression fixed in OS X 10.5.7?</title>
		<link>http://kollerie.wordpress.com/2009/05/13/dvorak-keyboard-regression-fixed-in-os-x-10-5-7/</link>
		<comments>http://kollerie.wordpress.com/2009/05/13/dvorak-keyboard-regression-fixed-in-os-x-10-5-7/#comments</comments>
		<pubDate>Wed, 13 May 2009 05:02:14 +0000</pubDate>
		<dc:creator>Guido</dc:creator>
				<category><![CDATA[os x]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[dvorak]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://kollerie.wordpress.com/?p=165</guid>
		<description><![CDATA[Last December Apple introduced the OS X 10.5.6 update. With it a serious regression for users of the Dvorak Simplified keyboard layout. This regression broke many keyboard shortcuts under Carbon based applications. A number of bug reports by different users were raised with Apple and an active thread on Apple&#8217;s forum started.
Despite the impact for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=165&subd=kollerie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Last December Apple introduced the OS X 10.5.6 update. With it a serious regression for users of the <a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard">Dvorak Simplified keyboard layout</a>. This regression broke many keyboard shortcuts under <a href="http://en.wikipedia.org/wiki/Carbon_(computing)">Carbon</a> based applications. A number of bug reports by different users were raised with Apple and an <a href="http://discussions.apple.com/thread.jspa?threadID=1827196&amp;tstart=0">active thread</a> on Apple&#8217;s forum started.</p>
<p>Despite the impact for affected users Apple (typically) never communicated anything else then that they were aware of the issue and working on a fix. They did not bother giving these users, their customers, a timeline in which to expect a fix. Nor did they bother releasing a hot fix to remedy the issue. No these customers had to wait <em>five months</em> till the release of <a href="http://support.apple.com/kb/HT3397">OS X 10.5.7</a> for the regression to be supposedly fixed.</p>
<p>I say <em>supposedly</em> as I won&#8217;t be upgrading to <a href="http://support.apple.com/kb/HT3397">OS X 10.5.7</a> immediately. I have learned my lesson. I know Apple&#8217;s disregard for its customers. I know the time <a href="http://kollerie.wordpress.com/2009/01/15/solved-os-x-1056-update-broke-eclipse-shortcuts/">I have spent on finding a workaround</a> and I don&#8217;t want to be pulled through something like that again. I depend on my Apple computers to get my work done and I have learned that that dependancy is an unreliable one. I have learned that Apple doesn&#8217;t take regressions seriously. Because that&#8217;s what this was; a regression. Not some bug introduced in a newly released feature. No they broke something that used to be working and that I was depending on for my day-to-day work and they didn&#8217;t take it seriously.</p>
<p>So I leave it up to other Apple users to try out <a href="http://support.apple.com/kb/HT3397">OS X 10.5.7</a> and to report any regressions they might find. I leave it up to Apple to not take these users seriously. In the mean time I&#8217;ll stay on OS X 10.5.6 with my workaround and keep wondering what I&#8217;m given Apple my money for.</p>
Posted in os x Tagged: apple, dvorak, eclipse, os x <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kollerie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kollerie.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kollerie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kollerie.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kollerie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kollerie.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kollerie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kollerie.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kollerie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kollerie.wordpress.com/165/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=165&subd=kollerie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kollerie.wordpress.com/2009/05/13/dvorak-keyboard-regression-fixed-in-os-x-10-5-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9880a45fd73e78ed1620f626e4797779?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Guido</media:title>
		</media:content>
	</item>
		<item>
		<title>Solved?: OS X 10.5.6 update broke Eclipse shortcuts</title>
		<link>http://kollerie.wordpress.com/2009/01/15/solved-os-x-1056-update-broke-eclipse-shortcuts/</link>
		<comments>http://kollerie.wordpress.com/2009/01/15/solved-os-x-1056-update-broke-eclipse-shortcuts/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 22:57:55 +0000</pubDate>
		<dc:creator>Guido</dc:creator>
				<category><![CDATA[os x]]></category>
		<category><![CDATA[dvorak]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://kollerie.wordpress.com/?p=127</guid>
		<description><![CDATA[I think I have found a solution to the serious regression with regards to Dvorak keyboard shortcuts in Carbon based applications that Apple introduced with the OS X 10.5.6 update. This weekend I might follow up with a more thorough write up. For now just the solution will have to do as I am short [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=127&subd=kollerie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I think I have found a solution to the <a href="http://kollerie.wordpress.com/2008/12/18/os-x-1056-update-broke-eclipse-shortcuts/">serious regression with regards to Dvorak keyboard shortcuts in Carbon based applications</a> that Apple introduced with the OS X 10.5.6 update. This weekend I might follow up with a more thorough write up. For now just the solution will have to do as I am short on time.</p>
<p>Unfortunately the solution requires you to have access to an OS X 10.5.5 installation which not everyone might have at their disposal. It basically boils down to replacing the 10.5.6 installation&#8217;s /System/Library/Frameworks/Carbon.framework with that of the 10.5.5 version. I haven&#8217;t tested it extensively. In fact I have only confirmed that cmd-c and cmd-v finally work again in Eclipse.</p>
<p>The 10.5.6 installation lives in:<br />
<code><br />
/System/Library/Frameworks/Carbon.framework<br />
</code></p>
<p>The 10.5.5 installation is mounted from an external hard drive at:<br />
<code><br />
/Volumes/Bak MacBook/System/Library/Frameworks/Carbon.framework<br />
</code></p>
<p>These are the steps I performed:<br />
<code><br />
$ cd /System/Library/Frameworks<br />
$ sudo cp -Rpv Carbon.framework ~/Temp/<br />
$ sudo rm -rf Carbon.framework<br />
$ sudo cp -Rpv /Volumes/Bak MacBook/System/Library/<br />
Frameworks/Carbon.framework .<br />
</code></p>
<p>BTW the 10.5.6 installation is a PPC one and the 10.5.5 is an Intel one. That doesn&#8217;t seem to matter as, as far as I can tell, all the files in the Carbon.framework directory are resource files which are platform independent.</p>
<p>Be careful though. I have barely tested this and hence it might have serious unwanted side effects.</p>
<p><span style="color:#ff0000;">Update:</span>  As it turns out some things do break when reverting to  the 10.5.5 version of the Carbon.framework. For instance pressing ENTER in Finder does not allow you to rename a file or directory anymore. And according to Apple forum user <a href="http://discussions.apple.com/message.jspa?messageID=8874003#8874003">LEgregius</a> it also breaks something in iPhoto. To work around these issues LEgregius has a short shell script that switches between the two versions of Carbon.framework when starting Eclipse. I have adjusted this script slightly to make the switch conditional:</p>
<p><code><br />
#!/bin/sh<br />
FRMW_DIR=/System/Library/Frameworks<br />
CARBON_FRMW=${FRMW_DIR}/Carbon.framework</p>
<p>if [ -e $CARBON_FRMW -a -e ${CARBON_FRMW}.1055 ]<br />
then<br />
    sudo mv $CARBON_FRMW ${CARBON_FRMW}.1056 &amp;&amp;<br />
    sudo mv ${CARBON_FRMW}.1055 $CARBON_FRMW &amp;&amp;<br />
    echo "Switched Carbon.framework 10.5.6 -&gt; 10.5.5"<br />
fi<br />
open -W /Applications/eclipse/Eclipse.app <br />
if [ -e $CARBON_FRMW -a -e ${CARBON_FRMW}.1056 ]<br />
then<br />
    sudo mv $CARBON_FRMW ${CARBON_FRMW}.1055 &amp;&amp;<br />
    sudo mv ${CARBON_FRMW}.1056 $CARBON_FRMW &amp;&amp;<br />
    echo "Switched Carbon.framework 10.5.5 -&gt; 10.5.6"<br />
fi<br />
</code></p>
Posted in os x Tagged: dvorak, eclipse, os x <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kollerie.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kollerie.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kollerie.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kollerie.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kollerie.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kollerie.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kollerie.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kollerie.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kollerie.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kollerie.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=127&subd=kollerie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kollerie.wordpress.com/2009/01/15/solved-os-x-1056-update-broke-eclipse-shortcuts/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9880a45fd73e78ed1620f626e4797779?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Guido</media:title>
		</media:content>
	</item>
		<item>
		<title>Continued 3: OS X 10.5.6 update broke Eclipse shortcuts</title>
		<link>http://kollerie.wordpress.com/2009/01/08/continued-3-os-x-1056-update-broke-eclipse-shortcuts/</link>
		<comments>http://kollerie.wordpress.com/2009/01/08/continued-3-os-x-1056-update-broke-eclipse-shortcuts/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 06:43:38 +0000</pubDate>
		<dc:creator>Guido</dc:creator>
				<category><![CDATA[os x]]></category>
		<category><![CDATA[dvorak]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://kollerie.wordpress.com/?p=110</guid>
		<description><![CDATA[Finally got a response from Apple in response to my bug report. According to Apple: 
This is a known issue, which is currently being investigated by engineering.
No hint as to when we can expect a fix though.
Posted in os x Tagged: dvorak, eclipse, os x      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=110&subd=kollerie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Finally got a response from Apple in response to my bug report. According to Apple: </p>
<blockquote><p>This is a known issue, which is currently being investigated by engineering.</p></blockquote>
<p>No hint as to when we can expect a fix though.</p>
Posted in os x Tagged: dvorak, eclipse, os x <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kollerie.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kollerie.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kollerie.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kollerie.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kollerie.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kollerie.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kollerie.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kollerie.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kollerie.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kollerie.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=110&subd=kollerie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kollerie.wordpress.com/2009/01/08/continued-3-os-x-1056-update-broke-eclipse-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9880a45fd73e78ed1620f626e4797779?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Guido</media:title>
		</media:content>
	</item>
		<item>
		<title>Continued 2: OS X 10.5.6 update broke Eclipse shortcuts</title>
		<link>http://kollerie.wordpress.com/2008/12/30/continued-2-os-x-1056-update-broke-eclipse-shortcuts/</link>
		<comments>http://kollerie.wordpress.com/2008/12/30/continued-2-os-x-1056-update-broke-eclipse-shortcuts/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 10:26:13 +0000</pubDate>
		<dc:creator>Guido</dc:creator>
				<category><![CDATA[os x]]></category>
		<category><![CDATA[dvorak]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://kollerie.wordpress.com/?p=76</guid>
		<description><![CDATA[Almost two weeks after the release of the OS X 10.5.6 update Apple still hasn&#8217;t provided a fix for the serious regression with regards to Dvorak keyboard shortcuts in Carbon based applications. Worse they haven&#8217;t even indicated that they&#8217;re working on it or provided a timeline for a fix or temporary workaround. I did open [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=76&subd=kollerie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Almost two weeks after the release of the OS X 10.5.6 update Apple still hasn&#8217;t provided a fix for the <a href="http://kollerie.wordpress.com/2008/12/18/os-x-1056-update-broke-eclipse-shortcuts/">serious regression with regards to Dvorak keyboard shortcuts in Carbon based applications</a>. Worse they haven&#8217;t even indicated that they&#8217;re working on it or provided a timeline for a fix or temporary workaround. I did open a bug report with Apple on <a href="https://bugreport.apple.com">https://bugreport.apple.com</a>. However as these bug reports are not public it is impossible for others that have been affected by this bug to subscribe to it. Furthermore it arguably makes it difficult for Apple to track how many people have been affected by this issue. Although the thread <a href="http://discussions.apple.com/thread.jspa?threadID=1827196&amp;tstart=0">10.5.6 breaks Dvorak keyboard shortcuts in Eclipse</a> on the Apple Support Forums makes it clear this issue is causing problems for many people using just as many different applications.</p>
<p>With Apple not taking their responsibilities I figured I&#8217;d give it another try to find a workaround. Problem is that I am no OS X developer and though I do know the basic difference between Carbon and Cocoa applications I know next to nothing on OS X application development. So all I have to go on is my intuition and hints I find on the Web.</p>
<p>With some of the keyboard  shortcuts working (cmd-s) and others not (cmd-c, cmd-v) I still suspect the culprit to be with an incorrect keyboard mapping instead of some logic error in a piece framework code. I my <a href="http://kollerie.wordpress.com/2008/12/26/continued-os-x-1056-update-broke-eclipse-shortcuts/">previous post</a> I created a new Dvorak  mapping and installed it. This didn&#8217;t solve the problem as it didn&#8217;t change any of the mappings specified in the Carbon Framework. At least that&#8217;s what I suspect the reason to be.</p>
<p>So is there a way to adjust the mappings in the Carbon Framework? It seems there is. Hinted by references to HIToolbox in the <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=258877">Eclipse bug report on this issue</a>, and a path to this part of the Carbon Framework mentioned on <a href="http://wordherd.com/keyboards/">http://wordherd.com/keyboards/</a> I figured I had to replace the Dvorak mapping in:<br />
<code><br />
/System/Library/Frameworks/Carbon.framework/Frameworks\<br />
/HIToolbox.framework/Resources/English.lproj/Localized.rsrc<br />
</code></p>
<p>Using <a href="http://resknife.sourceforge.net/">ResKnife</a>, an open source resource editor, I had a look in Localized.rsrc and did indeed found a Dvorak KCHR resource (with ID 16300). With the form on <a href="http://wordherd.com/keyboards/">http://wordherd.com/keyboards/</a> I created a layout.r using the following settings:</p>
<p><img class="aligncenter size-full wp-image-78" title="settings" src="http://kollerie.files.wordpress.com/2008/12/settings.png" alt="settings" /></p>
<p>In the resulting layout.r file I changed the type &#8220;uchr&#8221; to &#8220;KCHR&#8221; and its ID to 16300. Then I made a backup copy of Localized.rsrc and executed:</p>
<p><code><br />
gkoller@Kardamom (593) $ /Developer/Tools/Rez -append -useDF -o \<br />
/System/Library/Frameworks/Carbon.framework/Frameworks\<br />
/HIToolbox.framework/Resources/English.lproj/Localized.rsrc \<br />
layout.r<br />
</code></p>
<p>Another look with RezKnife revealed that the old Dvorak mapping had indeed been replaced with the new one. I restarted my computer, fired up Eclipse, and &#8230;. *damn* it still did <strong>not</strong> work.</p>
<p>For all I know my attempts to find a workaround are completely misdirected and naive, but I just had to try as this issue is driving me nuts. Maybe this post might give others a few hints and put them on the right track to find a solution, or more likely prevent them from wasting time on similar futile attempt. However it would be much better for Apple to step in and take their responsibility in fixing this regression!</p>
Posted in os x Tagged: dvorak, eclipse, os x <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kollerie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kollerie.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kollerie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kollerie.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kollerie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kollerie.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kollerie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kollerie.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kollerie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kollerie.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=76&subd=kollerie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kollerie.wordpress.com/2008/12/30/continued-2-os-x-1056-update-broke-eclipse-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9880a45fd73e78ed1620f626e4797779?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Guido</media:title>
		</media:content>

		<media:content url="http://kollerie.files.wordpress.com/2008/12/settings.png" medium="image">
			<media:title type="html">settings</media:title>
		</media:content>
	</item>
		<item>
		<title>Continued: OS X 10.5.6 update broke Eclipse shortcuts</title>
		<link>http://kollerie.wordpress.com/2008/12/26/continued-os-x-1056-update-broke-eclipse-shortcuts/</link>
		<comments>http://kollerie.wordpress.com/2008/12/26/continued-os-x-1056-update-broke-eclipse-shortcuts/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 19:46:45 +0000</pubDate>
		<dc:creator>Guido</dc:creator>
				<category><![CDATA[os x]]></category>
		<category><![CDATA[dvorak]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://kollerie.wordpress.com/?p=72</guid>
		<description><![CDATA[Tried to find a workaround for the nasty Dvorak keyboard mapping bug introduced by Apple with their 10.5.6 update of OS X. I had the idea that if I could create a keyboard mapping for Dvorak myself, this might &#8216;trick&#8217; OS X accepting the proper keyboard shortcuts for Carbon based apps. Looking for a tool [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=72&subd=kollerie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Tried to find a workaround for the <a href="http://kollerie.wordpress.com/2008/12/18/os-x-1056-update-broke-eclipse-shortcuts/">nasty Dvorak keyboard mapping bug</a> introduced by Apple with their 10.5.6 update of OS X. I had the idea that if I could create a keyboard mapping for Dvorak myself, this might &#8216;trick&#8217; OS X accepting the proper keyboard shortcuts for Carbon based apps. Looking for a tool to create such a mapping I came across the following website:</p>
<p><a href="http://wordherd.com/keyboards/">http://wordherd.com/keyboards/</a></p>
<p>Using the standard settings it was easy to create a new Dvorak layout, save it as &#8220;Dvorak Workaround.keylayout&#8221; in my Library/Keyboard Layouts directory, and select it from the Input Menu in the International System Preferences menu. Alas, this did <strong>not</strong> resolve the problem.</p>
<p>This might have worked if problem was in the Apple default Dvorak keyboard layout itself. However if that was the case keyboard shortcuts would have been messed up in Cocoa based applications as well. It was a long shot to begin with, but I had to try something as it is really impacting my ability to do any programming in Eclipse on my Mac.</p>
<p>It might be due to the holidays or the relatively low number of users impacted by this bug (who uses Dvorak?), but I find Apple slow to respond to this serious regression.</p>
Posted in os x Tagged: dvorak, eclipse, os x <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kollerie.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kollerie.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kollerie.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kollerie.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kollerie.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kollerie.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kollerie.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kollerie.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kollerie.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kollerie.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=72&subd=kollerie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kollerie.wordpress.com/2008/12/26/continued-os-x-1056-update-broke-eclipse-shortcuts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9880a45fd73e78ed1620f626e4797779?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Guido</media:title>
		</media:content>
	</item>
		<item>
		<title>OS X 10.5.6 update broke Eclipse shortcuts</title>
		<link>http://kollerie.wordpress.com/2008/12/18/os-x-1056-update-broke-eclipse-shortcuts/</link>
		<comments>http://kollerie.wordpress.com/2008/12/18/os-x-1056-update-broke-eclipse-shortcuts/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 20:24:28 +0000</pubDate>
		<dc:creator>Guido</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[dvorak]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://kollerie.wordpress.com/?p=66</guid>
		<description><![CDATA[This evening I installed the PyDev plugin for Eclipse to write a little Python code. Seemed to go well until I noticed that some of my keyboard shortcuts didn&#8217;t work anymore in Eclipse. Most notably copy and paste (CMD-C and CMD-V). As this was working before I figured the PyDev plugin to be the culprit. However, in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=66&subd=kollerie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This evening I installed the <a href="http://pydev.sourceforge.net/">PyDev</a> plugin for <a href="http://www.eclipse.org/">Eclipse</a> to write a little Python code. Seemed to go well until I noticed that some of my keyboard shortcuts didn&#8217;t work anymore in Eclipse. Most notably copy and paste (CMD-C and CMD-V). As this was working before I figured the PyDev plugin to be the culprit. However, in a version of Eclipse without the PyDev plugin the issue was still present. </p>
<p>Some Googling turned up a post on StackOverflow titled <a href="http://stackoverflow.com/questions/370189/eclipse-keyboard-shortcuts-broken-in-osx-1056">Eclipse keyboard shortcuts broken in OSX 10.5.6</a>. Turns out that the OS X update to 10.5.6 I did a couple of days ago broke the keyboard short cuts for Eclipse. But only if you&#8217;re using <a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard">Dvorak</a> keyboard layout. Guess what I am using? Right, Dvorak!</p>
<p>I knew I should have waited a little longer with the update. I normally do. Not sure why I didn&#8217;t this time. Sincerely hope Apple comes out with a fix quickly.</p>
Posted in java, os x, python Tagged: dvorak, eclipse, os x <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kollerie.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kollerie.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kollerie.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kollerie.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kollerie.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kollerie.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kollerie.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kollerie.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kollerie.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kollerie.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=66&subd=kollerie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kollerie.wordpress.com/2008/12/18/os-x-1056-update-broke-eclipse-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9880a45fd73e78ed1620f626e4797779?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Guido</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple Command Line Date/Time Calculations</title>
		<link>http://kollerie.wordpress.com/2008/10/08/simple-command-line-datetime-calculations/</link>
		<comments>http://kollerie.wordpress.com/2008/10/08/simple-command-line-datetime-calculations/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 19:12:17 +0000</pubDate>
		<dc:creator>Guido</dc:creator>
				<category><![CDATA[os x]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://kollerie.wordpress.com/?p=19</guid>
		<description><![CDATA[Being a contractor I have to sent my customers an invoice every month. With regards to payment terms I generally settle on a pretty standard 30 day credit period. However sometimes the customer and I settle on a slightly different credit period. Regardless of the credit period I always have to think carefully what the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=19&subd=kollerie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Being a contractor I have to sent my customers an invoice every month. With regards to payment terms I generally settle on a pretty standard 30 day credit period. However sometimes the customer and I settle on a slightly different credit period. Regardless of the credit period I always have to think carefully what the final due date will be. It&#8217;s nothing complicated, the calculation being a simple modulo operation, but I always have to determine the number of days in a given month in order to use the correct divisor.</p>
<p>Eg. given today&#8217;s date, October 8th, 2008, a credit date of 45 days results in a due date of:<br />
<code><br />
(8 + 45) % 31 = 22<br />
</code><br />
November 22nd, 2008. The 31 being the number of days in October.</p>
<p>However I recently found out that the date command under OS X can do this even more easily:<br />
<code><br />
$ date -v +45d<br />
Sat Nov 22 21:11:56 CET 2008<br />
</code></p>
<p>The parameter <code>-v</code> is the adjust parameter. It not only handles days as in the example above, but all the other units of time as well. Simple and convenient.</p>
Posted in os x Tagged: os x, unix <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kollerie.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kollerie.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kollerie.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kollerie.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kollerie.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kollerie.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kollerie.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kollerie.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kollerie.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kollerie.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=19&subd=kollerie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kollerie.wordpress.com/2008/10/08/simple-command-line-datetime-calculations/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9880a45fd73e78ed1620f626e4797779?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Guido</media:title>
		</media:content>
	</item>
		<item>
		<title>More unhappy Leopard users</title>
		<link>http://kollerie.wordpress.com/2008/06/14/more-unhappy-leopard-users/</link>
		<comments>http://kollerie.wordpress.com/2008/06/14/more-unhappy-leopard-users/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 08:31:34 +0000</pubDate>
		<dc:creator>Guido</dc:creator>
				<category><![CDATA[os x]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://kollerie.wordpress.com/?p=15</guid>
		<description><![CDATA[More people unhappy with Leopard&#8217;s quality. The announcement of Snow Leopard is encouraging were it not for its requirement of an Intel processor. I guess Leopard 10.5, in all its lack of quality, will be the last major release for my iMac G5.  
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=15&subd=kollerie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>More <a href="http://www.macworld.com/article/133956/2008/06/hate_leopard.html">people</a> unhappy with Leopard&#8217;s quality. The announcement of <a href="http://www.apple.com/macosx/snowleopard/">Snow Leopard</a> is encouraging were it not for its <a href="http://www.macrumors.com/2008/06/11/mac-os-x-snow-leopard-drops-powerpc-support/">requirement of an Intel processor</a>. I guess Leopard 10.5, in all its lack of quality, will be the last major release for my iMac G5. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kollerie.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kollerie.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kollerie.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kollerie.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kollerie.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kollerie.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kollerie.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kollerie.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kollerie.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kollerie.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kollerie.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kollerie.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=15&subd=kollerie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kollerie.wordpress.com/2008/06/14/more-unhappy-leopard-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9880a45fd73e78ed1620f626e4797779?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Guido</media:title>
		</media:content>
	</item>
		<item>
		<title>Why do I even bother using Apple Mail?</title>
		<link>http://kollerie.wordpress.com/2008/06/11/why-do-i-even-bother-using-apple-mail/</link>
		<comments>http://kollerie.wordpress.com/2008/06/11/why-do-i-even-bother-using-apple-mail/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 19:20:33 +0000</pubDate>
		<dc:creator>Guido</dc:creator>
				<category><![CDATA[os x]]></category>
		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://kollerie.wordpress.com/?p=13</guid>
		<description><![CDATA[This happens when I archive an IMAP mailbox from Apple Mail as an mbox and then reimport it again under a new account:

Process:         Mail [318]
Path:            /Applications/Mail.app/Contents/MacOS/Mail
Identifier:      com.apple.mail
Version:     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=13&subd=kollerie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This happens when I archive an IMAP mailbox from Apple Mail as an mbox and then reimport it again under a new account:<br />
<code><br />
Process:         Mail [318]<br />
Path:            /Applications/Mail.app/Contents/MacOS/Mail<br />
Identifier:      com.apple.mail<br />
Version:         3.3 (924)<br />
Build Info:      Mail-9240000~1<br />
Code Type:       PPC (Native)<br />
Parent Process:  launchd [79]</code></p>
<p><code>Date/Time:       2008-06-11 21:06:57.158 +0200<br />
OS Version:      Mac OS X 10.5.3 (9D34)<br />
Report Version:  6</p>
<p></code></p>
<p><code>Exception Type:  EXC_BAD_ACCESS (SIGBUS)<br />
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000010<br />
Crashed Thread:  14<br />
</code><br />
Apple Mail can&#8217;t even import what it archived. Madness!</p>
<p>Many years ago I was able to force an incorrectly formatted mbox into a correctly formatted one using &#8216;formail&#8217;. Not sure if the mbox created by Apple Mail was incorrectly formatted, but I gave it a try anyway:</p>
<p><code> formail -ds &lt;archived.mbox &gt;&gt;fixed_archived.mbox</code></p>
<p>No luck; Apple Mail still keeps crashing. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kollerie.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kollerie.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kollerie.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kollerie.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kollerie.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kollerie.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kollerie.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kollerie.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kollerie.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kollerie.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kollerie.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kollerie.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kollerie.wordpress.com&blog=3487099&post=13&subd=kollerie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kollerie.wordpress.com/2008/06/11/why-do-i-even-bother-using-apple-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9880a45fd73e78ed1620f626e4797779?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Guido</media:title>
		</media:content>
	</item>
	</channel>
</rss>