<?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>humandoing software &#187; mac</title>
	<atom:link href="http://blog.humandoing.net/tag/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.humandoing.net</link>
	<description>better software for everyone</description>
	<lastBuildDate>Fri, 06 Jan 2012 16:17:20 +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>Email From Bill Gates</title>
		<link>http://blog.humandoing.net/2008/06/24/email-from-bill-gates/</link>
		<comments>http://blog.humandoing.net/2008/06/24/email-from-bill-gates/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 03:19:00 +0000</pubDate>
		<dc:creator>Daniel Wintschel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[lifeingeneral]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://humandoing.net/past/2008/6/25/email_from_bill_gates/</guid>
		<description><![CDATA[There is an awesome article over at seattlepi.com containing the text of an email written by Mr. Gates regarding his experience trying to download and install MovieMaker on his computer. The email really cracked me up, and I think it&#8217;s worth a read. It&#8217;s probably also worth noting, that instead of all that rig-a-ma-roll, one [...]]]></description>
			<content:encoded><![CDATA[<p>There is an awesome article over at seattlepi.com containing the text of <a href="http://blog.seattlepi.nwsource.com/microsoft/archives/141821.asp">an email written by Mr. Gates</a> regarding his experience trying to download and install <a href="http://en.wikipedia.org/wiki/Windows_Movie_Maker">MovieMaker</a> on his computer. The email really cracked me up, and I think it&#8217;s worth a read.</p>
<p>It&#8217;s probably also worth noting, that instead of all that rig-a-ma-roll, one could just <a href="http://apple.com/getamac">buy a Mac</a> (which happens to include iLife, which includes iMovie). The Surgeon General agrees that my strategy would keep your blood pressure a lot lower, <em>and</em> increase your life expectancy by about 10 years.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.humandoing.net/2008/06/24/email-from-bill-gates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X, MacPorts, ImageMagick and RMagick</title>
		<link>http://blog.humandoing.net/2007/09/05/mac-os-x-macports-imagemagick-and-rmagick/</link>
		<comments>http://blog.humandoing.net/2007/09/05/mac-os-x-macports-imagemagick-and-rmagick/#comments</comments>
		<pubDate>Thu, 06 Sep 2007 06:05:00 +0000</pubDate>
		<dc:creator>Daniel Wintschel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[rmagick]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://humandoing.net/past/2007/9/6/mac_os_x_macports_imagemagick/</guid>
		<description><![CDATA[In the process of setting up my new dev machine, I decided I was going to try using MacPorts to install all of the dev-type-software instead of installing into /usr/local. James Duncan Davidson has a great overview article (that needs no further explaining from myself), titled Sandboxing Rails With MacPorts. Another similar article can be [...]]]></description>
			<content:encoded><![CDATA[<p>In the process of setting up my new dev machine, I decided I was going to try using MacPorts to install all of the dev-type-software instead of installing into <code>/usr/local</code>.</p>
<p>James Duncan Davidson has a great overview article (that needs no further explaining from myself), titled <a href="http://duncandavidson.com/archives/164">Sandboxing Rails With MacPorts</a>. Another similar article can be found <a href="http://paulsturgess.co.uk/articles/show/46-using-macportsdarwinports-to-install-ruby-on-rails-mysql-subversion-capistrano-and-mongrel-on-mac-os-x">here</a>.</p>
<p>My problem is that I work on a lot of projects that use ImageMagick / RMagick, and that&#8217;s not discussed here.</p>
<p>No worries, I&#8217;ll install &#8216;em and give it a go:</p>
<pre><code>sudo port intall ImageMagick<br/>sudo gem install rmagick</code></pre>
<p><span class="caps">CRAP</span>! I don&#8217;t know what happens for you, but ImageMagick installs perfectly for me, and then RMagick craps out and dies something like this:</p>
<pre><code>/opt/local/lib/ruby/gems/1.8/gems/rmagick-1.15.9/./lib/rvg/misc.rb:321:in `get_type_metrics': <br/>unable to read font `(null)' (Magick::ImageMagickError)<br/> from /opt/local/lib/ruby/gems/1.8/gems/rmagick-1.15.9/./lib/rvg/misc.rb:321:in `render'<br/> from /opt/local/lib/ruby/gems/1.8/gems/rmagick-1.15.9/./lib/rvg/misc.rb:696:in `text'</code></pre>
<p>Now, for the solution I am going to give all credit to <a href="http://mentalized.net/about/">Jakob Skjerning</a>, because I found the solution on <a href="http://mentalized.net/journal/2007/08/05/os_x_macports_imagemagick_and_rmagick/">his site</a> after doing some Googling.</p>
<p>Do this instead:</p>
<pre><code>sudo port install ImageMagick<br/>sudo port install rb-rmagick</code></pre>
<p>Done. Works. Thank goodness.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.humandoing.net/2007/09/05/mac-os-x-macports-imagemagick-and-rmagick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple&#8217;s Migration Assistant</title>
		<link>http://blog.humandoing.net/2007/09/05/apples-migration-assistant/</link>
		<comments>http://blog.humandoing.net/2007/09/05/apples-migration-assistant/#comments</comments>
		<pubDate>Thu, 06 Sep 2007 04:43:00 +0000</pubDate>
		<dc:creator>Daniel Wintschel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://humandoing.net/past/2007/9/6/apples_migration_assistant/</guid>
		<description><![CDATA[I went out and picked up a new MacBook Pro yesterday, after the display issue on my wife&#8217;s iMac got so bad that finally the machine has become unusable. We&#8217;re gonna do a little swap &#8211; she&#8217;ll take my MacBook, I get the MBP, and the iMac is going to get thrown off a bridge [...]]]></description>
			<content:encoded><![CDATA[<p>I went out and picked up a new MacBook Pro yesterday, after the display issue on my wife&#8217;s iMac got so bad that finally the machine has become unusable. We&#8217;re gonna do a little swap &#8211; she&#8217;ll take my MacBook, I get the <span class="caps">MBP</span>, and the iMac is going to get thrown off a bridge or something.</p>
<p>What I wanted to comment about here is Apple&#8217;s <a href="http://en.wikipedia.org/wiki/Migration_Assistant">Migration Assistant</a> &#8211; which absolutely and undisputedly rocks my little world.</p>
<p>After pondering the long hours I was in for getting all my apps reinstalled, settings, passwords, serial numbers for apps, bla bla bla up and copied and running onto the new Mac &#8211; <a href="http://waxcathatic.org">Nick</a> pointed me to the Migration Assistant (which I&#8217;m not sure I even really knew about) and off I went. Plugged in my male-to-male FireWire cable into both machines, and booted the MacBook into Target Disk Mode (hold down &#8216;T&#8217; while powering up until the FireWire symbol displays on the screen). The Migration Assistant asked me what users I wanted, if I wanted the Applications as well, and blammo. I went into the hot tub for a while, and when I got back I had my user, files, documents, library, settings, applications und alles.</p>
<p>So far there are only two apps that didn&#8217;t come over seamlessly, and those would be <a href="http://parallels.com">Parallels</a> and <a href="https://mozy.com/?code=EXD5HB">Mozy</a> (which, if you haven&#8217;t tried, is the best backup software I&#8217;ve ever laid my hands on), both of which I needed to reinstall, but after a bit of fiddling are working fine again. All told this thing saved me hours, and I&#8217;m sure I&#8217;ll use it again on my next Mac purchase.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.humandoing.net/2007/09/05/apples-migration-assistant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

