<?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>Dead Ink Vinyl &#187; osx</title>
	<atom:link href="http://blog.deadinkvinyl.com/tag/osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.deadinkvinyl.com</link>
	<description>Musings of David L Kinney</description>
	<lastBuildDate>Wed, 24 Feb 2010 05:33:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.deadinkvinyl.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Dead Ink Vinyl &#187; osx</title>
		<link>http://blog.deadinkvinyl.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.deadinkvinyl.com/osd.xml" title="Dead Ink Vinyl" />
	<atom:link rel='hub' href='http://blog.deadinkvinyl.com/?pushpress=hub'/>
		<item>
		<title>CouchDB on MacOSX Leopard</title>
		<link>http://blog.deadinkvinyl.com/2008/07/12/couchdb-on-macosx-leopard/</link>
		<comments>http://blog.deadinkvinyl.com/2008/07/12/couchdb-on-macosx-leopard/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 02:39:13 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[couchdb]]></category>
		<category><![CDATA[daemon]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[db]]></category>
		<category><![CDATA[documentoriented]]></category>
		<category><![CDATA[dscl]]></category>
		<category><![CDATA[launchctl]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[sudo]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/?p=125</guid>
		<description><![CDATA[I got CouchDB up and running as a service on my MBP OSX Leopard this past Monday. It wasn&#8217;t as straight-forward as I&#8217;d hoped, so I thought I&#8217;d share my process for the benefit of others. Installing CouchDB I installed CouchDB from source. This requires the Leopard development tools (Xcode) and MacPorts. I expect all [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=125&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I got CouchDB up and running as a service on my MBP OSX Leopard this past Monday. It wasn&#8217;t as straight-forward as I&#8217;d hoped, so I thought I&#8217;d share my process for the benefit of others.</p>
<h3 style="margin-top:1em;">Installing CouchDB</h3>
<p>I installed CouchDB from source. This requires the Leopard development tools (Xcode) and <a href="http://www.macports.org/">MacPorts</a>. I expect all developers to have Xcode installed and most developers to have MacPorts installed, so I won&#8217;t detail those steps here. </p>
<p>First, install CouchDB&#8217;s dependencies using MacPorts:</p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>sudo port install icu erlang spidermonkey</code></pre>
<p><a href="http://incubator.apache.org/couchdb/downloads.html">Download CouchDB</a> and extract it. This is standard configure, make, make install territory here:</p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>./configure
make &#38;&#38; sudo make install</code></pre>
<p>Wasn&#8217;t that easy?</p>
<h3 style="margin-top:1em;">Creating a couchdb System Account</h3>
<p>Find a user number that is available. To see a list of what numbers are already in use, run:</p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>dscl . -list /Users UniqueID | awk '{print $2}' | sort -n</code></pre>
<p>Now find a group number that is available.  To see a list of what numbers are already in use, run:</p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>dscl . -list /Groups PrimaryGroupID | awk '{print $2}' | sort -n</code></pre>
<p>On my system, number 103 was available for both a user number and a group number. The rest of this article assumes you are using 103 as well. </p>
<p>The following commands create the group and the user and set the user&#8217;s home directory to the CouchDB lib folder. </p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>sudo dseditgroup -o create -i 103 -r "CouchDB Users" couchdb
sudu dscl . -create /Users/couchdb
sudu dscl . -create /Users/couchdb UniqueID 103
sudu dscl . -create /Users/couchdb UserShell /bin/bash
sudu dscl . -create /Users/couchdb RealName "CouchDB Administrator"
sudu dscl . -create /Users/couchdb NFSHomeDirectory \
        /usr/local/var/lib/couchdb
sudu dscl . -create /Users/couchdb PrimaryGroupID 103
sudu dscl . -create /Users/couchdb Password *</code></pre>
<p>Finally, we give the couchdb user ownership of the CouchDB lib and log directories:</p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>sudo chown -R couchdb:couchdb /usr/local/var/&lt;strong&gt;lib&lt;/strong&gt;/couchdb
sudo chown -R couchdb:couchdb /usr/local/var/&lt;strong&gt;log&lt;/strong&gt;/couchdb</code></pre>
<p><strong>DONE!</strong> Now you can launch CouchDB as the couchdb user instead of root. </p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>sudo -u couchdb couchdb</code></pre>
<h3 style="margin-top:1em;">Running as a Service</h3>
<p>To control CouchDB using launchctl, I needed to add the appropriate PATH information to CouchDB&#8217;s Launch Daemon plist so that gawk is found. Unfortunately, I couldn&#8217;t find a solution to edit the plist in-place as a privileged user, so I copied the file to the /var/tmp directory without root privileges so that I could update the copy. </p>
<p>Creating a copy of the plist and opening it for editing is done by:</p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>cp /usr/local/Library/LaunchDaemons/org.apache.couchdb.plist \
        /var/tmp/org.apache.couchdb.plist
open /var/tmp/org.apache.couchdb.plist</code></pre>
<p>In the Property List Editor that opens, follow this steps:</p>
<ol>
<li>Open Root &rarr; EnvironmentVariables </li>
<li>Click on Add Child</li>
<li><strong>Name:</strong> PATH</li>
<li><strong>Value:</strong> /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/local/bin:/opt/local/sbin</li>
<li>File &rarr; Save</li>
<li>Quit Property List Editor</li>
</ol>
<p>Then copy the updated plist over the original plist:</p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>sudo cp /var/tmp/org.apache.couchdb.plist \
        /usr/local/Library/LaunchDaemons/org.apache.couchdb.plist </code></pre>
<p>Now CouchDB can be controlled and monitored by the standard Leopard daemon manager:</p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>sudo launchctl load \
        /usr/local/Library/LaunchDaemons/org.apache.couchdb.plist </code></pre>
<h3 style="margin-top:1em;">Launch CouchDB on Startup</h3>
<p>To automatically launch on start up, run</p>
<pre style="background-color:#edf5fa;color:#120a05;padding:1em;"><code>sudo ln -s /usr/local/Library/LaunchDaemons/org.apache.couchdb.plist \
        /Library/LaunchDaemons/org.apache.couchdb.plist</code></pre>
<p><strong>Congratulations!</strong> You have CouchDB running as a system service that will start when you boot your Mac. Let the fun commence.  </p>
<h3 style="margin-top:1em;">I&#8217;d Like to Thank the Academy&#8230;</h3>
<p>I&#8217;d like to thank the following sites and resources for providing me enough information to piece together the process:</p>
<ul>
<li><a href="http://svn.apache.org/repos/asf/incubator/couchdb/trunk/README">CouchDB Source Code: README</a></li>
<li><a href="http://www.sysadminschronicles.com/articles/2007/10/19/creating_a_system_account_in">SysAdmin&#8217;s Chronicles: Creating a System Account in Mac OS X 10.5 Leopard</a></li>
<li><a href="http://evang.eli.st/blog/2007/10/28/installing-postgres-8-2-on-leopard-includes-system-account" title="includes system account!">evang.eli.st: Installing Postgres 8.2 on Leopard</a></li>
</ul>
<p>I particularly recommend the evang.eli.st article, as it explains the <code>dscl</code> command, which may be an unfamiliar account management tool.</p>
<p>I should point out that evang.eli.st also has a <a href="http://evang.eli.st/blog/2007/9/3/building-and-installing-couchdb-on-os-x">complete write-up</a> on how to install CouchDB on OSX. That walk-through is almost a year old, though, and entails editing the Makefile&#8212;which doesn&#8217;t sit well with me. However, where Leopard departs from standard UNIX behavior, I cease being an aficionado, so his tweaks may be important in ways I haven&#8217;t yet discovered.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/125/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/125/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=125&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2008/07/12/couchdb-on-macosx-leopard/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>WWDC Prediction Outcomes</title>
		<link>http://blog.deadinkvinyl.com/2008/06/09/wwdc-prediction-outcomes/</link>
		<comments>http://blog.deadinkvinyl.com/2008/06/09/wwdc-prediction-outcomes/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 00:33:00 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[dotmac]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[predictions]]></category>
		<category><![CDATA[results]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[wwdc]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/?p=121</guid>
		<description><![CDATA[WWDC isn&#8217;t over yet, but we learned a lot today. Let&#8217;s see how I did with my predictions. Category My Prediction Correct? iPhone 3G Yes Correct GPS Yes Correct Faster Processor No Correct Video Conferencing No Correct Thicker (face-to-back) Yes Correct1 iPhone mini Yes Incorrect Higher Pricing Yes Incorrect SquirrelFish Yes ? iPhone widgets No [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=121&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>WWDC isn&#8217;t over yet, but we learned a lot today. Let&#8217;s see how I did with my predictions.</p>
<table>
<tr>
<td> <strong>Category</strong> </td>
<td> <strong>My Prediction</strong> </td>
<td> <strong>Correct?</strong> </td>
</tr>
<tr>
<td> <em>iPhone</em> </td>
</tr>
<tr>
<td> 3G </td>
<td> Yes </td>
<td> Correct </td>
</tr>
<tr>
<td> GPS </td>
<td> Yes </td>
<td> Correct </td>
</tr>
<tr>
<td> Faster Processor </td>
<td> No </td>
<td> Correct </td>
</tr>
<tr>
<td> Video Conferencing </td>
<td> No </td>
<td> Correct </td>
</tr>
<tr>
<td> Thicker (face-to-back) </td>
<td> Yes </td>
<td> Correct<sup><a href="#fn1">1</a></sup> </td>
</tr>
<tr>
<td> iPhone mini </td>
<td> Yes </td>
<td> <em>Incorrect</em> </td>
</tr>
<tr>
<td> Higher Pricing </td>
<td> Yes </td>
<td> <em>Incorrect</em> </td>
</tr>
<tr>
<td> SquirrelFish </td>
<td> Yes </td>
<td> ? </td>
</tr>
<tr>
<td> iPhone widgets </td>
<td> No </td>
<td> Correct<sup><a href="#fn2">2</a></sup> </td>
</tr>
<tr>
<td> <em>Apple Software</em> </td>
</tr>
<tr>
<td> OSX 10.6 Will Be Announced </td>
<td> Yes </td>
<td> Correct </td>
</tr>
<tr>
<td> OSX 10.6 Named Snow Leopard </td>
<td> Yes </td>
<td> Correct </td>
</tr>
<tr>
<td> OSX 10.6 Specifically be for Atom Devices </td>
<td> No </td>
<td> Correct </td>
</tr>
<tr>
<td> OSX 10.6 OSX 10.6 Will Drop PPC Support </td>
<td> Yes </td>
<td> ? </td>
</tr>
<tr>
<td> OSX 10.6 Will Drop Carbon Support </td>
<td> Yes </td>
<td> ? </td>
</tr>
<tr>
<td> New / Improved / Revamped .Mac Services </td>
<td> Yes </td>
<td> Correct </td>
</tr>
<tr>
<td> .Mac Rebranding </td>
<td> Yes </td>
<td> Correct </td>
</tr>
<tr>
<td> <em>Apple Hardware</em> </td>
</tr>
<tr>
<td> New Apple Device </td>
<td> No </td>
<td> Correct </td>
</tr>
<tr>
<td> New MBP Designs </td>
<td> Yes </td>
<td> <em>Incorrect</em> </td>
</tr>
<tr>
<td> New Displays </td>
<td> No </td>
<td> Correct </td>
</tr>
<tr>
<td> <em>Pie In the Sky Prediction</em> </td>
</tr>
<tr>
<td> OSX 10.6 Adds Resolution Independence </td>
<td> Yes </td>
<td> ? </td>
</tr>
</table>
<p>Outcome: 13 correct, 3 incorrect, and 4 unknowns. So my prediction accuracy is 65%-85%, depending on how the unknowns turn out. Not bad, given that 10% of my predictions were complete guesses. </p>
<p><sup>1</sup> The original iPhone was 11.6mm thick, according to <a href="http://support.apple.com/specs/iphone/iPhone.html">Apple&#8217;s support site</a> and the new iPhone is 12.3mm according to the new <a href="http://www.apple.com/iphone/specs.html">iPhone site</a>.</p>
<p><sup>2</sup> No discussion of a DashCode for iPhone or HTML+JavaScript+CSS application development solution was stated during the keynote. If it comes to my attention that widget iPhone development is possible, I will toggle my answer&#8217;s correctness. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/121/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/121/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=121&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2008/06/09/wwdc-prediction-outcomes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>WWDC Predictions</title>
		<link>http://blog.deadinkvinyl.com/2008/06/08/wwdc-predictions/</link>
		<comments>http://blog.deadinkvinyl.com/2008/06/08/wwdc-predictions/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 06:31:42 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[carbon]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[g5]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[objectivec]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[powerpc]]></category>
		<category><![CDATA[predictions]]></category>
		<category><![CDATA[stevejobs]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[touch]]></category>
		<category><![CDATA[wwdc]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/?p=120</guid>
		<description><![CDATA[Welcome to my first publicized predictions for an Apple conference. Preamble To understand my predictions for WWDC 2008, you need to understand where I think Apple is going in the next 24 months. To view the iPhone as a stand-alone product is to miss the point. The point of the iPhone is to create a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=120&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to my first publicized predictions for an Apple conference. </p>
<h3>Preamble</h3>
<p>To understand my predictions for WWDC 2008, you need to understand where I think Apple is going in the next 24 months. To view the iPhone as a stand-alone product is to miss the point. The point of the iPhone is to create a development ecosystem around Objective-C and Cocoa. This ecosystem will have spill-over benefits for the Mac, since more developers will be familiar with the platform&#8217;s development technologies, but the real point is to create a large population of developers already familiar with application development for Apple&#8217;s next device: a touch tablet. This is why Apple is suddenly pushing &#8220;OSX&#8221; instead of &#8220;Mac OSX&#8221; and &#8220;iPhone OS&#8221;&#8212;Apple wants to impress upon developers that the skills for developing on any OSX device carry over to the other Apple devices as well. </p>
<p>With that out of the way, on to my predictions!</p>
<h3>Next-Generation iPhone</h3>
<h4>3G: Yes</h4>
<p>This seems like a given. </p>
<h4>GPS: Yes</h4>
<p>With all of the concentration on 3G capabilities, discussion about GPS seems to have died down a bit. While GPS technology takes away space and power from other solutions apple could provide in the iPhone&#8217;s form factor (such as video conferencing), I think that improved positional capabilities will create many 3rd party developer opportunities. </p>
<h4>Faster Processor: No</h4>
<p>I think there are so many other bells and whistles going into this revision that Apple will be happy to use a processor with the same speed and power consumption as the current model. </p>
<h4>Video Conferencing: No</h4>
<p>With 3G network speeds, this becomes possible and it <em>is</em> an intriguing possibility. But supporting (1) video capture, (2) video encoding before sending, (3) bi-directional communication over 3G (or WiFi), (4) video decoding what you&#8217;re friend is sending you, and (5) continual screen updates to display the video&#8212;all at the same time&#8212;will simply kill the battery life. </p>
<h4>Thicker (face-to-back): Yes</h4>
<p>Since the current iPhone is a 1.0 product, I&#8217;m willing to believe that Apple learned a lot during its development and&#8212;knowing what they know now&#8212;could redesign the current iPhone to be smaller with lower power consumption. Starting from that assumption and adding 3G, GPS, and a larger battery to the mix, I believe that the new iPhone will have to be more voluminous. It can&#8217;t get much wider without becoming uncomfortable to hold, and it&#8217;s current height seems about right, so I believe that the phone will grow a little thicker. </p>
<h4>iPhone mini: Yes</h4>
<p>Take the current 8GB iPhone, make it a little smaller, and offer it in a variety of colors for $350. Offer a 4GB model for $250. Pesto! You have a device that may attract the interest of my wife. Since I didn&#8217;t understand the point of the iPod mini until I witnessed my wife&#8217;s reaction, I&#8217;ve come to trust her judgement over mine for products Apple targets at non-technophiles. </p>
<h4>Higher pricing: Yes</h4>
<p>Components: there are more of them and they are more expensive. With the addition of the iPhone mini at a lower price point, Apple will have a little breathing room on the high end. I expect the 8GB model to retain its current pricing and the addition of a 16GB model for $100 more. </p>
<h4>SquirrelFish: Yes</h4>
<p>Squirrelfish helps the iPhone in two ways. First, Squirrelfish is fast, provides users with an improved Web browsing experience. Second, it is more efficient&#8212;getting the same end result accomplished in fewer clock cycles, so it requires less power to run JavaScript. </p>
<h4>iPhone widgets: No</h4>
<p>In the <a href="http://www.thetalkshow.net/media/the-talk-show-episode-21.mp3">latest episode</a> of <a href="http://www.thetalkshow.net/">The Talk Show</a>, Dan and John kick around the idea that iPhone widget applications may make a comeback: applications for the iPhone written entirely in HTML+JavaScript+CSS, facilitated by a <a href="http://developer.apple.com/tools/dashcode/">DashCode</a> development tool specific to the iPhone. There is a lot of sense to this from the perspective that it would invite everyone skilled in Web design to be an iPhone developer. However, as I stated in my preamble, I believe Apple can use the popularity of the iPhone as a means to push Objective-C and Cocoa, thus building a larger community of developers skilled in the technologies that underlie all of Apple&#8217;s &#8220;software-expandable&#8221; offerings. </p>
<h3>Apple Software</h3>
<h4>OSX 10.6 Will Be Announced: Yes</h4>
<p>Steve is quoted (somewhere&#8212;sorry, no link) as stating that he wanted to be releasing updates to Leopard on a more frequent schedule than was indicated by the delay between 10.4 and 10.5. Announcing 10.6 at WWDC with it&#8217;s release due at MacWorld seems about right to me. </p>
<h4>10.6 Named Snow Leopard: Yes</h4>
<p>Sure, why not? </p>
<h4>10.6 Will Specifically be for Atom Devices: No</h4>
<p>This was posited by <a href="http://www.tinyscreenfuls.com/2008/06/why-i-think-apple-os-x-106-snow-leopard-is-for-upcoming-atom-based-devices/">Josh Bancroft</a> and I think he&#8217;s generally right that OSX is being pushed as its own brand to allow for OSX on a new device, but I don&#8217;t think it will be announced at WWDC. </p>
<h4>OSX 10.6 Will Drop PPC Support: Yes</h4>
<p>This completely sucks for PowerMac G5 owners. You&#8217;re the losers of an unexpectedly rapid and successful migration to Intel. As a life-long loser myself, I sympathize. </p>
<h4>OSX 10.6 Will Drop Carbon Support: Yes</h4>
<p>Apple wanted to drop Carbon support long ago, but the old-time Apple developers complained and&#8212;probably more importantly&#8212;Microsoft and Adobe were unable (and perhaps unwilling) to migrate off their Carbon code bases. Reading the tea leaves, Carbon&#8217;s now a goner. Apple used the Intel migration as leverage to push developers toward Cocoa, then Leopard didn&#8217;t include support for 64-bit Carbon. If the rumors that 10.6 will be 100% 64-bit are true, that rules out Carbon. Good bye.</p>
<h4>New / Improved / Revamped .Mac Services: Yes</h4>
<p>Please! I&#8217;ve had .Mac service since I purchased my first Mac and it was fine for a while&#8212;I didn&#8217;t mind the premium price at first because it &#8220;just worked&#8221; and that&#8217;s what I wanted. But each of the last three years I&#8217;ve been really close to canceling my membership and Apple would announce something that would make .Mac just <em>barely</em> worthwhile enough to continue holding onto. This year, though, if I&#8217;m not blown away, I&#8217;m canceling it. Or whatever they will call it.</p>
<h4>.Mac Rebranding: Yes</h4>
<p>It&#8217;s hard to sell something called &#8221;.Mac&#8221; to a person whose only Apple product is an iPhone. Explaining that .Mac doesn&#8217;t require a Mac must be a nightmare. </p>
<h3>Apple Hardware</h3>
<h4>New Apple Device: No</h4>
<p>I believe that 2009 will be the year of the tablet, so no new devices this year.</p>
<h4>New MBP Designs: Yes</h4>
<p>I&#8217;m just guessing here. </p>
<h4>New Displays: No</h4>
<p>I think that the displays will be revamped when the Mac Pro is redesigned. </p>
<h3>Pie-In-The-Sky Prediction</h3>
<p>Every good WWDC prognosticator needs to go out on a limb and make an off-the-wall or out-of-left-field prediction. </p>
<h4>OSX 10.6 Adds Resolution Independence</h4>
<p>Despite the rumors that 10.6 will be focused on stability and performance instead of features, I think that this will be on the short list of enhancements.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/120/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/120/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=120&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2008/06/08/wwdc-predictions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.thetalkshow.net/media/the-talk-show-episode-21.mp3" length="28418941" type="audio/mpeg" />
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
		<item>
		<title>Dead Hard Drive [Updated]</title>
		<link>http://blog.deadinkvinyl.com/2006/03/12/dead-hard-drive-updated/</link>
		<comments>http://blog.deadinkvinyl.com/2006/03/12/dead-hard-drive-updated/#comments</comments>
		<pubDate>Mon, 13 Mar 2006 05:16:00 +0000</pubDate>
		<dc:creator>dlkinney</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[battlestargalactica]]></category>
		<category><![CDATA[diskutility]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[superduper]]></category>

		<guid isPermaLink="false">http://deadinkvinyl.wordpress.com/2006/03/12/dead-hard-drive-updated/</guid>
		<description><![CDATA[Ugh. I lost my PB&#8217;s hard drive an hour ago. It wasn&#8217;t recoverable. OSX froze, which I got miffed about, but when I rebooted the system it shutdown after a long time on the cycling progress circle. Repeated attempts resulted in the same behavior. I pulled out my backup external drive, booted from it, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=66&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ugh.  I lost my PB&#8217;s hard drive an hour ago.  It wasn&#8217;t recoverable.  OSX froze, which I got miffed about, but when I rebooted the system it shutdown after a long time on the cycling progress circle.  Repeated attempts resulted in the same behavior.  I pulled out my backup external drive, booted from it, and ran Disk Utility.  It tried to repair one file that was reported to be 155TB in size (by setting it to be 0 bytes in size), but that generated a hardware error.  The drive could not be erased, either &#8212; another hardware error.  Finally, I tried repartitioning the drive.  That fixed it.  Of course, all my data is gone.  My last full disk backup was at the end of Februrary.  I have a recent-enough backup of my documents and of my mail, but I&#8217;ve forever lost some really great photos I took on Friday from my flight lesson and I&#8217;ll have to re-purchase some content from iTunes.  Of course, I don&#8217;t know <strong>which</strong> content from iTunes was purchased in the last three weeks, except for the Battlestar Galactica episodes.  </p>
<p>Grumble, grumble.</p>
<p>So, I&#8217;m going to SuperDuper! my backup boot drive to my laptop&#8217;s hard drive, then use Backup.app to recover my email, which I had <em>just</em> backed up minutes before the crash.  Wish me luck.</p>
<p><strong>Updated 13-Mar-2006 12:15am:</strong>  Apple&#8217;s Backup.app recovered my documents and mail without a hitch.  Except that, apparently, it made an incremental backup of my mail to DVD even though it could have made a full backup (it was an empty disk), so I was prompted for the previous DVD backup I&#8217;d made to get the process started.  I had it, no biggie, but still: <strong>feh!</strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/deadinkvinyl.wordpress.com/66/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/deadinkvinyl.wordpress.com/66/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/deadinkvinyl.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/deadinkvinyl.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/deadinkvinyl.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/deadinkvinyl.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/deadinkvinyl.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/deadinkvinyl.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/deadinkvinyl.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/deadinkvinyl.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/deadinkvinyl.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/deadinkvinyl.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/deadinkvinyl.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/deadinkvinyl.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/deadinkvinyl.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/deadinkvinyl.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.deadinkvinyl.com&amp;blog=2908484&amp;post=66&amp;subd=deadinkvinyl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.deadinkvinyl.com/2006/03/12/dead-hard-drive-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0439564df67efd24620e338a78a8d921?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dlkinney</media:title>
		</media:content>
	</item>
	</channel>
</rss>
