<?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/"
	xmlns:georss="http://www.georss.org/georss" >

<channel>
	<title>Toddot.net &#187; productivity</title>
	<atom:link href="http://toddot.net/category/productivity/feed/" rel="self" type="application/rss+xml" />
	<link>http://toddot.net</link>
	<description>Todd Harris: The World Is My Cubicle; A Roaming Scientist Looks at 40</description>
	<lastBuildDate>Sat, 21 Jan 2012 19:20:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Finally! A clean config for Gmail IMAP, Mail, and the iPhone</title>
		<link>http://toddot.net/2009/01/23/finally-a-clean-config-for-gmail-imap-mail-and-the-iphone/</link>
		<comments>http://toddot.net/2009/01/23/finally-a-clean-config-for-gmail-imap-mail-and-the-iphone/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 15:48:22 +0000</pubDate>
		<dc:creator>tharris</dc:creator>
				<category><![CDATA[productivity]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://toddot.net/?p=499</guid>
		<description><![CDATA[
Noah has posted a clear and concise HOWTO for getting GMail IMAP to work consistently between Mail and the iPhone.
There are many, many tutorials on how to do this but none get it quite right if you are trying to sync an iPhone and Mail.app with GMail accounts. I was constantly having problems where mail [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>Noah has posted a clear and concise HOWTO for <a href="http://complexdiagrams.com/2009/01/19/imap-for-gmail-mailapp-iphone/">getting GMail IMAP to work consistently between Mail and the iPhone</a>.</p>
<p>There are many, many tutorials on how to do this but none get it quite right if you are trying to sync an iPhone and Mail.app with GMail accounts. I was constantly having problems where mail deleted on my iPhone would not be deleted in Mail.  Problems solved.  This tutorial should work equally well for iPod Touch users.</p>
<div class="topsy_widget_data topsy_theme_blue" style="float: left;margin-left: 0.em;"><script type="text/javascript" src="http://button.topsy.com/widget/retweet-big?url=http://toddot.net/2009/01/23/finally-a-clean-config-for-gmail-imap-mail-and-the-iphone/&amp;title=Finally%21+A+clean+config+for+Gmail+IMAP%2C+Mail%2C+and+the+iPhone&amp;theme=blue&amp;nick=toddot&amp;order=count,retweet,badge&amp;txt_tweet=tweet&amp;txt_retweet=retweet"></script></div>
]]></content:encoded>
			<wfw:commentRss>http://toddot.net/2009/01/23/finally-a-clean-config-for-gmail-imap-mail-and-the-iphone/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Installing Tracks, Ruby-based GTD software</title>
		<link>http://toddot.net/2006/06/29/installing-tracks-ruby-based-gtd-software/</link>
		<comments>http://toddot.net/2006/06/29/installing-tracks-ruby-based-gtd-software/#comments</comments>
		<pubDate>Thu, 29 Jun 2006 16:32:33 +0000</pubDate>
		<dc:creator>tharris</dc:creator>
				<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://toddot.net/wp/?p=215</guid>
		<description><![CDATA[
Quick start installation guide for Tracks GTD management software.

[todd@micos ~:263]$  cd ~/src/
[todd@micos src:264]$  curl -O http://www.rousette.org.uk/mint/pepper/orderedlist/downloads/download.php?file=http%3A//www.rousette.org.uk/projects/files/tracks-1.041.zip
[todd@micos src:265]$  cd ../projects/
[todd@micos projects:266]$  tar xzf ../src/tracks*
# Set up a suitable mysql database
[todd@micos projects:267]$ mysql -uroot -p
mysql> CREATE DATABASE tracks;
mysql> GRANT ALL PRIVILEGES ON tracks.* TO todd@localhost \
IDENTIFIED BY &#8216;password&#8217; WITH GRANT OPTION;
# Setup config [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>Quick start installation guide for <a href="http://www.rousette.org.uk/projects/">Tracks GTD management software</a>.</p>
<div class="code">
<p>[todd@micos ~:263]$  cd ~/src/<br />
[todd@micos src:264]$  curl -O http://www.rousette.org.uk/mint/pepper/orderedlist/downloads/download.php?file=http%3A//www.rousette.org.uk/projects/files/tracks-1.041.zip<br />
[todd@micos src:265]$  cd ../projects/<br />
[todd@micos projects:266]$  tar xzf ../src/tracks*</p>
<p># Set up a suitable mysql database<br />
[todd@micos projects:267]$ mysql -uroot -p<br />
mysql> CREATE DATABASE tracks;<br />
mysql> GRANT ALL PRIVILEGES ON tracks.* TO todd@localhost \<br />
IDENTIFIED BY &#8216;password&#8217; WITH GRANT OPTION;</p>
<p># Setup config files<br />
[todd@micos projects:268]$ cd tracks-1.041/config<br />
[todd@micos config:269]$<br />
[todd@micos config:270]$ cp database.yml.template database.yml<br />
[todd@micos config:271]$ cp environment.rb.template environment.rb<br />
# edit the production and development sections as appropriate)<br />
[todd@micos config:272]$ emacs config database.yml<br />
# Change the &#8220;SALT&#8221; directive to something unique<br />
[todd@micos config:273]$ emacs config/environment.rb<br />
[todd@micos config:274]$ cd ../<br />
[todd@micos tracks-1.041:275]$  mv log.tmpl log</p>
<p># From the main tracks directory<br />
[todd@micos tracks-1.041:276]$ rake migrate<br />
[todd@micos tracks-1.041:277]$ ruby script/server -e production
</p></div>
<div class="topsy_widget_data topsy_theme_blue" style="float: left;margin-left: 0.em;"><script type="text/javascript" src="http://button.topsy.com/widget/retweet-big?url=http://toddot.net/2006/06/29/installing-tracks-ruby-based-gtd-software/&amp;title=Installing+Tracks%2C+Ruby-based+GTD+software&amp;theme=blue&amp;nick=toddot&amp;order=count,retweet,badge&amp;txt_tweet=tweet&amp;txt_retweet=retweet"></script></div>
]]></content:encoded>
			<wfw:commentRss>http://toddot.net/2006/06/29/installing-tracks-ruby-based-gtd-software/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Kinkless GTD</title>
		<link>http://toddot.net/2006/06/26/kinkless-gtd/</link>
		<comments>http://toddot.net/2006/06/26/kinkless-gtd/#comments</comments>
		<pubDate>Tue, 27 Jun 2006 00:02:49 +0000</pubDate>
		<dc:creator>tharris</dc:creator>
				<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://toddot.net/wp/?p=213</guid>
		<description><![CDATA[
Okay, whatever I said this weekend has been (almost) completely nullified.  I just discovered the great suite of Kinkless GTD applescripts for OmniOutliner Pro.  Among other features, it includes an iCal integration feature.
Nice.

]]></description>
			<content:encoded><![CDATA[<p></p>
<p>Okay, whatever I said this weekend has been (almost) completely nullified.  I just discovered the great suite of <a href="http://kinkless.com/">Kinkless GTD</a> applescripts for OmniOutliner Pro.  Among other features, it includes an iCal integration feature.</p>
<p>Nice.</p>
<div class="topsy_widget_data topsy_theme_blue" style="float: left;margin-left: 0.em;"><script type="text/javascript" src="http://button.topsy.com/widget/retweet-big?url=http://toddot.net/2006/06/26/kinkless-gtd/&amp;title=Kinkless+GTD&amp;theme=blue&amp;nick=toddot&amp;order=count,retweet,badge&amp;txt_tweet=tweet&amp;txt_retweet=retweet"></script></div>
]]></content:encoded>
			<wfw:commentRss>http://toddot.net/2006/06/26/kinkless-gtd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Much Todo about To-Dos</title>
		<link>http://toddot.net/2006/06/25/much-todo-about-to-dos/</link>
		<comments>http://toddot.net/2006/06/25/much-todo-about-to-dos/#comments</comments>
		<pubDate>Sun, 25 Jun 2006 23:01:10 +0000</pubDate>
		<dc:creator>tharris</dc:creator>
				<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://toddot.net/wp/?p=212</guid>
		<description><![CDATA[
###Using Markdown and Quicksilver to manage project To-Dos
I&#8217;m a compulsive list maker.  I have sticky notes posted on the wall by my front door, Rhodias everywhere, and a Moleskine always in my pocket (grid, not lined, please).
I loved 43 Folders description of the Hipster PDA and have been pouring through Merlin&#8217;s other To-Do list [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>###Using Markdown and Quicksilver to manage project To-Dos<br />
I&#8217;m a compulsive list maker.  I have sticky notes posted on the wall by my front door, Rhodias everywhere, and a <a href="http://www.moleskineus.com/">Moleskine</a> always in my pocket (grid, not lined, please).</p>
<p>I loved <a href="http://43folders.com/">43 Folders</a> description of the <a href="http://www.43folders.com/2004/09/03/introducing-the-hipster-pda/">Hipster PDA</a> and have been pouring through Merlin&#8217;s other To-Do list tips.</p>
<p>###Other approaches to project and time management<br />
Believe me, this is someting I&#8217;ve already explored in some depth.  Although, I&#8217;m already a firm believer in LoFi task management approaches, I&#8217;m a total failure at planner systems like Franklin-Covey.  They are just too structured when working with highly dynamic projects that change from day-to-day let alone hour-to-hour.  I can&#8217;t always accurately predict what I will need to do the next day until I see the morning&#8217;s email.</p>
<p>I&#8217;ve also tried bending bug and project tracking systems like <a href="http://www.bugzilla.org/">Bugzilla</a>, <a href="http://www.mantisbt.org/">Mantis</a>, and <a href="http://www.omnigroup.com/applications/omnioutliner/">OmniOutliner</a> to meet these tasks.  Bugzilla I find to be heinously over-complicated with no clear way to dumb down the interface.  Mantis shows promise but I just don&#8217;t have the time to invest in making it work for my needs.  OminOutliner is a beautiful app but needs a few small additions like DAV publishing and iCal, auto time-stamping and iCal integration to make it truly indispensible.</p>
<p>I&#8217;ve also written my own XML/XSLT fully databased system.  This works well but I hate writing XML and have yet to get around to writing an interface.  Lots of To-Dos just to get my To-Dos up and running.</p>
<p>###Using text files<br />
In the digital realm, I&#8217;ve always used plain text files to manage these lists.  Inspired by some tips at <a href="http://www.43folders.com/2005/12/12/text-setup/">43 Folders</a>, I&#8217;ve decided to stick with the this system but make it more structured and parseable by converting them to <a href="http://daringfireball.net/projects/markdown/">Markdown</a>.  I&#8217;ve also started integrating them into my daily workflow (above and beyond always having them open in their own Xemacs frame) using the phenomenal CLI/GUI integrator <a href="http://quicksilver.blacktree.com/">Quicksilver</a>.</p>
<p>###Advantages/Disadvantages<br />
This approach doesn&#8217;t (yet) give me such things as time-stamping, reporting, email integration, or advanced sharing/publishing that some of the systems listed above might provide.  In addition, I have no way of easily dispatching a completed task, assigning it to someone else for followup, or the creation and searching of archives.</p>
<p>On the other hand, this approach has a low barrier for its use, is text-based and amenable to processing with Perl, and can be integrated into my daily workflow through the use of Quicksilver.</p>
<p>###Requirements<br />
* A directory to store my ToDos (~/todos)<br />
* A series of suitable ToDos like ( ~/todos/wormbase.txt, ~/todos/travel_goals.txt,  ~/personal.txt)</p>
<p>###Things that would be swell<br />
* Automatic publishing and MediaWiki integration<br />
* Email integration<br />
Parse incoming email (perhaps preface subject with &#8220;tag=&#8221; structure and append to the appropriate list.</p>
<div class="topsy_widget_data topsy_theme_blue" style="float: left;margin-left: 0.em;"><script type="text/javascript" src="http://button.topsy.com/widget/retweet-big?url=http://toddot.net/2006/06/25/much-todo-about-to-dos/&amp;title=Much+Todo+about+To-Dos&amp;theme=blue&amp;nick=toddot&amp;order=count,retweet,badge&amp;txt_tweet=tweet&amp;txt_retweet=retweet"></script></div>
]]></content:encoded>
			<wfw:commentRss>http://toddot.net/2006/06/25/much-todo-about-to-dos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

