<?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>Juggling Eggs &#187; Evernote</title>
	<atom:link href="http://sonnygill.net/tag/evernote/feed/" rel="self" type="application/rss+xml" />
	<link>http://sonnygill.net</link>
	<description>Priceless eggs, variable gravity</description>
	<lastBuildDate>Sun, 06 May 2012 19:47:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Creating a daily log in Evernote from Quicksilver</title>
		<link>http://sonnygill.net/programming/evernote-quicksilver-daily-log/</link>
		<comments>http://sonnygill.net/programming/evernote-quicksilver-daily-log/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 01:25:47 +0000</pubDate>
		<dc:creator>sonnygill</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://sonnygill.wordpress.com/?p=61</guid>
		<description><![CDATA[Recently I started using Evernote, and I am loving it so far. If you are looking for a way to organize the &#8220;stuff&#8221; on your computer, check it out. One of the things I am trying to use it for &#8230; <a href="http://sonnygill.net/programming/evernote-quicksilver-daily-log/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I started using <a href="http://evernote.com">Evernote</a>, and I am loving it so far.<br />
If you are looking for a way to organize the &#8220;stuff&#8221; on your computer, check it out.</p>
<p>One of the things I am trying to use it for is to keep a daily log of things I do, so that, at the end of the day or the week, I can check how productive (or not) I have been.</p>
<p>Taking inspiration from <a href="http://www.macosxhints.com/article.php?story=20081002082657926">this story</a> on Mac OS X Hints <img src='http://sonnygill.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> , and with some help from the kind folks at <a href="http://forum.evernote.com/phpbb/viewforum.php?f=43">Evernote developer forum</a>, I put together this simple script to create a note in my daily diary from Quicksilver -<br />
<code><br />
</code></p>
<pre class="brush: python; title: ; notranslate">

property nb : &quot;Daily Diary&quot;

using terms from application &quot;Quicksilver&quot;
 on process text qtxt
 my CreateDailyEvernote(qtxt)
 end process text
end using terms from

on CreateDailyEvernote(txt)
 set t to do shell script &quot;date +'%Y/%m/%d'&quot;
 tell application &quot;Evernote&quot;
 set foundNotes to find notes &quot;notebook:&quot;&quot; &amp; nb &amp; &quot;&quot;&quot; &amp; &quot; intitle:&quot;&quot; &amp; t &amp; &quot;&quot;&quot;
 set found to ((length of foundNotes) is not 0)
 if not found then
 create note with text txt title t notebook nb
 end if
 activate
 end tell
end CreateDailyEvernote
</pre>
<p>This will create a note with title as current date in the format yyyy/mm/dd in &#8220;Daily Diary&#8221; notebook.<br />
At the moment, Evernote Mac scripting API does not allow appending text to an existing note.<br />
Once that is added (a very helpful Andrew McGeachie at the Evernote developer forum has already created a feature request for that), this would be a perfect way for me to keep a log of everything I do during the day.</p>
]]></content:encoded>
			<wfw:commentRss>http://sonnygill.net/programming/evernote-quicksilver-daily-log/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

