<?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>Adam Merrifield { the collective } &#187; copy</title>
	<atom:link href="http://adam.merrifield.ca/tag/copy/feed/" rel="self" type="application/rss+xml" />
	<link>http://adam.merrifield.ca</link>
	<description>the collective thoughts and web works of adam merrifield</description>
	<lastBuildDate>Sun, 05 Sep 2010 09:59:00 +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>RapidWeaver Add-ons Version Identifier</title>
		<link>http://adam.merrifield.ca/2009/11/03/rapidweaver-add-ons-version-identifier/</link>
		<comments>http://adam.merrifield.ca/2009/11/03/rapidweaver-add-ons-version-identifier/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 18:12:28 +0000</pubDate>
		<dc:creator>Adam Merrifield</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[applescript]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[finder]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[plist]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rapidweaver]]></category>
		<category><![CDATA[rw]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[seydoggy]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://seydoggy.com/?p=597</guid>
		<description><![CDATA[One thing RapidWeaver does poorly &#8212; at this current moment &#8212; is help the end user determine the product version they are using on any given 3rd party add-on. Knowing your add-ons (theme or plugin) version number is critical when asking for support and is often one of the first things the developer will ask [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://images.seydoggy.com/RapidWeaver_Add-ons_Version_Identifier-20091103-105935.jpg" alt="RapidWeaver Add-ons Version Identifier" class="image-left"/>One thing RapidWeaver does poorly &#8212; at this current moment &#8212; is help the end user determine the product version they are using on any given 3rd party add-on. Knowing your add-ons (theme or plugin) version number is critical when asking for support and is often one of the first things the developer will ask you for.</p>

<p>If you know where the add-ons are kept (<code>~/Library/Application Support/RapidWeaver/</code>) then you might be able to determine a plugin or themes version number with the Finder, or if you have RapidWeaver open you can find out a plugin&#8217;s version by opening the plugin browser, or if you show a themes package contents and&#8230;</p>

<p>Well, I like to have these sorts of things at my fingertips and do as little thinking as possible, so I wrote an AppleScript to gather this information for me no matter where I am or what I am doing<a href="http://seydoggy.com/2009/11/03/rapidweaver-add-ons-version-identifier/#a_091103113228">*</a>:</p>

<pre><code>-- file types to choose from
set rwTypeArray to {"Theme", "Plugin"}

-- choose from those file types
set rwTypeLong to {choose from list rwTypeArray ¬
    with prompt "Which RapidWeaver product type ¬
        you like to find the version of?" ¬
    with title "Theme or Plugin"} as string

-- logic from result
if rwTypeLong is "Theme" then
    set rwType to "rwtheme"
else
    set rwType to "rwplugin"
end if

-- get name of hard drive
tell application "System Events"
    set diskName to (get name of startup disk) as string
end tell

-- get name of user
set userName to (do shell script "whoami") as string

-- select file from RW directory
tell application "Finder"
    set rwFile to (choose file with prompt ¬
        "Please select your RapidWeaver " &amp; rwTypeLong &amp; ":" ¬
        default location (diskName &amp; ":Users:" &amp; userName &amp; ¬
            ":Library:Application Support:RapidWeaver" as alias) ¬
        of type rwType without invisibles)

    -- read version number
    tell application "System Events"
        set rwInfo to (get version of the file (rwFile as string))
    end tell

    -- and display it
    if rwInfo = "" then
        display dialog ¬
            "It seems that your " &amp; rwTypeLong &amp; ¬
                " doesn't have a version number that I can read. ¬
                Sorry.\n\n¬
                Would you like me to reveal it's ¬
                package contents for you?" ¬
            buttons {"Cancel", "Yes"} default button (2)
        set rwPath to rwFile &amp; "Contents" as text
        open rwPath
    else
        display dialog "The version information:\n\n" &amp; rwInfo &amp; ¬
            "\n\n ...has been copied to your clipboard." ¬
        buttons {"OK"} default button (1)
        -- copy to clipboard
        set the clipboard to rwInfo

    end if
end tell
</code></pre>

<h3>Notes</h3>

<p><span id="a_091103113228">* If a theme is to have it&#8217;s version number read, it must have an Info.plist in it&#8217;s package contents. Some theme developers do not include this file. For those that don&#8217;t, the script will reveal the theme&#8217;s package contents so that you can inspect the version number at the bottom of the Theme.plist file</span></p>

<h3>Download</h3>

<p>Get your fresh copy of <a href="http://www.codecollector.net/view/BB433BE1-0BD0-43C6-AE7A-CFEE8E623AB8" title="RapidWeaver_Addons_Version.scpt">RapidWeaver&#95;Addons&#95;version.scpt</a> from CodeCollector.net</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://adam.merrifield.ca/2009/02/18/life-as-a-theme-developer/" title="Life As a Theme Developer (February 18, 2009)">Life As a Theme Developer</a> (1)</li>
	<li><a href="http://adam.merrifield.ca/2009/10/27/creating-unique-ids-for-anything/" title="Creating Unique ID&#039;s For&#8230; Anything! (October 27, 2009)">Creating Unique ID&#039;s For&#8230; Anything!</a> (1)</li>
	<li><a href="http://adam.merrifield.ca/2007/07/30/pathfinder-is-the-only-finder-you-need/" title="Pathfinder is the only Finder you need (July 30, 2007)">Pathfinder is the only Finder you need</a> (0)</li>
	<li><a href="http://adam.merrifield.ca/2008/02/01/web-search-with-quicksilver-the-definitive-how-to/" title="Web Search with Quicksilver: how-to (February 1, 2008)">Web Search with Quicksilver: how-to</a> (3)</li>
	<li><a href="http://adam.merrifield.ca/2009/01/26/use-rapidweavers-pathto-syntax-in-javascript-files/" title="Use RapidWeaver&#039;s %pathto()% syntax in javascript files (January 26, 2009)">Use RapidWeaver&#039;s %pathto()% syntax in javascript files</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://adam.merrifield.ca/2009/11/03/rapidweaver-add-ons-version-identifier/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating Unique ID&#039;s For&#8230; Anything!</title>
		<link>http://adam.merrifield.ca/2009/10/27/creating-unique-ids-for-anything/</link>
		<comments>http://adam.merrifield.ca/2009/10/27/creating-unique-ids-for-anything/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 01:14:59 +0000</pubDate>
		<dc:creator>Adam Merrifield</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[applescript]]></category>
		<category><![CDATA[bundles]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[paste]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[seydoggy]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[son]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[textmate]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[unique id]]></category>

		<guid isPermaLink="false">http://www.seydoggy.com/2009/10/27/creating-unique-ids-for-anything/</guid>
		<description><![CDATA[There are numerous reasons you might need a unique identifier on something; you upload files with common names to the same ftp site, you use the id attribute for internal links on a blog that might display multiple posts (the chances of repeating yourself are good), you want to sign your emails with a unique, [...]]]></description>
			<content:encoded><![CDATA[<p>There are numerous reasons you might need a unique identifier on something; you upload files with common names to the same ftp site, you use the id attribute for internal links on a blog that might display multiple posts (the chances of repeating yourself are good), you want to sign your emails with a unique, one time id for your own verification&#8230; Whatever the case, a unique id could come in handy.</p>

<p>The easiest thing to do is use a timestamp and a shell script can do that easily enough for us. For everyday use, the year, month, day, hour, minutes and seconds should suffice (unless you need multiple unique id&#8217;s per second). Here is how the bash script would look:</p>

<pre><code>date +%y%m%d%H%M%S
</code></pre>

<p>Entering this string into the Terminal.app would yield a twelve digit number like this:</p>

<pre><code>091027191546
</code></pre>

<p>The first pair of digits is the year, the second pair is the month, the third pair is the day, then the hour, minutes and seconds (all in pairs). Run this script in Terminal.app as many times as you like and you will never get the same number.</p>

<p>So you could enter this into your terminal every time you wanted a unique id&#8230; or you could make this shell script work <em>for</em> you from anywhere.</p>

<h2>TextMate Snippet</h2>

<p><img src="http://images.seydoggy.com/Unique_ID_TextMate_Snippet_in_Bundle_Editor-20091027-191359.jpg" alt="TextMate Snippet for Unique ID" class="image-right"/> TextMate makes running shell scripts dead easy &#8212; all you need to do is create your own snippet. To do this:</p>

<ul>
<li>open your Bundle editor &#8212; <code>Bundles &gt; Bundle Editor &gt; Show Bundle Editor</code> <strong><em>or</em></strong> <code>⌃⌥⌘B</code></li>
<li>create a new bundle (if you don&#8217;t already have your own) from the + icon</li>
<li>within that bundle create a new snippet from the + icon</li>
<li><p>in the edit window, type:</p>

<pre><code>`date +%y%m%d%H%M%S`
</code></pre></li>
<li>define a Tab Trigger or Key Equivalent</li>
<li>leave the scope selector blank to have the snippet apply to all language types</li>
</ul>

<p>Now you have a snippet that is accessible in any language scope you use TextMate for. This is handy if you write reference links in HTML articles, such as:</p>

<pre><code>&lt;a href="#note_091027194043"&gt;See this note&lt;/a&gt;
&lt;div id="note_091027194043"&gt;
    This is the special note I wanted you to see.
&lt;/div&gt;
</code></pre>

<p>Or for reference style links in MarkDown:</p>

<pre><code>Check out our site, [seyDoggy][a_091027194631], for some
really cool tips and tricks.

[a_091027194631]: http://www.seydoggy.com/  "seyDoggy's really cool site"
</code></pre>

<h3>Download</h3>

<p>Download your fresh copy of &#8220;<a href="http://www.seydoggy.com/downloads/UniqueID.tmSnippet.zip" title="Download from seyDoggy.com">Unique ID.tmSnippet</a>&#8221; from seyDoggy.com.</p>

<h2>AppleScript to clipboard</h2>

<p><img src="http://images.seydoggy.com/UniqueID_AppleScript_for_creating_unique_id_s-20091027-195458.jpg" alt="UniqueID AppleScript for creating unique id's" class="image-right"/>Say you&#8217;re not a TextMate user but you still want a quick way to run this shell script with as little effort as possible. AppleScript makes quick work of this task with it&#8217;s <code>do shell script</code> functionality. We need to make an AppleScript that runs the shell script, then copies the results to the clipboard. Then we can paste that result into what ever we&#8217;re working with at the time; file renaming, email signing, etc&#8230;</p>

<p>Here is how the script looks:</p>

<pre><code>set uniqueID to (do shell script "date +%y%m%d%H%M%S")
set the clipboard to uniqueID
display alert "\"" &amp; uniqueID &amp; "\"" &amp; "Has been copied to your ¬
    clipboard" giving up after 1
</code></pre>

<h3>Download</h3>

<p>Get your fresh copy of &#8220;<a href="http://www.codecollector.net/view/55260B3D-599D-489A-BC7E-C51AF597B2D0" title="Download from CodeCollector.net">UniqueID.scpt</a>&#8221; from CodeCollector.net</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://adam.merrifield.ca/2009/11/03/rapidweaver-add-ons-version-identifier/" title="RapidWeaver Add-ons Version Identifier (November 3, 2009)">RapidWeaver Add-ons Version Identifier</a> (1)</li>
	<li><a href="http://adam.merrifield.ca/2009/02/12/keeping-unused-hard-disks-unmounted/" title="Keeping unused hard disks unmounted (February 12, 2009)">Keeping unused hard disks unmounted</a> (7)</li>
	<li><a href="http://adam.merrifield.ca/2007/11/30/time-machine-a-giant-leap-backward/" title="Time Machine. A giant leap backward. (November 30, 2007)">Time Machine. A giant leap backward.</a> (5)</li>
	<li><a href="http://adam.merrifield.ca/2009/05/13/the-little-know-clipboard-app-that-can/" title="The Little Know Clipboard App That Can (May 13, 2009)">The Little Know Clipboard App That Can</a> (2)</li>
	<li><a href="http://adam.merrifield.ca/2007/03/27/the-bigbox/" title="The BigBox (March 27, 2007)">The BigBox</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://adam.merrifield.ca/2009/10/27/creating-unique-ids-for-anything/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>One of My Old Favorites All Fresh and New</title>
		<link>http://adam.merrifield.ca/2009/07/09/one-of-my-old-favorites-all-fresh-and-new/</link>
		<comments>http://adam.merrifield.ca/2009/07/09/one-of-my-old-favorites-all-fresh-and-new/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 17:26:53 +0000</pubDate>
		<dc:creator>Adam Merrifield</dc:creator>
				<category><![CDATA[Generally]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rw]]></category>
		<category><![CDATA[sitepoint]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.seydoggy.com/2009/07/09/one-of-my-old-favorites-all-fresh-and-new/</guid>
		<description><![CDATA[The postman just delivered my fresh copy of Build Your Own Database Driven Web Site Using PHP &#38; MYSQL, 4th Edition. It&#8217;s not that there was anything wrong with my previous copy, but it was getting a little dated. Plus I am a little nostalgic for this particular publication. With a quick glance I can [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm3.static.flickr.com/2499/3704013627_74d8b4fae3_m.jpg" alt="" class="image-right" style="width:128px;height:auto;" /></p>

<p>The postman just delivered my fresh copy of <em><a href="http://www.sitepoint.com/article/php-mysql-tutorial/" title="Build Your Own Database Driven Web Site Using PHP &amp; MySQL, Fourth Edition [PHP &amp; MySQL Tutorials]">Build Your Own Database Driven Web Site Using PHP &amp; MYSQL, 4th Edition</a></em>. It&#8217;s not that there was anything wrong with my previous copy, but it was getting a little dated. Plus I am a little nostalgic for this particular publication.</p>

<p>With a quick glance I can already see that the book has been restructured quite a bit moving chapters around. I am really looking forward to reading this book again with renewed purpose and updated perspectives.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://adam.merrifield.ca/2008/09/04/welcome-to-the-new-rw-updates/" title="Welcome to the new RW Updates (September 4, 2008)">Welcome to the new RW Updates</a> (0)</li>
	<li><a href="http://adam.merrifield.ca/2008/11/03/seydoggy-is-back-in-the-office/" title="seyDoggy is back in the office. (November 3, 2008)">seyDoggy is back in the office.</a> (0)</li>
	<li><a href="http://adam.merrifield.ca/2008/02/09/im-still-alive/" title="I&#039;m still alive (February 9, 2008)">I&#039;m still alive</a> (0)</li>
	<li><a href="http://adam.merrifield.ca/2007/09/28/i-cant-leave-well-enough-alone/" title="I can&#039;t leave well enough alone (September 28, 2007)">I can&#039;t leave well enough alone</a> (0)</li>
	<li><a href="http://adam.merrifield.ca/2007/09/24/define-your-rss-feed-title/" title="Define your RSS Feed title (September 24, 2007)">Define your RSS Feed title</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://adam.merrifield.ca/2009/07/09/one-of-my-old-favorites-all-fresh-and-new/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Little Know Clipboard App That Can</title>
		<link>http://adam.merrifield.ca/2009/05/13/the-little-know-clipboard-app-that-can/</link>
		<comments>http://adam.merrifield.ca/2009/05/13/the-little-know-clipboard-app-that-can/#comments</comments>
		<pubDate>Wed, 13 May 2009 14:26:54 +0000</pubDate>
		<dc:creator>Adam Merrifield</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[clip board]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[paste]]></category>
		<category><![CDATA[seydoggy]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.seydoggy.com/2009/05/13/the-little-know-clipboard-app-that-can/</guid>
		<description><![CDATA[One thing the Mac OS has repeatedly failed at is a native clip board, one where more then the most recent item is available to you. This has been an ongoing concern of mine for quite some time and I have always been on the lookout for a solution&#8230; a good solution. Back in the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jumpcut.sourceforge.net/" title="Jumpcut makes copy and pasting easy"><img src="http://images.seydoggy.com/Jumpcut_makes_copy_and_pasting_easy-20090513-101718.jpg" alt="Jumpcut makes copy and pasting easy" class="image-right" /></a>One thing the Mac OS has repeatedly failed at is a native clip board, one where more then the most recent item is available to you. This has been an ongoing concern of mine for quite some time and I have always been on the lookout for a solution&#8230; a good solution.</p>

<p>Back in the spring of 2007 I wrote about <a href="http://www.seydoggy.com/2007/03/28/copy-and-paste-and-copy-and-paste/" title="seyDoggy Web and Graphic Design - seyDoggy weblog - my thoughts on the web and the mac">iClip as one possible solution</a> and in fact my dependency on it around that time became so great that I was using it to store passwords, code snippets, oft used text, etc&#8230; All was great until one day, the database became corrupted. Yes, iClip was complex enough that is was storing all my clipboard data, snippets and what not, in a database. <em>Eeeeek!</em></p>

<p>My next <em>notable</em> shift in clipboard management was QuickSilver, <a href="http://www.seydoggy.com/2008/02/01/web-search-with-quicksilver-the-definitive-how-to/" title="seyDoggy Web and Graphic Design - seyDoggy weblog - my thoughts on the web and the mac">for which</a> <a href="http://www.seydoggy.com/2008/01/30/quicksilver-as-a-file-launcher/" title="seyDoggy Web and Graphic Design - seyDoggy weblog - my thoughts on the web and the mac">I have</a> <a href="http://www.seydoggy.com/2007/12/03/convert-icons-revisited/" title="seyDoggy Web and Graphic Design - seyDoggy weblog - my thoughts on the web and the mac">written numerous</a> <a href="http://www.seydoggy.com/2007/03/30/quicksilverhttp/" title="seyDoggy Web and Graphic Design - seyDoggy weblog - my thoughts on the web and the mac">articles</a>. For everything that I used iClip for I was able to use QuickSilvers &#8220;Shelf&#8221; and &#8220;Clipboard History&#8221;. It was a brilliant setup and had them show/hide off the edge of the screen with a couple hot-keys. Then came the inevitable fall of QuickSilver. I can&#8217;t afford to keep monkeying around with sub-alpha builds of various branches so after my nearly three year dependency on QuickSilver I had to finally give it up.</p>

<p>The hole that was left was quickly filled with apps that I already use on a daily basis, like <a href="http://www.mcubedsw.com/software/codecollectorpro" title="M Cubed Software - Code Collector Pro">Code Collector Pro</a> which bore the brunt of my oft used text snippets and auto complete tasks. But I was still left without a good solution for clip board history. So off on a mad search I went, review countless apps that varied in complexity and price range, until I came upon a small, simple, unobtrusive app that does one thing; buffers your clipboard history. <a href="http://jumpcut.sourceforge.net/" title="Jumpcut: Minimalist Clipboard Buffering for OS X">Jumpcut</a> is a simple, open source (and free) clip board history manager that allows you easy access to your clipboard history with a few simple key strokes.</p>

<p>Jumpcut allows you to set up the size of your buffer size (up to 99 clips), hot keys, bezel behaviour, app behaviour and that&#8217;s about it. It doesn&#8217;t get any simpler to use or set up. I have been using this little app heavily on a daily basis since February and never once has it failed me. No hang ups, it&#8217;s never lost my history, it&#8217;s never crashed or caused anything else to crash. It&#8217;s lightweight, responsive and just an overall pleasure to use.</p>

<p><em>This</em> is the app that ought to be a part of Mac OS X.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://adam.merrifield.ca/2008/08/24/the-beauty-of-rapidweaver-meets-the-power-of-textmate/" title="The beauty of RapidWeaver meets the power of TextMate (August 24, 2008)">The beauty of RapidWeaver meets the power of TextMate</a> (0)</li>
	<li><a href="http://adam.merrifield.ca/2009/02/18/life-as-a-theme-developer/" title="Life As a Theme Developer (February 18, 2009)">Life As a Theme Developer</a> (1)</li>
	<li><a href="http://adam.merrifield.ca/2009/10/27/creating-unique-ids-for-anything/" title="Creating Unique ID&#039;s For&#8230; Anything! (October 27, 2009)">Creating Unique ID&#039;s For&#8230; Anything!</a> (1)</li>
	<li><a href="http://adam.merrifield.ca/2007/03/28/copy-and-paste-and-copy-and-paste/" title="Copy and paste and copy and paste&#8230; (March 28, 2007)">Copy and paste and copy and paste&#8230;</a> (1)</li>
	<li><a href="http://adam.merrifield.ca/2009/02/25/auto-mountunmount-your-mac-volumes-when-required/" title="Auto mount/unmount your Mac volumes when required (February 25, 2009)">Auto mount/unmount your Mac volumes when required</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://adam.merrifield.ca/2009/05/13/the-little-know-clipboard-app-that-can/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
