<?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; Linked List</title>
	<atom:link href="http://kenclark.me/category/linked-list/feed/" rel="self" type="application/rss+xml" />
	<link>http://kenclark.me</link>
	<description>a technology journal</description>
	<lastBuildDate>Sat, 01 Oct 2011 12:46:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<cloud domain='kenclark.me' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title><![CDATA[LaunchBar and Exchange Address Books in Snow Leopard →]]></title>
		<link><![CDATA[http://forums.obdev.at/viewtopic.php?f=4&t=3160]]></link>
		<comments>http://kenclark.me/2011/02/launchbar-and-exchange-address-books-in-snow-leopard/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 02:23:01 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[All About Apple]]></category>
		<category><![CDATA[Linked List]]></category>
		<category><![CDATA[launchbar]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[snow leopard]]></category>

		<guid isPermaLink="false">http://kenclark.me/?p=2293</guid>
		<description><![CDATA[Not seeing my Exchange contacts in LaunchBar has been nagging me for months, but I always assumed I had missed something on the configuration. I finally Googled it tonight, and saw it is a long standing issue. This comment is from November 2009. Hopefully Objective Development can get it figured out, or Apple can expose the right APIs.<a href="http://kenclark.me/2011/02/launchbar-and-exchange-address-books-in-snow-leopard/" rel="bookmark" title="Permanent link to 'LaunchBar and Exchange Address Books in Snow Leopard'" class="glyph">∞ Permalink</a>
]]></description>
			<content:encoded><![CDATA[<p></p><blockquote>
We would love to add support for Exchange address books. But unfortunately, up until now we haven&#8217;t been able to figure out how to get access to this data. Apple&#8217;s developer documentation is rather sparse in this regard. Actually, the entire documentation only mentions that Exchange support has been added at the application layer. There is no mention of a developer API. We currently use Apple&#8217;s AddressBook.framework API to access the address book data, but obviously this API doesn&#8217;t provide access to Exchange address books.
</blockquote>

<p>Not seeing my Exchange contacts in LaunchBar has been nagging me for months, but I always assumed I had missed something on the configuration. I finally Googled it tonight, and saw it is a long standing issue. This comment is from November 2009. Hopefully Objective Development can get it figured out, or Apple can expose the right APIs.</p>
<p><a href="http://kenclark.me/2011/02/launchbar-and-exchange-address-books-in-snow-leopard/" rel="bookmark" title="Permanent link to 'LaunchBar and Exchange Address Books in Snow Leopard'" class="glyph">∞ Permalink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2011/02/launchbar-and-exchange-address-books-in-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[Brett Terpstra on Toggling and Hiding Apps via AppleScript →]]></title>
		<link><![CDATA[http://brettterpstra.com/quick-tip-applescript-application-toggle/]]></link>
		<comments>http://kenclark.me/2011/01/brett-terpstra-on-toggling-and-hiding-apps-via-applescript/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 14:00:00 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[Linked List]]></category>
		<category><![CDATA[applescript]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://kenclark.me/?p=2286</guid>
		<description><![CDATA[I always enjoy reading what other people are AppleScripting as it usually gives me some ideas about how to better use my Mac. I use LaunchBar as my application launcher, so Brett Terpstra's script didn't directly hit the sweet spot of fixing a problem I had, but it did get my thinking about what I do when I want to hide the current application.<a href="http://kenclark.me/2011/01/brett-terpstra-on-toggling-and-hiding-apps-via-applescript/" rel="bookmark" title="Permanent link to 'Brett Terpstra on Toggling and Hiding Apps via AppleScript'" class="glyph">∞ Permalink</a>
]]></description>
			<content:encoded><![CDATA[<p></p><p>I always enjoy reading what other people are AppleScripting as it usually gives me some ideas about how to better use my Mac. I use <a href="http://www.obdev.at/products/launchbar/index.html">LaunchBar</a> as my application launcher, so Brett Terpstra&#8217;s script didn&#8217;t directly hit the sweet spot of fixing a problem I had, but it did get me thinking about what I do when I want to hide the current application.</p>

<p>I didn&#8217;t have any tricks, so shortly after reading the post, I wrote this dead simple AppleScript to hide the frontmost app:</p>

<pre><code>tell application "System Events"
    set current_app to name of first process where frontmost is true
    set visible of process current_app to false
end tell
</code></pre>

<p>Just as I was about to assign this to a <a href="http://www.red-sweater.com/fastscripts/">FastScripts</a> keyboard shortcut, it occurred to me that I was probably over-thinking it and OS X had to already support this functionality in some way, right?</p>

<p>A Google search later confirmed it: <em>Cmd-H</em> hides the current app, and for bonus points, you have <em>Cmd-Option-H</em> which hides all apps <em>except</em> for the current app.</p>

<p>Two great keyboard shortcuts I was previously unaware of.  Thanks, Brett.  It all started with your post.</p>
<p><a href="http://kenclark.me/2011/01/brett-terpstra-on-toggling-and-hiding-apps-via-applescript/" rel="bookmark" title="Permanent link to 'Brett Terpstra on Toggling and Hiding Apps via AppleScript'" class="glyph">∞ Permalink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2011/01/brett-terpstra-on-toggling-and-hiding-apps-via-applescript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title><![CDATA[Syncing Yojimbo Between Two Macs →]]></title>
		<link><![CDATA[http://groups.google.com/group/yojimbo-talk/browse_thread/thread/64a478b23790583f]]></link>
		<comments>http://kenclark.me/2011/01/syncing-yojimbo-between-two-macs/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 05:05:54 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[Linked List]]></category>
		<category><![CDATA[yojimbo]]></category>

		<guid isPermaLink="false">http://kenclark.me/?p=2284</guid>
		<description><![CDATA[Personally I use MobileMe, but if you are looking for a good discussion on all the solutions to sync Yojimbo across multiple Macs, this recent thread is the one to read.<a href="http://kenclark.me/2011/01/syncing-yojimbo-between-two-macs/" rel="bookmark" title="Permanent link to 'Syncing Yojimbo Between Two Macs'" class="glyph">∞ Permalink</a>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Personally I use MobileMe, but if you are looking for a good discussion on all the solutions to sync Yojimbo across multiple Macs, this recent Yojimbo Google Groups thread is the one to read.</p>
<p><a href="http://kenclark.me/2011/01/syncing-yojimbo-between-two-macs/" rel="bookmark" title="Permanent link to 'Syncing Yojimbo Between Two Macs'" class="glyph">∞ Permalink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2011/01/syncing-yojimbo-between-two-macs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[Kindle Singles is Live →]]></title>
		<link><![CDATA[http://www.amazon.com/b/ref=sv_kinc_2?ie=UTF8&node=2486013011]]></link>
		<comments>http://kenclark.me/2011/01/kindle-singles-is-live/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 13:15:52 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[Linked List]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[kindle]]></category>

		<guid isPermaLink="false">http://kenclark.me/?p=2273</guid>
		<description><![CDATA[I&#8217;ve got to say that I love the idea of a marketplace for short, digestible content that is only as long as it needs to be. I just downloaded two Singles in anticipation of an upcoming plane flight. Update (2011-01-28): Plane trip is completed, and I really enjoyed both of the Singles I read: Homo [...]<a href="http://kenclark.me/2011/01/kindle-singles-is-live/" rel="bookmark" title="Permanent link to 'Kindle Singles is Live'" class="glyph">∞ Permalink</a>
]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;ve got to say that I love the idea of a marketplace for short, digestible content that is only as long as it needs to be.  I just downloaded two Singles in anticipation of an upcoming plane flight.</p>

<p><strong>Update (2011-01-28):</strong> Plane trip is completed, and I really enjoyed both of the Singles I read: <a href="http://www.amazon.com/gp/product/B004KSREFC/ref=s9_al_bw_t6?pf_rd_m=ATVPDKIKX0DER&amp;pf_rd_s=right-3&amp;pf_rd_r=1FW5G0HGB1A09BF2E9D4&amp;pf_rd_t=101&amp;pf_rd_p=1287510802&amp;pf_rd_i=2486013011">Homo Evolutis</a> and <a href="http://www.amazon.com/gp/product/B004K1F3K2/ref=s9_al_bw_t5?pf_rd_m=ATVPDKIKX0DER&amp;pf_rd_s=right-3&amp;pf_rd_r=1FW5G0HGB1A09BF2E9D4&amp;pf_rd_t=101&amp;pf_rd_p=1287510802&amp;pf_rd_i=2486013011">Beware Dangerism</a>. I think John Gruber got it right when he said this could be Amazon&#8217;s <a href="http://daringfireball.net/linked/2011/01/26/kindle-singles">app store for articles</a>.  It is a no brainer to shell out a couple bucks for good content.</p>
<p><a href="http://kenclark.me/2011/01/kindle-singles-is-live/" rel="bookmark" title="Permanent link to 'Kindle Singles is Live'" class="glyph">∞ Permalink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2011/01/kindle-singles-is-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[RIP Delicious: Now Back Up Your Bookmarks →]]></title>
		<link><![CDATA[http://www.digitaltrends.com/computing/yahoo-plans-to-prune-delicious-buzz-altavista-and-more/?news=123]]></link>
		<comments>http://kenclark.me/2010/12/rip-delicious-now-back-up-your-bookmarks/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 01:24:49 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[In the Cloud]]></category>
		<category><![CDATA[Linked List]]></category>
		<category><![CDATA[delicious]]></category>
		<category><![CDATA[yojimbo]]></category>

		<guid isPermaLink="false">http://kenclark.me/?p=2160</guid>
		<description><![CDATA[I'd recommend if you have anything on Delicious, you do what I did tonight and get a full XML dump of your Delicious bookmarks.  It might take all of 60 seconds.  Here's how to do it.<a href="http://kenclark.me/2010/12/rip-delicious-now-back-up-your-bookmarks/" rel="bookmark" title="Permanent link to 'RIP Delicious: Now Back Up Your Bookmarks'" class="glyph">∞ Permalink</a>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Delicious never seemed to live up to its potential and keep up with the pace of innovation on the web, but I still liked using the site.  It was hard not to be nervous about it though given it seemed like it was always priority 999 in Yahoo&#8217;s web strategy.  Between that feeling and my increasing trust issues with any service that is totally cloud-based<a id="footnote-1-ref" href="#footnote-1" title="link to footnote"><sup>1</sup></a>, I decided to abandon my use of it a couple months ago.  Instead, I began to store all of my bookmarks in <a href="http://barebones.com/products/yojimbo/">Yojimbo</a>, and I can&#8217;t say I have looked back once.</p>

<p>When I made the move, I checked out a couple of the Delicious to Yojimbo scripts that are out there on the web, but I never did a full import of everything because the scripts only got me 90% of what I wanted.  I have had on my someday / maybe list to write a better Applescript for the import, but haven&#8217;t done it yet.  I suppose that just got moved up on the priority list.</p>

<p>That said, I&#8217;d recommend if you have anything on Delicious, you do what I did tonight and get a full XML dump of your Delicious bookmarks.  It might take all of 60 seconds.</p>

<p>It&#8217;s pretty simple.  Just drop into Terminal and execute the following command (replacing yourusername and yourpassword with your individual info, of course):</p>

<pre>
    curl -u yourusername:yourpassword  https://api.del.icio.us/v1/posts/all &gt; delicious-bookmarks.xml
</pre>

<p>That will give you everything from your Delicious account in one XML file that can be parsed at will in the future.</p>

<hr />

<p><br /></p>

<div>
<sup><a name="footnote-1">1.</a> An example of a cloud-based service that does it right? <a href="http://www.dropbox.com">Dropbox</a>.  All my data that&#8217;s on there is also synced to my local machine (which means it is also getting backed up to three other spots).<a href="#footnote-1-ref" title="return to text">&#8617;</a></sup> 
</div>
<p><a href="http://kenclark.me/2010/12/rip-delicious-now-back-up-your-bookmarks/" rel="bookmark" title="Permanent link to 'RIP Delicious: Now Back Up Your Bookmarks'" class="glyph">∞ Permalink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2010/12/rip-delicious-now-back-up-your-bookmarks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[BIT-101: Kindle and iPad Resolution Compared →]]></title>
		<link><![CDATA[http://www.bit-101.com/blog/?p=2722]]></link>
		<comments>http://kenclark.me/2010/08/bit-101-kindle-and-ipad-resolution-compared/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 02:44:04 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[ebooks]]></category>
		<category><![CDATA[Linked List]]></category>
		<category><![CDATA[e-books]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[kindle]]></category>

		<guid isPermaLink="false">http://kenclark.me/?p=2133</guid>
		<description><![CDATA[Keith Peters compares the font rendering of a Kindle, iPad, newspaper,  magazine, and a paperback book under a USB microscope. I wonder how many years before e-ink becomes indistinguishable from paper media. ∞ Permalink<a href="http://kenclark.me/2010/08/bit-101-kindle-and-ipad-resolution-compared/" rel="bookmark" title="Permanent link to 'BIT-101: Kindle and iPad Resolution Compared'" class="glyph">∞ Permalink</a>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Keith Peters compares the font rendering of a Kindle, iPad, newspaper,  magazine, and a paperback book under a USB microscope.</p>

<p>I wonder how many years before e-ink becomes indistinguishable from paper media.</p>
<p><a href="http://kenclark.me/2010/08/bit-101-kindle-and-ipad-resolution-compared/" rel="bookmark" title="Permanent link to 'BIT-101: Kindle and iPad Resolution Compared'" class="glyph">∞ Permalink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2010/08/bit-101-kindle-and-ipad-resolution-compared/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title><![CDATA[What Does &#8220;Sent from my iPhone&#8221; Really Mean? →]]></title>
		<link><![CDATA[http://37signals.com/svn/posts/2500-lets-be-honest-sent-from-my]]></link>
		<comments>http://kenclark.me/2010/08/what-does-sent-from-my-iphone-really-mean/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 13:00:45 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[All About Apple]]></category>
		<category><![CDATA[Linked List]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://kenclark.me/?p=2108</guid>
		<description><![CDATA[Let’s be honest. “Sent from my iPhone” really means “I’m not going to bother to proofread and correct this because it would take me an extra 30 seconds.” This made me laugh out loud.  So true. ∞ Permalink<a href="http://kenclark.me/2010/08/what-does-sent-from-my-iphone-really-mean/" rel="bookmark" title="Permanent link to 'What Does &#8220;Sent from my iPhone&#8221; Really Mean?'" class="glyph">∞ Permalink</a>
]]></description>
			<content:encoded><![CDATA[<p></p><blockquote>Let’s be honest. “Sent from my iPhone” really means “I’m not going to bother to proofread and correct this because it would take me an extra 30 seconds.”</blockquote>

<p>This made me laugh out loud.  So true.</p>
<p><a href="http://kenclark.me/2010/08/what-does-sent-from-my-iphone-really-mean/" rel="bookmark" title="Permanent link to 'What Does &#8220;Sent from my iPhone&#8221; Really Mean?'" class="glyph">∞ Permalink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2010/08/what-does-sent-from-my-iphone-really-mean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[The Oatmeal: When to Use i.e. in a Sentence →]]></title>
		<link><![CDATA[http://theoatmeal.com/comics/ie]]></link>
		<comments>http://kenclark.me/2010/08/the-oatmeal-when-to-use-i-e-in-a-sentence/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 20:00:36 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[Linked List]]></category>

		<guid isPermaLink="false">http://kenclark.me/?p=2114</guid>
		<description><![CDATA[Another great comic from The Oatmeal. I&#8217;ve heard this explanation a million times, but it&#8217;s amazing how injecting a little humor into it solidifies the usage rules into your brain. ∞ Permalink<a href="http://kenclark.me/2010/08/the-oatmeal-when-to-use-i-e-in-a-sentence/" rel="bookmark" title="Permanent link to 'The Oatmeal: When to Use i.e. in a Sentence'" class="glyph">∞ Permalink</a>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Another great comic from The Oatmeal.</p>

<p>I&#8217;ve heard this explanation a million times, but it&#8217;s amazing how injecting a little humor into it solidifies the usage rules into your brain.</p>
<p><a href="http://kenclark.me/2010/08/the-oatmeal-when-to-use-i-e-in-a-sentence/" rel="bookmark" title="Permanent link to 'The Oatmeal: When to Use i.e. in a Sentence'" class="glyph">∞ Permalink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2010/08/the-oatmeal-when-to-use-i-e-in-a-sentence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[Books vs. E-Books →]]></title>
		<link><![CDATA[http://www.newsweek.com/content/newsweek/2010/08/03/back-story-books-vs-e-books/_jcr_content/par/image.img.jpg/1280849255449.jpg]]></link>
		<comments>http://kenclark.me/2010/08/books-vs-e-books/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 13:00:22 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[ebooks]]></category>
		<category><![CDATA[Linked List]]></category>
		<category><![CDATA[e-books]]></category>

		<guid isPermaLink="false">http://kenclark.me/?p=2098</guid>
		<description><![CDATA[Nice infographic from the folks at Newsweek. ∞ Permalink<a href="http://kenclark.me/2010/08/books-vs-e-books/" rel="bookmark" title="Permanent link to 'Books vs. E-Books'" class="glyph">∞ Permalink</a>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Nice infographic from the folks at Newsweek.</p>
<p><a href="http://kenclark.me/2010/08/books-vs-e-books/" rel="bookmark" title="Permanent link to 'Books vs. E-Books'" class="glyph">∞ Permalink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2010/08/books-vs-e-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[Harry McCracken on the New Kindle →]]></title>
		<link><![CDATA[http://technologizer.com/2010/07/28/new-amazon-kindle/]]></link>
		<comments>http://kenclark.me/2010/07/harry-mccracken-on-the-new-kindle/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 11:40:12 +0000</pubDate>
		<dc:creator>Ken Clark</dc:creator>
				<category><![CDATA[ebooks]]></category>
		<category><![CDATA[Linked List]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[e-books]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[kindle]]></category>

		<guid isPermaLink="false">http://kenclark.me/?p=2096</guid>
		<description><![CDATA[Amazon’s strategy is as sensible as any I can think of for the Kindle–make it more like a book and even less like an iPad, thereby catering to all the folks who want the equivalent of a relatively cheap, highly portable digital paperback rather than the costlier do-it-all device that is Apple’s tablet. For all [...]<a href="http://kenclark.me/2010/07/harry-mccracken-on-the-new-kindle/" rel="bookmark" title="Permanent link to 'Harry McCracken on the New Kindle'" class="glyph">∞ Permalink</a>
]]></description>
			<content:encoded><![CDATA[<p></p><blockquote>Amazon’s strategy is as sensible as any I can think of for the Kindle–make it more like a book and even less like an iPad, thereby catering to all the folks who want the equivalent of a relatively cheap, highly portable digital paperback rather than the costlier do-it-all device that is Apple’s tablet. For all the people who do their electronic reading on the iPad and/or smartphones like, um, me there should be plenty of customers left who want a dedicated device–at least for now.</blockquote>

<p>Bingo.  Pre-ordered mine last night.</p>
<p><a href="http://kenclark.me/2010/07/harry-mccracken-on-the-new-kindle/" rel="bookmark" title="Permanent link to 'Harry McCracken on the New Kindle'" class="glyph">∞ Permalink</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kenclark.me/2010/07/harry-mccracken-on-the-new-kindle/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

