<?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>kenclark.me &#187; mac os x</title>
	<atom:link href="http://kenclark.me/tag/mac-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://kenclark.me</link>
	<description>A weblog by Ken Clark about technology, e-books, and all things Apple.</description>
	<lastBuildDate>Thu, 29 Jul 2010 11:40:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='kenclark.me' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Use Mac OS X Services to Import Files into Evernote</title>
		<link>http://kenclark.me/2009/09/using-mac-os-x-services-to-import-files-into-evernote/</link>
		<comments>http://kenclark.me/2009/09/using-mac-os-x-services-to-import-files-into-evernote/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 10:32:28 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[All About Apple]]></category>
		<category><![CDATA[Working Smart]]></category>
		<category><![CDATA[evernote]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[services]]></category>

		<guid isPermaLink="false">http://www.kenclarksblog.com/?p=647</guid>
		<description><![CDATA[During my recent foray into rediscovering Evernote, I experimented with Evernote's Applescript dictionary and Snow Leopard's updated Services architecture.  My goal was to write a service that made capturing data into Evernote even easier.

I was pretty excited to see how easy it was to write a service and created one that directly import files from the Finder into Evernote.

Here's how to set it up...]]></description>
			<content:encoded><![CDATA[<p></p><p>During <a title="Evernote or Yojimbo?" href="2009/09/evernote-or-yojimbo-finding-the-right-bucket-for-my-stuff/" target="_self">my recent foray into rediscovering Evernote</a>, I experimented with Evernote&#8217;s Applescript dictionary and <a title="Snow Leopard's New Services Architecture" href="2009/09/services-the-1-reason-to-upgrade-to-snow-leopard/" target="_self">Snow Leopard&#8217;s updated Services architecture</a>.  My goal was to write a service that made capturing data into <a title="Evernote" href="http://www.evernote.com" target="_blank">Evernote</a> even easier.</p>
<p>I was pretty excited to see how easy it was to write a service and created one that directly import files from the Finder into Evernote.</p>
<p>Here&#8217;s how to set it up:</p>
<p><strong>1) Launch Automator and select &#8220;Service&#8221;</strong></p>
<p>The Service template in Automator is new to Snow Leopard and lets you create services from scratch.</p>
<p style="text-align: center"><img class="aligncenter size-full wp-image-666" src="http://www.kenclarksblog.com/wp-content/uploads/2009/09/automator-choose-template.png" alt="Select Automator Template" width="418" height="386" /></p>
<p><strong>2) Change &#8220;Service receives selected&#8221; to &#8220;files and folders&#8221;.  Leave &#8220;any application&#8221; selected and &#8220;replaces selected text&#8221; unchecked.</strong></p>
<p>The new Services template can handle a number of data types, but for us files or folders is what we want.</p>
<p><img class="aligncenter size-full wp-image-668" src="http://www.kenclarksblog.com/wp-content/uploads/2009/09/services-receive-selected.png" alt="Receive Selected Files or Folders with Automator Service" width="487" height="53" /></p>
<p><strong>3) Pick the &#8220;Run Applescript&#8221; action from the Utilities Library and copy and paste the below applescript into the input box.</strong></p>
<p>This script has error handling built in (that&#8217;s the try&#8230; end try statement), so if you pass something that Evernote can&#8217;t handle, you will get an alert box telling you what is wrong.  The most common error you may see is if you try to pass the service an unsupported file type.  For example, if you are not an Evernote Premium user and try to pass it a Word doc you will get an error, or if you try to pass it a folder, you will get an error.</p>
<p>The script supports passing multiple files (and if one of the files creates an error condition it will only fail that import, not the entire batch).</p>
<p><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace;line-height: 18px;font-size: 12px"> </span></p>
<pre>on run {input}
     tell application "Evernote"
          repeat with x in input
               try
                    create note from file x
               on error error_message number error_number
                    display alert "Send to Evernote Failed" message "Error:		" &amp; error_message &amp; "
" &amp; "Error Number:	" &amp; error_number as warning
               end try
          end repeat
     end tell
end run</pre>
<p>When you are done in Automator, it will look like this:</p>
<p style="text-align: center"><a href="http://www.kenclarksblog.com/wp-content/uploads/2009/09/import-to-evernote-service.png"><img class="aligncenter size-large wp-image-670" src="http://www.kenclarksblog.com/wp-content/uploads/2009/09/import-to-evernote-service-1024x707.png" alt="Import To Evernote Service" width="502" height="347" /></a></p>
<p style="text-align: left">That&#8217;s it!</p>
<p style="text-align: left"><strong>4) Go to File &gt; Save As and name the service &#8220;File | Import to Evernote&#8221;</strong></p>
<p style="text-align: left">This saves the service so it is available throughout OS X.</p>
<p style="text-align: left"><strong>5) Set a Keyboard Shorcut via Automator &gt; Services &gt; Services Preferences</strong></p>
<p style="text-align: left">This is not required, but if you want to create a keyboard shortcut, just find the &#8220;File | Import to Evernote&#8221; Service and double-click the keyboard shortcut column.  I assigned shift-command-E, but you can do whatever makes sense for you.</p>
<p style="text-align: center"><a href="http://www.kenclarksblog.com/wp-content/uploads/2009/09/assign-keyboard-shortcut.png"><img class="aligncenter size-full wp-image-673" src="http://www.kenclarksblog.com/wp-content/uploads/2009/09/assign-keyboard-shortcut.png" alt="Assign Evernote Service Keyboard Shorcut" width="534" height="344" /></a></p>
<p style="text-align: left"><strong>6) Try it out!</strong></p>
<p style="text-align: left">Now when you are in the Finder, you can click your keyboard shortcut and/or right click and pick the service from the context-menu and import files direct into Evernote.</p>
<p style="text-align: center"><a href="http://www.kenclarksblog.com/wp-content/uploads/2009/09/evernote-service-in-context-menu.png"><img class="aligncenter size-full wp-image-674" src="http://www.kenclarksblog.com/wp-content/uploads/2009/09/evernote-service-in-context-menu.png" alt="Evernote File Service in Context Menu" width="404" height="447" /></a></p>
<p style="text-align: left">Last Tip:  If you have <a title="Growl" href="http://growl.info/" target="_blank">Growl</a> installed and have it configured for Evernote, you will get a Growl notification once the import is successful.  It puts a nice finishing touch to the service.</p>
<p style="text-align: center"><a href="http://www.kenclarksblog.com/wp-content/uploads/2009/09/evernote-growl-notification.png"><img class="aligncenter size-full wp-image-675" src="http://www.kenclarksblog.com/wp-content/uploads/2009/09/evernote-growl-notification.png" alt="Growl Notification of Evernote Import" width="316" height="78" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2009/09/using-mac-os-x-services-to-import-files-into-evernote/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>My Snow Leopard Install Checklist</title>
		<link>http://kenclark.me/2009/09/my-snow-leopard-install-checklist/</link>
		<comments>http://kenclark.me/2009/09/my-snow-leopard-install-checklist/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 23:57:15 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[All About Apple]]></category>
		<category><![CDATA[Working Smart]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[snow leopard]]></category>

		<guid isPermaLink="false">http://www.kenclarksblog.com/?p=375</guid>
		<description><![CDATA[My Snow Leopard DVD arrived on Friday, and I came up with my own install checklist for the upgrade.  Here's the process I used as well as some quick comments and takeaways.]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: center"><img class="aligncenter size-full wp-image-381" src="http://www.kenclarksblog.com/wp-content/uploads/2009/09/snow-leopard-installed.png" alt="Snow Leopard installed!" width="307" height="379" /></p>
<p>My Snow Leopard install DVD arrived from Amazon on Friday, so I embarked on a mini install-fest yesterday and am happy to say my MacBook and iMac are now running the new OS.  This time around, I went in with as good of a plan as I&#8217;ve ever had to ensure the upgrade went smoothly and, more importantly, I could roll back to Leopard if something went wrong.</p>
<p>I came up with my own install checklist for the upgrade after reading a number of blog posts and listening to a couple podcasts about prepping for and installing Snow Leopard.  I chose to &#8221;upgrade&#8221; as opposed to the nuke-and-pave route of &#8220;erase and install&#8221;.  (If you don&#8217;t know what I am talking about or want to read some of these articles, I&#8217;ve included a full list of the <a title="Snow Leopard Install Resources" href="#resources">Snow Leopard install resources</a> I found most helpful at the end of this article).</p>
<p>Here&#8217;s the process I used for the upgrade as well as some quick comments and takeaways:</p>
<h2>Snow Leopard Install Checklist</h2>
<h3>Pre-Install:</h3>
<ol>
<li><strong>Run a manual Time Machine backup. </strong>Before I touched anything I wanted a snapshot of my system.</li>
<li><strong>Review and resolve an outstanding issues with the OS. </strong>This was a good tip I heard on Victor Cajiao&#8217;s <a title="Typical Mac User Podcast" href="http://typicalmacuser.com/" target="_blank">Typical Mac User&#8217;s Podcast</a> from his guest, Steve Stanger, of <a title="The Mac Attack" href="http://www.themacattack.us/" target="_blank">The Mac Attack</a>.  To paraphrase what Steve said &#8212; if you have an existing problem with your Mac, the Snow Leopard upgrade is not going to fix it, so figure it out before you upgrade.  Personally, I had a nagging issue on the iMac with Safari intermittently crashing.  With Steve&#8217;s advice in mind, it forced me to sit down and resolve the issue first (it was related to an errant plug-in and true to what Steve said the OS upgrade would definitely have not fixed it).</li>
<li><strong>Review the Applications folder and uninstall any unneeded ones.</strong> Why?  It&#8217;s as good of a time as any to do a little house cleaning, I picked up some disk space, and it also reduced the possibility of having any Snow Leopard incompatibilities with existing apps.</li>
<li><strong>Upgrade all apps to most current versions.</strong> Many, but not all popular apps, have new &#8220;Snow Leopard&#8221; compatible versions.  I wanted to make sure I had the latest and greatest versions installed.</li>
<li><strong>Install Apple / OS X Software Updates.</strong> I suppose it sounds a little ridiculous to update OS X 10.5 with recent patches when I was doing a full OS upgrade, but this didn&#8217;t take much time and I figured there was no downside to it.  It was beneficial for me on the MacBook because I picked up two EFI updates that I somehow missed previously that were not OS-related.</li>
<li><strong>Perform system maintenance.</strong> I downloaded <a title="OnyX" href="http://www.titanium.free.fr/pgs2/english/onyx_leopard.html" target="_blank">OnyX</a> and performed all of the actions under the &#8220;cleaning&#8221; interface.  This was the first time I used the product, and was happy with it (Please note it is not yet Snow Leopard compatible).  I also <a title="Repair Disk Permissions" href="http://www.ehow.com/how_5096520_repair-permissions-mac-os-leopard.html" target="_blank">repaired disk permissions</a> via Disk Utility.</li>
<li><strong>Run a manual Time Machine backup (again).</strong> At this point all of my maintenance tasks were done, so I wanted another pre-install snapshot.</li>
<li><strong>Run a manual Jungle Disk backup (my online backup). </strong> I back up key personal files online with Jungle Disk, but this is done daily so I wanted to ensure I had the latest and greatest files backed up.</li>
<li><strong>Create a bootable copy of the hard drive.</strong> This was a totally new step for me.  After hearing over and over the benefits of having a bootable external hard drive with a clone of your pre-install system available in case of disaster, I finally integrated this into my workflow.  I used <a title="Super Duper" href="http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html" target="_blank">Super Duper</a> although <a title="Carbon Copy Cloner" href="http://www.bombich.com/software/ccc.html" target="_blank">Carbon Copy Cloner</a> is supposed to be excellent as well.</li>
<li><strong>Boot Mac using the external hard drive. </strong>This is really a sub-step of #9.  I did this to make sure the clone worked.</li>
<li><strong>Unplug all USB and Firewire devices other than the keyboard and mouse.</strong> There have been cases in the past where certain peripherals have caused OS X upgrades to get a little funky, so this is just another step in erring on the side of caution.</li>
</ol>
<h3>Install:</h3>
<ol>
<li><strong>Install upgrade. </strong>Nothing complex here, I just popped in the DVD and let it do the work.  For me, it took about an hour on both machines.</li>
</ol>
<p><strong> </strong></p>
<h3>Post-Install</h3>
<ol>
<li><strong>Run a manual Time Machine backup (yet again&#8230;).</strong> Even though Time Machine updates hourly, I wanted a snapshot immediately post-install.</li>
<li><strong>Plug USB and Firewire devices back in.</strong></li>
<li><strong>Play around with Snow Leopard!</strong></li>
</ol>
<h2>Takeaways</h2>
<p>All things considered my upgrades went well but a couple comments beyond what I&#8217;ve already mentioned:</p>
<ul>
<li>This was the first time I&#8217;ve ever created a bootable clone, and I did not realize how long it takes to create one (for my iMac it took almost 7 hours!).  I got so impatient with the time it was taking to create the clone that that I &#8220;cowboy&#8217;d it&#8221; when I upgraded my MacBook and skipped this step.  Luckily I didn&#8217;t have any issues there.  I am definitely going to incorporate a regularly scheduled bootable clone of my hard drive into my backup strategy moving forward.  If I had been doing this, it would have removed what was the most frustrating part of the upgrade for me.</li>
<li>I spent more time applying application updates than I would have liked or had planned.  In the end it was good to clean up my system, but it is something I need to automate or schedule moving forward.</li>
<li>I got to use two software apps: OnyX and Super Duper, that I expect to use again.  While I had heard of both previously, now that I have used them I expect they will become part of my normal bag of tricks.</li>
</ul>
<p><a name="resources"></a></p>
<h2>Snow Leopard Install Resources</h2>
<p>Here are the blog posts and podcasts that I found the most helpful when I was getting ready for the upgrade:</p>
<p>Articles:</p>
<ul>
<li><a title="Prep Your Mac for Snow Leopard" href="http://lifehacker.com/5345690/prep-your-mac-for-snow-leopard" target="_blank">Prep Your Mac for Snow Leopard</a> &#8211; lifehacker.com.  A good overall discussion of what to do for the upgrade.</li>
<li><a title="Upgrade to Snow Leopard - The Right Way" href="http://www.cultofmac.com/how-to-upgrade-to-snow-leopard-the-right-way/15141" target="_blank">Upgrade To Snow Leopard &#8211; The Right Way</a> &#8211; cultofmac.com.  If you are going to do an &#8220;Erase and Install Upgrade&#8221;, or even just thinking about it, this is the one to read.</li>
<li><a title="Clean Up and Revive Your Bloated, Sluggish Mac" href="http://lifehacker.com/5252183/clean-up-and-revive-your-bloated-sluggish-mac" target="_blank">Clean Up and Revive Your Bloated, Sluggish Mac</a> &#8211; lifehacker.com.  This is not about Snow Leopard, but lists a number of items that you may want to include in your prep work.</li>
</ul>
<p>Podcasts:</p>
<ul>
<li><a title="Getting Ready for Snow Leopard" href="http://typicalmacuser.com/wordpress/2009/08/11/tmup-184-getting-ready-for-snow-leopard-with-steve-stanger/" target="_blank">TMUP 184: Getting Ready for Snow Leopard (w/Steve Stanger)</a></li>
<li><a title="Getting Ready for Snow Leopard" href="http://macpowerusers.com/?p=128" target="_blank">MPU 009: Getting Ready for Snow Leopard</a></li>
</ul>
<div>Good luck with your install!</div>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2009/09/my-snow-leopard-install-checklist/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
