<?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>Cranky Bit &#187; Mac OS X</title>
	<atom:link href="http://blog.crankybit.com/tags/apple/osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.crankybit.com</link>
	<description>Take a byte out of tech!</description>
	<lastBuildDate>Wed, 09 Mar 2011 17:23:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Avoiding the Password Prompt for SSH</title>
		<link>http://blog.crankybit.com/avoiding-the-password-prompt-for-ssh/</link>
		<comments>http://blog.crankybit.com/avoiding-the-password-prompt-for-ssh/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 16:22:11 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/?p=311</guid>
		<description><![CDATA[It&#8217;s handy to establish an SSH key between machines so that SSH-related commands don&#8217;t prompt you for a password. This is handy to quickly SSH into another machine, and it&#8217;s even more handy when setting up SSH commands in automated scripts. For instance, you may want to execute some rsync statements in a script that [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s handy to establish an SSH key between machines so that SSH-related commands don&#8217;t prompt you for a password. This is handy to quickly SSH into another machine, and it&#8217;s even more handy when setting up SSH commands in automated scripts. For instance, you may want to execute some rsync statements in a script that runs on a regular basis. It&#8217;s better to have an established SSH key between the two machines than to have a password embedded in the script.</p>
<p>I recently reinstalled the OS on one of my Macs, and I&#8217;ve got backup scripts on my CentOS Linux box that use rsync to back up some pertinent data, so I had to reestablish the SSH key between the machines and had a hard time remembering how to do it. So this time I&#8217;m documenting what I had to re-learn.</p>
<p>First of all, there&#8217;s a <a href="http://nixcraft.com/1196-post2.html" target="_blank">great post over at nixCraft</a> that basically explains how to do it. But allow me to explain more thoroughly, ahem, dumbed down to my level. </p>
<p>The key is remembering which machine is filling which role when you&#8217;re reading the instructions. I&#8217;ll call them the &#8220;Acting&#8221; machine&#8211;the one who is taking action and performing a command, let&#8217;s say an rsync command&#8211;and the &#8220;Target&#8221; machine&#8211;the one who is being acted upon. In my case, the Linux server is the acting machine performing the rsync command, and my Mac is the target.</p>
<p>The process is simple. On the &#8220;Target&#8221; machine, generate a key, and then give that key to the &#8220;Acting&#8221; machine, which effectively gives it &#8220;permission&#8221; to login without the need to supply username/password credentials.</p>
<p>So, from the &#8220;Target&#8221; machine, in this case, my Mac, type the following command:</p>
<p>ssh-keygen -t rsa</p>
<p>This will generate a couple files that serve as a key for accessing the Mac. The ssh-keygen command may ask you where to store the key and what password to use. Just hit enter to use the default path and a blank password.</p>
<p>Next, still from the &#8220;Target&#8221; machine (my Mac), type:</p>
<p>ssh <em>MyUsername@ActingServer</em> &#8221;mkdir .ssh&#8221;<br />
scp .ssh/id_rsa.pub <em>MyUsername@ActingServer</em>:.ssh/authorized_keys2</p>
<p>In the code above, <em>MyUsername@ActingServer</em> would be the username and address (for instance, perhaps the IP address) of the &#8220;Acting&#8221; machine, in my case, the Linux server. In the first line, you&#8217;re just creating the .ssh directory if it doesn&#8217;t exist. In the second line, you&#8217;re copying the key you generated from the &#8220;Target&#8221; machine to the &#8220;Acting&#8221; machine, or from the Mac to the Linux server.  Note that the scp command will ask for the password to the <em>MyUsername</em> account because it is connecting to that server to send it the key.</p>
<p>Voile. As if by magic, the &#8220;Acting&#8221; machine should now be able to SSH into the &#8220;Target&#8221; machine without a password prompt. Correspondingly, you should be able to perform rsync and other SSH commands without a password prompt. Please note, however, that <em>this is only a one-way key.</em><em> </em>We only gave my Linux server permission to access my Mac.</p>
<p><strong>What if I want my Mac to similarly login to the server without a password prompt?</strong> In that case, the Mac and the server have effectively switched roles; the Mac is now the &#8220;Acting&#8221; machine and the server is the &#8220;Target&#8221; machine, so we just have to repeat the process from the other direction. Generate a key from the server and send it to the Mac. At that point, both machines will be able to access each other without a password prompt. </p>
<p><strong>What if I have multiple &#8220;Targets&#8221; that the &#8220;Acting&#8221; machine will connect to?</strong> For instance, perhaps I have multiple Macs, and the Linux server is running scripts on all of them. When you&#8217;re sending the key to the &#8220;Acting&#8221; server with the scp command, use a different name for each key file, don&#8217;t overwrite the same file each time! So in the example code above, we&#8217;re sending the key as &#8220;authorized_keys2&#8243;. When repeating this process for multiple targets, send the keys as &#8220;authorized_keys3&#8243;, and so forth.</p>
<p>Hopefully this will clear up some confusion regarding this process.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/avoiding-the-password-prompt-for-ssh/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Radio Silence</title>
		<link>http://blog.crankybit.com/radio-silence-wwdc-2008/</link>
		<comments>http://blog.crankybit.com/radio-silence-wwdc-2008/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 14:03:09 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[IT Industry]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Macintosh]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/?p=302</guid>
		<description><![CDATA[Like I have done in the past, I am declaring radio silence today. I will not be check my feeds, look at any Apple news sites, or check my personal email until I can view Apple&#8217;s video stream of the WWDC keynote.  You can view the MacRumors WWDC 2008 Spoiler Free news page if you [...]]]></description>
			<content:encoded><![CDATA[<p>Like I have <a href="http://blog.crankybit.com/radio-silence/">done in the past</a>, I am declaring radio silence today. I will not be check my feeds, look at any Apple news sites, or check my personal email until I can view Apple&#8217;s video stream of the <a href="http://developer.apple.com/wwdc/" target="_blank">WWDC</a> keynote. </p>
<p>You can view the <a href="http://www.macrumors.com/2008/06/02/wwdc-2008-spoiler-free-keynote-stream/" target="_blank">MacRumors WWDC 2008 Spoiler Free news page</a> if you want to do the same.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/radio-silence-wwdc-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone AIR?</title>
		<link>http://blog.crankybit.com/iphone-air/</link>
		<comments>http://blog.crankybit.com/iphone-air/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 22:16:03 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[General Web Dev.]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[iPod/iPhone]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/iphone-air/</guid>
		<description><![CDATA[So, with Apple preparing to hold an iPhone Software Roadmap event this Thursday, people are eagerly anticipating news about how Apple will handle an SDK for the iPhone environment. Many developers were frustrated&#8211;and many web developers had our curiosities pleasantly piqued&#8211;when Apple initially announced that &#8220;software&#8221; would be available for the iPhone in the form [...]]]></description>
			<content:encoded><![CDATA[<p>So, with Apple preparing to hold an <a href="http://www.appleinsider.com/articles/08/02/27/apple_to_hold_iphone_software_roadmap_media_event_next_week.html" target="_blank">iPhone Software Roadmap event</a> this Thursday, people are eagerly anticipating news about how Apple will handle an SDK for the iPhone environment.</p>
<p>Many developers were frustrated&#8211;and many web developers had our curiosities pleasantly piqued&#8211;when Apple initially announced that &#8220;software&#8221; would be available for the iPhone in the form of Ajax web applications. Naturally, many of the disappointed folks were irritated because the web platform is something that they&#8217;re entirely unfamiliar with, probably having backgrounds in Objective C or something similar; probably a minority were disappointed because their target application legitimately could not be powered by HTML and Ajax.</p>
<p>That said, it is indeed a very thought-provoking concept: Using web technology as your application environment. As most web developers will attest to, there honestly isn&#8217;t that much that a typical application does that cannot be accomplished with web technology. With the advent of Ajax frameworks, applications built with web technology can have very similar responsiveness and dynamics of a &#8220;classic&#8221; application. Especially when you remove the burden of cross-browser compatibility, in the iPhone&#8217;s case.</p>
<p>But with the iPhone/iPod Touch scenario, it is irritating that the application <em>has</em> to reside in Safari and <em>has</em> to be loaded off the web. It almost feels as if Apple was trying to push something that wasn&#8217;t&#8230;quite&#8230;ready. Something like <a href="http://www.adobe.com/go/air" target="_blank">AIR</a>!</p>
<p>AIR accomplishes everything that Apple was suggesting for the iPhone environment, but for the desktop. Use web technology, but write a &#8220;compiled&#8221;, stand-alone application that really doesn&#8217;t even have to use the web. Use HTML. Use Ajax. Use Flex and Flash. Have a nice encapsulated application on your desktop. Especially when you throw the Flash technology into the platform, it is now a very capable environment for a large variety of applications, without being constrained to the browser. Wouldn&#8217;t it be great if that same cross-platform environment, AIR, worked on the iPhone as well?</p>
<p>Oops, Flash technology isn&#8217;t currently supported by the iPhone. That is actually another source of contention. And the AIR environment <u>does</u> lose some of its punch without Flash and Flex, even though its HTML/Ajax implementation can do a very decent job with most typical applications.</p>
<p>Steve Jobs has <a href="http://www.apple.com/pr/library/2007/06/11iphone.html" target="_blank">made it clear</a> that he likes the idea of web technology powering iPhone apps. Now, consider some of the  facts. Apple announces the iPhone SDK will be released in February, and then fails to deliver. Meanwhile, Flash still isn&#8217;t found on the iPhone, and Adobe &#8220;invents the wheel&#8221; by getting web technology to drive native apps through its work with AIR. Is there a common theme with these events? Perhaps something like: <em><strong>Are Apple and Adobe working together to get the much-needed Flash technology onto the iPhone and, subsequently, releasing an SDK that uses AIR technology, with hooks into the iPhone system just like AIR currently has hooks into the Linux, Windows, and Mac OS X desktop operating systems? </strong></em></p>
<p>It wouldn&#8217;t be the first time Apple has had to wait for its partners, or take the heat for them. For instance, Apple has clearly been taking a lot of heat for many factors of the iPhone that are clearly not in Apple&#8217;s interest, but in AT&amp;T&#8217;s.</p>
<p>And this scenario would fit the circumstances around Adobe&#8217;s development of AIR. Adobe has been working on AIR since well before the iPhone was released, but AIR wasn&#8217;t officially released until <em>February 25, 2008. </em>Even if Apple and Adobe <u>were</u> working closely together, there just hasn&#8217;t been enough time for AIR to get released <em>and </em>hooks to be developed to provide iPhone-specific functionality in AIR. Adobe has understandably concerned itself with its own business first. With that done, attention can turn to Apple to support them in concluding their own business.</p>
<p>Of course, this prediction is a reflection of my own desires as much as it fits the circumstances. As a developer that uses Adobe technology including Flex and AIR, and an Apple enthusiast for more than 20 years, I would love to see things happen this way. Undoubtedly we will have a clearer idea of Apple&#8217;s iPhone development roadmap after this Thursday.</p>
<p>As if the thought of an &#8220;iPhone AIR&#8221; isn&#8217;t confusing enough. <img src='http://blog.crankybit.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/iphone-air/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PrintJobMgr Uses 99% CPU</title>
		<link>http://blog.crankybit.com/printjobmgr-uses-99-cpu/</link>
		<comments>http://blog.crankybit.com/printjobmgr-uses-99-cpu/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 10:11:05 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/printjobmgr-uses-99-cpu/</guid>
		<description><![CDATA[I couldn&#8217;t understand why everything on my new iMac started creeping really slow. The last straw was when iTunes started skipping. I opened up the Activity Monitor in the Utilities folder, set it to view &#8220;All Processes&#8221;, and noticed that a process named &#8220;PrintJobMgr&#8221; was using a lot of processor time and took up over [...]]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t understand why everything on my new iMac started creeping really slow. The last straw was when iTunes started skipping. </p>
<p>I opened up the Activity Monitor in the Utilities folder, set it to view &#8220;All Processes&#8221;, and noticed that a process named &#8220;PrintJobMgr&#8221; was using a lot of processor time and took up over 600MB. </p>
<p>As it turns out, this has been <a href="http://discussions.apple.com/thread.jspa?messageID=5907048">discussed on Apple&#8217;s forums</a>. It seems to be happening to people when there is a print job that never was printed, and thus is continually waiting in the print queue. I&#8217;m not sure how, but this is exactly what happened on my iMac, and deleting the print job in the queue fixed the problem.</p>
<p>I&#8217;m hoping Apple fixes that one soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/printjobmgr-uses-99-cpu/feed/</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
		<item>
		<title>Ubuntu v7.10 on Parallels</title>
		<link>http://blog.crankybit.com/ubuntu-v710-on-parallels/</link>
		<comments>http://blog.crankybit.com/ubuntu-v710-on-parallels/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 21:28:24 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/ubuntu-v710-on-parallels/</guid>
		<description><![CDATA[You&#8217;ll get display server issues if you try to install Ubuntu v7.10 in Parallels. But the Parallels Tools CD does have drivers to fix those problems. This blog post, Ubuntu 7.10 Install Guide, helps you get past the display server issues long enough to get the OS installed, and then gives instructions on how to [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ll get display server issues if you try to install Ubuntu v7.10 in Parallels. But the Parallels Tools CD does have drivers to fix those problems. This blog post, <a href="http://infosonic.wordpress.com/2007/10/21/ubuntu-710-install-guide-parallels-macbook-pro/">Ubuntu 7.10 Install Guide</a>, helps you get past the display server issues long enough to get the OS installed, and then gives instructions on how to get the Parallels Tools installed. </p>
<p>It worked great. Instructions were very clear and the process was mildly simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/ubuntu-v710-on-parallels/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dead Leopard</title>
		<link>http://blog.crankybit.com/dead-leopard/</link>
		<comments>http://blog.crankybit.com/dead-leopard/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 17:14:58 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/dead-leopard/</guid>
		<description><![CDATA[This Mac user is particularly cranky today. I got my copy of Mac OS 10.5 Leopard like a good little Mac user and installed it on my aluminum 24-inch iMac via the Archive and Install option. I then went through the process of creating a new user account, copying over my bookmarks, mailboxes, address book, [...]]]></description>
			<content:encoded><![CDATA[<p>This Mac user is particularly cranky today. I got my copy of Mac OS 10.5 Leopard like a good little Mac user and installed it on my aluminum 24-inch iMac via the Archive and Install option. I then went through the process of creating a new user account, copying over my bookmarks, mailboxes, address book, calendar, files, etc., as well as reinstalling all of my apps.</p>
<p>My OCD felt much better having a nice, clean, system. After reinstalling the iLife apps from my System Restore discs, there were some updates available, so I started the system update process. Halfway through, my system took a hard freeze and I couldn&#8217;t do anything. I even connected via SSH from another machine and tried to kill potential suspects that might have been causing the freeze. Nothing. I tried to reboot from the command line. Nothing.</p>
<p>With no other recourse, I did the unthinkable: I held down the power button. Not a terribly big deal, right?</p>
<p>Upon rebooting, I was welcomed with the registration window that appears the first time you boot up a new Mac. &#8220;Weird, but that&#8217;s fine,&#8221; I thought. I filled it out. Upon finishing, the window disappeared and reappeared, asking me to fill it out all over again. And again. And again.</p>
<p>I&#8217;m completely locked out of my computer because I can&#8217;t get past that registration window, and don&#8217;t know what to do without reinstalling the OS <em>again. </em></p>
<p>Here&#8217;s one cranky Leopard user. At least, I wish I could use it.</p>
<p><strong>UPDATE: </strong>This issue is <a href="http://docs.info.apple.com/article.html?artnum=306965" target="_blank">confirmed</a> on Apple&#8217;s support page. I discovered this from Ars Technica&#8217;s Infinite Loop blog (ironic, isn&#8217;t it?) in the <a href="http://arstechnica.com/journals/apple.ars/2007/11/06/imac-1-2-1-update-for-tiger-users-fixes-leopard-install-issue" target="_blank">iMac 1.2.1 Update</a> article.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/dead-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Infinite Loop of AIR</title>
		<link>http://blog.crankybit.com/an-infinite-loop-of-air/</link>
		<comments>http://blog.crankybit.com/an-infinite-loop-of-air/#comments</comments>
		<pubDate>Thu, 11 Oct 2007 23:15:30 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[General Web Dev.]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/an-infinite-loop-of-air/</guid>
		<description><![CDATA[Okay, sorry for the dorky play on words. In addition to AIR getting an article from Oliver Goldman over at Dr. Dobb&#8217;s, the AIR app called Spaz&#8211;one of the AIR Developer Derby winners&#8211;and its developer, Ed Finkler, got some attention via an interview over at Ars Technica&#8217;s Infinite Loop journal. Spaz gets more time in the [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, sorry for the dorky play on words. In addition to AIR getting an <a target="_blank" href="http://www.ddj.com/architect/202401085">article</a> from Oliver Goldman over at Dr. Dobb&#8217;s, the AIR app called <a target="_blank" href="http://funkatron.com/spaz">Spaz</a>&#8211;one of the AIR Developer Derby winners&#8211;and its developer, Ed Finkler, got some <a target="_blank" href="http://arstechnica.com/journals/apple.ars/2007/10/11/twitter-with-spaz-air-interview-with-dev-ed-finkler">attention via an interview</a> over at Ars Technica&#8217;s Infinite Loop journal.</p>
<p>Spaz gets more time in the Twitter limelight, and Ed talked up the benefits of AIR. Good job, Ed! I haven&#8217;t had a chance to read the whole interview yet, but look forward to reading it soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/an-infinite-loop-of-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy Envelopes Widget</title>
		<link>http://blog.crankybit.com/easy-envelopes-widget/</link>
		<comments>http://blog.crankybit.com/easy-envelopes-widget/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 14:30:22 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/easy-envelopes-widget/</guid>
		<description><![CDATA[I discovered the Easy Envelopes widget over at Apple Gazette This widget makes it really easy to print an envelope without having to open Word or some similar app, and without having to worry about formatting. It&#8217;s literally faster than scribbling it out by hand, which is half of the point for me; the other [...]]]></description>
			<content:encoded><![CDATA[<p>I discovered the <a href="http://www.ambrosiasw.com/utilities/easyenvelopes/" target="_blank">Easy Envelopes</a> widget over at <a href="http://www.applegazette.com/widgets/widget-watch-easy-envelopes/" target="_blank">Apple Gazette</a> This widget makes it really easy to print an envelope without having to open Word or some similar app, and without having to worry about formatting. It&#8217;s literally faster than scribbling it out by hand, which is half of the point for me; the other half is satisfying my <a href="http://en.wikipedia.org/wiki/Obsessive-compulsive_disorder" target="_blank">OCD</a> by having nice, clean print. <img src='http://blog.crankybit.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>It autopopulates the return address by looking up your &#8220;Me&#8221; record in the OS X address book. You may then fill in the destination address by searching for a contact or by manually typing in an address. Very well thought out.</p>
<p>The widget did a great job at getting over typical problem areas, like printer and paper size. Overall, this widget is definitely <a href="http://www.ambrosiasw.com">Ambrosia</a> calibre. And it&#8217;s free!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/easy-envelopes-widget/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iStat Pro</title>
		<link>http://blog.crankybit.com/istat-pro/</link>
		<comments>http://blog.crankybit.com/istat-pro/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 13:38:02 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/istat-pro/</guid>
		<description><![CDATA[All my Windows geek friends have nifty taskbar software that indicates the temperature of the CPU and other useless but interesting geek information about their systems. iStat Pro is cooler than any of the tools they have. Developed as a dashboard widget, iStat Pro displays CPU temperature and fan speed, but also duplicates all the [...]]]></description>
			<content:encoded><![CDATA[<p>All my Windows geek friends have nifty taskbar software that indicates the temperature of the CPU and other useless but interesting geek information about their systems.</p>
<p><a target="_blank" href="http://islayer.com/index.php?op=item&#038;id=7">iStat Pro</a> is cooler than any of the tools they have. Developed as a dashboard widget, iStat Pro displays CPU temperature and fan speed, but also duplicates all the information in Activity Monitor, displaying typical geek Unix system info, like active processes, memory usage, and so on.</p>
<p>All in a dashboard widget, and all for free (donationware)!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/istat-pro/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Uninspiring Vista</title>
		<link>http://blog.crankybit.com/uninspiring-vista/</link>
		<comments>http://blog.crankybit.com/uninspiring-vista/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 21:00:01 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/uninspiring-vista/</guid>
		<description><![CDATA[Steve Jobs has revealed that nearly 50% of all Mac sales are from &#8220;Switchers&#8221;, individuals who did not previously own a Mac. So it isn&#8217;t news to hear about someone getting fed up with Windows and having that epiphany that opens their heart to Apple and OS X. Nevertheless, in her review entitled Uninspiring Vista, [...]]]></description>
			<content:encoded><![CDATA[<p>Steve Jobs has revealed that nearly 50% of all Mac sales are from &#8220;Switchers&#8221;, individuals who did not previously own a Mac. So it isn&#8217;t news to hear about someone getting fed up with Windows and having that epiphany that opens their heart to Apple and OS X.</p>
<p>Nevertheless, in her review entitled <a target="_blank" href="http://www.technologyreview.com/Infotech/17992/page1/">Uninspiring Vista</a>, Erika Jonietz explains how Windows Vista, as nifty as it is in many ways, was the straw that broke the camel&#8217;s back and caused her to appreciate how awesome OS X is and the entire Macintosh experience can be.</p>
<p>A great read for any Mac fan!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/uninspiring-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing WriteRoom</title>
		<link>http://blog.crankybit.com/introducing-writeroom/</link>
		<comments>http://blog.crankybit.com/introducing-writeroom/#comments</comments>
		<pubDate>Sun, 31 Dec 2006 11:53:00 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/introducing-writeroom/</guid>
		<description><![CDATA[We&#8217;ve worked so hard at enabling our computers to multitask effectively&#8211;and increasingly faster&#8211;that we have far surpassed the human ability to multitask. Don&#8217;t get me wrong; being able to continue browsing the web or working on a document while I&#8217;m downloading a large file or processing some video is obviously invaluable. It&#8217;s hard to imagine [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve worked so hard at enabling our computers to multitask effectively&#8211;and increasingly faster&#8211;that we have far surpassed the <em>human </em>ability to multitask. Don&#8217;t get me wrong; being able to continue browsing the web or working on a document while I&#8217;m downloading a large file or processing some video is obviously invaluable. It&#8217;s hard to imagine a time when we actually had to sit and wait helplessly while our computer chugged away at some data.</p>
<p>Unfortunately, some of us humans might try so hard to leverage our computer&#8217;s multitasking abilities that the ultimate bottleneck becomes the limit of our own mental concentration. You&#8217;re working on a document, but you also have your email client open and perhaps a few tabs on your web browser. Before you know it, you&#8217;ve wasted a significant period of time replying to email or going off on a tangent through the web, when the most important task at hand was just to finish typing up that document.</p>
<p>Enter <a target="_blank" href="http://www.hogbaysoftware.com/product/writeroom">WriteRoom</a>. It may seem archaic by today&#8217;s standards to boot up your computer into a word processor program and to only be able to use your computer for that purpose until you finish and boot into another program, but it sure didn&#8217;t test human self-control and concentration like the systems we have today. WriteRoom duplicates that simple, distraction-free experience, and while you&#8217;re at it, gives you a bit of nostalgic joy in the process. <img src='http://blog.crankybit.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Sure, you could get a similar affect by opening TextEdit (on the Mac) or Notepad (on Windows), but where&#8217;s the joy in that experience?</p>
<p>Did you grow up on an Apple ][ using AppleWorks with a green-on-black monochrome monitor? WriteRoom&#8217;s default scheme duplicates just that environment. Did you have the DOS PC&#8217;s common white-on-blue? Or can you just not stand anything but black-on-white? Fine, the color scheme is customizable. So is the font, so you don&#8217;t <em>have</em> to stick with a monospaced font, although it sure adds to the nostalgia. <img src='http://blog.crankybit.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>And the best part is that you don&#8217;t <em>have</em> to give up the multitasking bit to use WriteRoom. You can run iTunes and download that huge file in the background, but experience a visually simple and uncluttered experience while working on your text document.</p>
<p><a target="_blank" href="http://www.hogbaysoftware.com/product/writeroom">WriteRoom</a> is for the Mac only, and the original version is free.  A clone called <a target="_blank" href="http://they.misled.us/dark-room">Dark Room</a> was written to respectfully &#8220;capture the essence of WriteRoom&#8221; for Windows machines, and is also free.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/introducing-writeroom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pogue on Windows Vista Copying OS X</title>
		<link>http://blog.crankybit.com/pogue-on-windows-vista-copying-os-x/</link>
		<comments>http://blog.crankybit.com/pogue-on-windows-vista-copying-os-x/#comments</comments>
		<pubDate>Tue, 26 Dec 2006 12:17:27 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/pogue-on-windows-vista-copying-os-x/</guid>
		<description><![CDATA[If you haven&#8217;t seen it yet, David Pogue&#8217;s video discussing whether Windows Vista copies Mac OS X is pretty entertaining material&#8230;for Mac enthusiasts, anyway. Even though I think it is pretty blatant, for those of you who do not realize: David is using a common linguistic tool known as sarcasm.]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t seen it yet, David Pogue&#8217;s video discussing whether <a target="_blank" href="http://video.on.nytimes.com/?fr_story=d14603c1e23e6ce37920a8134a2e27b1405a4991&#038;rf=bm">Windows Vista copies Mac OS X</a> is pretty entertaining material&#8230;for Mac enthusiasts, anyway.</p>
<p>Even though I think it is pretty blatant, for those of you who do not realize: David is using a common linguistic tool known as <em>sarcasm. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/pogue-on-windows-vista-copying-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Leopard Screenshots</title>
		<link>http://blog.crankybit.com/new-leopard-screenshots/</link>
		<comments>http://blog.crankybit.com/new-leopard-screenshots/#comments</comments>
		<pubDate>Thu, 16 Nov 2006 14:29:47 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/new-leopard-screenshots/</guid>
		<description><![CDATA[The World of Apple site has posted some good screenshots of the latest build of Mac OS X Leopard. These newest screenshots feature some of the new features that have been reported, such as (a) Improved firewall, (b) More convenient Spotlight features, (c) Lost file recovery, and (d) Improved UI, which (no surprise here) matches [...]]]></description>
			<content:encoded><![CDATA[<p>The World of Apple site has posted some good <a target="_blank" href="http://loop.worldofapple.com/archives/2006/11/14/exclusive-new-leopard-build-in-images/">screenshots</a> of the latest build of Mac OS X Leopard.</p>
<p>These newest screenshots feature some of the new features that have been reported, such as (a) Improved firewall, (b) More convenient Spotlight features, (c) Lost file recovery, and (d) Improved UI, which (no surprise here) matches the new UI in iTunes 7. Included in this is <a target="_blank" href="http://www.appleinsider.com/article.php?id=610">resolution independence</a> of UI elements. Apple is pushing the envelope, as always. <img src='http://blog.crankybit.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/new-leopard-screenshots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leave It To Apple To Bring Revision Control To The Masses</title>
		<link>http://blog.crankybit.com/leave-it-to-apple-to-bring-revision-control-to-the-masses/</link>
		<comments>http://blog.crankybit.com/leave-it-to-apple-to-bring-revision-control-to-the-masses/#comments</comments>
		<pubDate>Sat, 09 Sep 2006 07:00:58 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/leave-it-to-apple-to-bring-revision-control-to-the-masses/</guid>
		<description><![CDATA[On August 7, 2006, Apple previewed Mac OS X 10.5 Leopard at the WWDC. As usual, some new features received a lot of excitement whereas some received criticism. Time Machine, Apple&#8217;s automated backup solution, received acclaim from many people because, as usual, Apple makes the process seem so easy and of course even manages to [...]]]></description>
			<content:encoded><![CDATA[<p>On August 7, 2006, Apple previewed Mac OS X 10.5 Leopard at the WWDC. As usual, some new features received a lot of excitement whereas some received criticism. <a href="http://www.apple.com/macosx/leopard/timemachine.html" target="_blank"><span style="font-weight: bold">Time Machine</span></a>, Apple&#8217;s automated backup solution, received acclaim from many people because, as usual, Apple makes the process seem so easy and of course even manages to make it fun with the eye candy and intuitive interface. Some people yawned at the app, claiming that it doesn&#8217;t deserve any attention because it is just a glorified backup app, which has been available in Windows for years.</p>
<p>Summing it up as a glorified backup app is an obscene oversimplification. As a developer, I immediately recognized in Time Machine the likelihood that it is running on top of a <a href="http://en.wikipedia.org/wiki/Revision_control" target="_blank">revision control</a> system, and that is what really fascinates me about it, and incidentally that is also what I feel many people misunderstand about it, leading them to discount it. I&#8217;m <a href="http://mydreamapp.com/forums/viewtopic.php?id=538" target="_blank">not alone</a> in making this connection; really, any developer who uses and understands source code repositories probably had the thought cross his or her mind. One of the major advantages mentioned in discussions about revision control is the fact that you  can always retrieve your file as it existed at any point in the past when it was committed to the repository.</p>
<p>And it&#8217;s not a stretch to see Apple borrowing revision control software to implement Time Machine. Subversion is a very popular revision control project in the opensource community. Sitting on top of FreeBSD, Apple has incorporated many other opensource projects in Mac OS X. For instance, OpenGL, Apache, SSH, FTP, CUPS, and Samba come to mind, just to name a few. Why not add Subversion to the list of excellent technologies to incorporate into an excellent OS?</p>
<p>If Time Machine <span style="text-decoration: underline;">is</span> running on top of Subversion or a similar revision control system, that would address the concerns that some people have&#8211;people who might not understand how revision control systems work. Some people have expressed a concern that a backup drive would not be able to support Time Machine for very long before filling up. For instance, if you have a 1GB file (perhaps a video clip) and make a very small change to it, will Time Machine record that change by making another copy of the entire file? If Time Machine made its backups as full copies of the changed files, you can imagine how quickly a backup volume would fill up. But that simply isn&#8217;t how most revision control software works. Most revision control software, including Subversion, uses <a href="http://en.wikipedia.org/wiki/Delta_compression" target="_blank">Delta Compression</a> to calculate only the <em>changes</em> made to a file, and then saves only those changes. Thus, a file can be committed to a repository a dozen times, and yet the amount of drive space taken up would only amount to the changes made, plus perhaps a very slight amount of overhead in the repository for tracking each change.</p>
<p>So that covers feasibility. With some software like Subversion, Time Machine could provide a backup of your entire volume and actually support it for a decent period of time thanks to efficient delta compression. What about the logistics of finding the changed files and saving those changes? This would be simple even with Subversion in its present state. Out of the box, Subversion provides the ability to search for files that have changed since the last &#8220;commit&#8221;, or the last time changes were saved. Time Machine would just have to ask Subversion to report all the files that have changed, then run the commit. This could be scheduled to execute at a given time, say, midnight. In the event that the computer was off at the scheduled time, the steps could be executed immediately upon startup.</p>
<p>In the past, I&#8217;ve thought how nice it would be if all the files on my computer could go under revision control just like my source code when I&#8217;m working on an application. It would be just Apple&#8217;s style to make that possible not just for tech geeks who use Subversion, but to make it possible for anyone, even the guy who doesn&#8217;t care a lick about understanding revision control.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/leave-it-to-apple-to-bring-revision-control-to-the-masses/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CrossOver: The Worst Way to Do the Wrong Thing</title>
		<link>http://blog.crankybit.com/crossover-the-worst-way-to-do-the-wrong-thing/</link>
		<comments>http://blog.crankybit.com/crossover-the-worst-way-to-do-the-wrong-thing/#comments</comments>
		<pubDate>Sat, 09 Sep 2006 04:12:16 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/crossover-the-worst-way-to-do-the-wrong-thing/</guid>
		<description><![CDATA[From the moment Intel Macs became available, running Windows apps on Macs has been a topic of interest in the Mac community. Suddenly, Macs became the ultimate machines for those of us interested in running multiple operating systems. Sure, Linux was always available for PowerPC Macs&#8211;at least several distros&#8211;but running Windows at satisfactory speeds was [...]]]></description>
			<content:encoded><![CDATA[<p>From the moment Intel Macs became available, running Windows apps on Macs has been a topic of interest in the Mac community. Suddenly, Macs became the ultimate machines for those of us interested in running multiple operating systems. Sure, Linux was always available for PowerPC Macs&#8211;at least several distros&#8211;but running Windows at satisfactory speeds was always a challenge. With the advent of Intel Macs, there are choices aplenty. We can (1) dual-boot with <a target="_blank" href="http://www.apple.com/macosx/bootcamp/">Bootcamp</a>; we can (2) run Windows with virtualization software like <a target="_blank" href="http://www.parallels.com/en/products/workstation/mac/">Parallels</a> or <a target="_blank" href="http://www.vmware.com/news/releases/mac.html">VMWare</a>, which run at near-native speeds, significantly faster than the emulation we did on our PowerPC Macs; and now we can (3) run Windows apps <em>without</em> Windows using CodeWeavers&#8217; <a target="_blank" href="http://www.codeweavers.com/products/cxmac/">CrossOver</a>.</p>
<p>Those solutions are geared to respectively increase convenience. Bootcamp requires an inconvenient reboot. Then virtualization software allows us to boot up Windows without rebooting our Mac, and we can even use Mac apps and Windows apps simultaneously albeit with Windows in an encapsulated environment. Finally, CrossOver aims to take the convenience to the next level by eliminating Windows and enabling Mac OS X to execute Windows apps!</p>
<p>One <a target="_blank" href="http://linux.sys-con.com/read/32751.htm">article</a> at LinuxWorld called CrossOver Office &#8220;the best way to do the wrong thing&#8221;. I contend that CrossOver is the <em>worst</em> way to do the wrong thing. If I have to run a Windows app on my Mac, I certainly want it to run as smoothly as possible, just like the rest of my Mac experience, and I want it to run like the developer intended. Largely, dual-booting and virtualization don&#8217;t compromise the behavior of the app I&#8217;m running. When you run your app with CrossOver, however, you don&#8217;t know what kind of performance you&#8217;ll get. Your app may just die; it may run but be full of bugs. The reports coming from the web show that your experience will be very hit-or-miss.</p>
<p>Don&#8217;t get me wrong; I&#8217;m not knocking the <a target="_blank" href="http://www.winehq.com/">WINE</a> project, which is the basis for the CrossOver codebase. A project to port the Windows APIs to another platform, although ambitious, is fascinating and, frankly, perfect as an opensource project. The problem I have is with the attempt to commercialize this technology that is great as a free resource but destined to never deliver a level of quality that befits a commercial product.</p>
<p>Why? There are so many variables and pitfalls to porting an API that the technology will never be able to work for even a large percentage of Windows apps, let alone all or the majority. And the technology can continue to be refined, only to see a Windows upgrade completely shatter the compatibility of future apps, and the development process of tweaking the port starts all over again. And from an opensource perspective, that&#8217;s fine. That&#8217;s the strength of an opensource initiative. It&#8217;s not such a great model for a commercial product.</p>
<p>What would you rather do? Buy CrossOver for $59 and be able to run only a few apps with it, and perhaps with a few bugs at that, or buy Parallels for $79 and be able to run practically all Windows apps with it, nearly bug-free? Of course, the price differential increases if you need to purchase a copy of Windows. Nevertheless, your experience will be infinitely more reliable if you use a virtualization solution like Parallels.</p>
<p>For the tech geek who likes tinkering with new software, this solution is worth a gander, especially while the free public beta is available. However, if you just need to get down to business, I recommend sticking with virtualization.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/crossover-the-worst-way-to-do-the-wrong-thing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apple&#8217;s Bluff?</title>
		<link>http://blog.crankybit.com/apples-bluff/</link>
		<comments>http://blog.crankybit.com/apples-bluff/#comments</comments>
		<pubDate>Thu, 11 Aug 2005 21:46:00 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Macintosh]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/apples-bluff/</guid>
		<description><![CDATA[As usual, John C. Dvorak&#8217;s articles are abrasive yet stimulating. His article this week inherently bashes Apple&#8217;s game plan yet simultaneously giving the good ol&#8217; pat on the back for something Apple probably isn&#8217;t really doing. Please read his article: Apple on the Brink. The premise is that Apple is &#8220;brain-dead&#8221; for not wanting to [...]]]></description>
			<content:encoded><![CDATA[<p>As usual, John C. Dvorak&#8217;s articles are abrasive yet stimulating. His article this week inherently bashes Apple&#8217;s game plan yet simultaneously giving the good ol&#8217; pat on the back for something Apple probably isn&#8217;t really doing.</p>
<p>Please read his article: <a href="http://www.pcmag.com/article2/0,1895,1845259,00.asp">Apple on the Brink</a>.</p>
<p>The premise is that Apple is &#8220;brain-dead&#8221; for not wanting to release OS X into the entire x86 jungle; yet, he opines, that is not what Apple <em>really</em> intends to do, and that, instead, Dvorak sees Apple&#8217;s bluff in his crystal ball.</p>
<p>And it really is a fantastic concept he has forecasted. I thoroughly enjoyed indulging myself in the unfolding of events that he described. As much as I would like seeing it happen the way he described, and as clever as Jobs et al have been of late, I find it very difficult to believe that the scenario that Dvorak has described is even remotely close to the truth. Frankly, I don&#8217;t think that he does either. Beware: This pat on the back is likely a slap in the face, if only we had turned around to pay attention.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/apples-bluff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple: &#8220;Best Fiscal Year in Decades&#8221;</title>
		<link>http://blog.crankybit.com/apple-best-fiscal-year-in-decades/</link>
		<comments>http://blog.crankybit.com/apple-best-fiscal-year-in-decades/#comments</comments>
		<pubDate>Thu, 14 Jul 2005 16:55:00 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[iPod/iPhone]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/apple-best-fiscal-year-in-decades/</guid>
		<description><![CDATA[Great news. At the close of the fiscal quarter, Apple has found its profits $70 million in excess of its estimates, sitting at $320 million. This is Apple&#8217;s best quarter. Ever. Read about it: Apple Tops Its Quarterly Earnings Record. One thing that is very encouraging about this is to see that the iPod is [...]]]></description>
			<content:encoded><![CDATA[<p>Great news. At the close of the fiscal quarter, Apple has found its profits <em>$70 million</em> in excess of its estimates, sitting at $320 million.</p>
<p>This is Apple&#8217;s best quarter. <em>Ever.</em> Read about it: <a href="http://www.eweek.com/article2/0,1895,1836774,00.asp">Apple Tops Its Quarterly Earnings Record</a>.</p>
<p>One thing that is very encouraging about this is to see that the iPod is <em>not</em> the hero that saved the ailing team here. The iPod had a significant share, as expected, but it was just a team player on Apple&#8217;s championship team.</p>
<p>Other key players: Mac OS X 10.4 and Mac sales. Sure, we like it when the team keeps winning, even when these players were on the bench, but now that they&#8217;re back in the game&#8211;and exercising a killer instinct&#8211;the game is so sweet to see.</p>
<p>Mac OS X 10.4 was the best-selling software release in the company&#8217;s history; Mac sales experienced a 35% increase over last year; iPod sales had a &#8220;record quarter&#8221; for the ninth time in a row. When all the key players score triple-doubles, the fans just go wild.</p>
<p>And the timing couldn&#8217;t be more perfect, since Apple&#8217;s sales my go into slight hibernation as the world awaits the first x86-based Mac. But that&#8217;s okay&#8211;Apple is ready.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/apple-best-fiscal-year-in-decades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft &#8220;Can&#8217;t Even Copy Fast&#8221;</title>
		<link>http://blog.crankybit.com/microsoft-cant-even-copy-fast/</link>
		<comments>http://blog.crankybit.com/microsoft-cant-even-copy-fast/#comments</comments>
		<pubDate>Mon, 25 Apr 2005 16:49:00 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/microsoft-cant-even-copy-fast/</guid>
		<description><![CDATA[At a recent shareholders meeting, Steve Jobs made a great, succinct swipe at Microsoft and Longhorn. It is mentioned in: Jobs rebuts eco-group claims at annual meeting. According to MacWorld, when Jobs was asked about the release of Mac OS X Tiger and the upcoming Longhorn, he said, �They are shamelessly trying to copy us&#8230;I [...]]]></description>
			<content:encoded><![CDATA[<p>At a recent shareholders meeting, Steve Jobs made a great, succinct swipe at Microsoft and Longhorn.</p>
<p>It is mentioned in: <a href="http://www.macworld.com/news/2005/04/21/shareholders/index.php/?lsrc=mcweek-0422">Jobs rebuts eco-group claims at annual meeting</a>.</p>
<p>According to MacWorld, when Jobs was asked about the release of Mac OS X Tiger and the upcoming Longhorn, he said, �They are shamelessly trying to copy us&#8230;I think the most telling thing is that Tiger will ship at the end of the month and Longhorn is still two years out. They can�t even copy fast.�</p>
<p>What a great line!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/microsoft-cant-even-copy-fast/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Industry Welcomes OS X Upgrade</title>
		<link>http://blog.crankybit.com/industry-welcomes-os-x-upgrade/</link>
		<comments>http://blog.crankybit.com/industry-welcomes-os-x-upgrade/#comments</comments>
		<pubDate>Thu, 14 Apr 2005 15:01:00 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[IT Industry]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/industry-welcomes-os-x-upgrade/</guid>
		<description><![CDATA[Whereas the Windows world is groaning over the upgrades Microsoft puts them through&#8211;whether it is the elusive Longhorn or the painful SP2&#8211;in the Mac community, industry experts excitedly welcome Tiger. Please read: Mac Industry Heeds Tiger&#8217;s Roar. It is noteworthy that Apple and Microsoft have both been pursuing metadata and better ways to provide searchability, [...]]]></description>
			<content:encoded><![CDATA[<p>Whereas the Windows world is groaning over the upgrades Microsoft puts them through&#8211;whether it is the elusive Longhorn or the painful SP2&#8211;in the Mac community, industry experts excitedly welcome Tiger.</p>
<p>Please read: <a href="http://www.eweek.com/article2/0,1759,1785266,00.asp">Mac Industry Heeds Tiger&#8217;s Roar</a>.</p>
<p>It is noteworthy that Apple and Microsoft have both been pursuing metadata and better ways to provide searchability, and yet Apple is delivering in early 2005, whereas experts&#8217; confidence that Microsoft will deliver by sometime in 2006 is slipping.</p>
<p>Apple has taken a dominating role in delivering a truly modern operating system via Darwin and OS X 10.4.</p>
<p>Unfortunately, truly modern operating systems are not always what businesses are looking for, which is one reason why Apple&#8217;s dominance hasn&#8217;t transferred to market share in the business industry. Nevertheless, Apple continues to impress experts and home users alike.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/industry-welcomes-os-x-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tiger Comes April 29, 2005</title>
		<link>http://blog.crankybit.com/tiger-comes-april-29-2005/</link>
		<comments>http://blog.crankybit.com/tiger-comes-april-29-2005/#comments</comments>
		<pubDate>Tue, 12 Apr 2005 16:18:00 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/tiger-comes-april-29-2005/</guid>
		<description><![CDATA[I&#8217;m sure this is hardly news to most people, but as Apple has been promising, and as expected, Apple will be releasing Tiger on April 29, 2005. In addition to the general fine-tuning of the core technologies driving OS X, I am looking forward to see how OS X 10.4&#8242;s new technology Spotlight will improve [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure this is hardly news to most people, but as Apple has been promising, and as expected, Apple will be releasing Tiger on April 29, 2005.</p>
<p>In addition to the general fine-tuning of the core technologies driving OS X, I am looking forward to see how OS X 10.4&#8242;s new technology <a href="http://www.apple.com/macosx/features/spotlight/">Spotlight</a> will improve the usefulness of the Mac desktop. This is the feature that feels most futuristic and high-tech. It may seem silly to refer to a basic search functionality as &#8220;futuristic&#8221; or &#8220;high-tech&#8221;, but really search technology has come a long way even in just the past 5 years, and we&#8217;ve come to see that innovative and intuitive searching is actually quite hard to come by. I am hoping that Spotlight will provide a sophisticated and intuitive interface to this end.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/tiger-comes-april-29-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

