<?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>davidnunez.com &#187; gtd</title>
	<atom:link href="http://www.davidnunez.com/tag/gtd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidnunez.com</link>
	<description>David Nunez lives, wonders, tinkers and builds in Boston.</description>
	<lastBuildDate>Mon, 12 Jul 2010 15:51:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>What we can learn about multitasking from machines</title>
		<link>http://www.davidnunez.com/2008/11/04/what-we-can-learn-about-multitasking-from-machines/</link>
		<comments>http://www.davidnunez.com/2008/11/04/what-we-can-learn-about-multitasking-from-machines/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 15:31:05 +0000</pubDate>
		<dc:creator>davidnunez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[multitasking]]></category>
		<category><![CDATA[prodctivity]]></category>

		<guid isPermaLink="false">http://www.davidnunez.com/blog/2008/11/04/what-we-can-learn-about-multitasking-from-machines/</guid>
		<description><![CDATA[I&#8217;ve been thinking a lot recently about focus and dealing with many projects at once. I&#8217;ve heard many people say that it is difficult, if not impossible, to be 100% committed to more than one endeavor at any time. Furthermore, the more stuff you have on your plate, the more everything simultaneously suffers. In an [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been thinking a lot recently about focus and dealing with many projects at once. I&#8217;ve heard many people say that it is difficult, if not impossible, to be 100% committed to more than one endeavor at any time. Furthermore, the more stuff you have on your plate, the more everything simultaneously suffers. In an opportunity dense world, not everything has equal value. Indeed, I can relate to having spent too much time on value-poor projects in pursuit of a paycheck. I can identify at least a couple of occasions this year where really amazing opportunities had to be passed over because I was in the middle of client work deadlines.</p>

<p><strong><span style="font-weight: normal;"><a href="http://weblogsky.com">Jon Lebkowsky</a> writes about the <a href="http://weblogsky.com/2008/11/03/attention-multitasking-and-persistent-panic/">difficulty of multitasking</a></span></strong></p>

<blockquote>
  <p><strong><span style="font-weight: normal;"><span style="font-family: Verdana; font-size: 11px;">I was good at balancing many tasks, I could keep a lot of balls in the air without dropping them. As I matured, I realized that depth has more value than breadth, and in recent years I’ve been trying to learn to focus and do a few things well.</span></span></strong></p>
</blockquote>

<p>Jon is an interesting guy who is smart and involved in many worthwhile projects. I like to think that most of my friends fall into this category of diverse interests and passions. But how do we cope? When a thousand things come at you and all of them seem equally interesting or even lucrative at the onset, how do you decide which are most important? I&#8217;m still figuring out what my personal filters need to be.</p>

<p>In the meantime, there are projects to complete and things to accomplish.</p>

<p><strong>How computers multitask</strong><br /></p>

<p>I distinctly remember a project in a computer architecture class where we designed multitasking systems and applications that ran on top of them.</p>

<p>Inside your PC is a device called the Central Processing Unit (CPU) which is, loosely, the &#8220;brain&#8221; of the computer. Its primary function is to do math as quickly as possible.<br /></p>

<p>When somebody says they have a 3.0Ghz computer, they are referring to the CPU&#8217;s speed at doing math. 3.0Ghz translates into 3 billion arithmetic operations per second.</p>

<p>We&#8217;re only counting very simple binary operations (add, subtract, bitshift, etc). However, if you do enough small bits of math, and you do them very fast (ex, 3 billion per second), things like youtube videos and email emerge.<br /></p>

<p>When you turn on your computer, you likely have dozens of programs that load automatically. The computer itself runs an operating system (ex. Windows or OS X) that, in turn, has dozens or hundreds of processes that need to run all the time, like the subsystems that deal with file management or the mouse cursor display. As soon as we load our email program or web browser, the computer adds a whole new set of threads of activity on top of the current workload.</p>

<p>So you are taking the limited resource of tasks per second and dividing it up among a large set of activities. That&#8217;s why when you have 50 applications open at once, you might notice the computer starting to drag (or why you have to reboot every once in a while to &#8220;clear the deck.&#8221;)<br /></p>

<p>However, from our human perspective, most of the time, it appears the computer is not even breaking a sweat despite the myriad tasks it&#8217;s completing about every second. Never mind that you can easily identify the CPU on an opened computer because it usually has it&#8217;s own cooling fan or large spiky projections that help distribute the heat generated by so much math. The computer works really hard to be that fast.<br /></p>

<p>Here&#8217;s the thing: our puny human brains are actually faster. MUCH faster. But we&#8217;ll get to that in a little bit.</p>

<p>The CPU can, roughly, do only one math operation at a time. Most interesting things a computer can do require billions of math operations to complete. If a computer only had to do one interesting thing at a time that required multiple steps or tasks, the fastest way to complete that single problem is to begin at the beginning and work through until it&#8217;s completed (i.e. not to get sidetracked doing anything off of the critical path).</p>

<p>So let&#8217;s look at an example.</p>

<p>Suppose a computer has a problem that requires 10 small math operations to complete and lets say that the computer can only process 10 math operations a second. This means the computer will accomplish this problem in 1 second:</p>

<p><br />
<img src="http://www.davidnunez.com/blog/wp-content/uploads/2008/11/untitled.jpg" width="307" height="72" alt="Untitled.jpg" /></p>

<p>It follows that if a CPU can work only one small step at a time, then if it has 2 complicated projects to complete each with 10 small steps, it takes 20 steps, or 2 seconds to complete. The diagram below shows the computer only working on one complicated project at a time. It completes the first project and then starts the second project. This is called &#8220;sequential processing.&#8221;<br /></p>

<p><img src="http://www.davidnunez.com/blog/wp-content/uploads/2008/11/untitled-1.jpg" width="491" height="77" alt="Untitled-1.jpg" /></p>

<p>If computers actually worked that way, we would be so frustrated that we would bang our heads on our keyboards and probably spend more time outside.<br /></p>

<p>Right now, your computer is doing, easily, a few million extremely complicated processes (ex. the video rendering that causes these words to show up at the right place on your screen). If you had to wait for the first million projects to complete before the computer started the next million, it would take minutes for your mouse to move a couple pixels in any direction.</p>

<p>So we need something like this:</p>

<p><br />
<img src="http://www.davidnunez.com/blog/wp-content/uploads/2008/11/untitled-2.jpg" width="498" height="59" alt="Untitled-2.jpg" /></p>

<p>Notice how we haven&#8217;t saved any time at all. However, the <em>perception</em> is that lots of things are finishing at around the same time. That&#8217;s all computer multitasking is about &#8212; it&#8217;s just getting things finished at a time which seems acceptable to the end user.</p>

<p>For complex problems which require many steps, the computer maintains a set of holders in its memory called &#8220;registers.&#8221; At any given time, as the computer is working through a multi-step problem, it can take the state of everything it is working on in its CPU and put all the values into some of the registers. It can also load up a different collection of values from another group of registers and pick up where it left off. This is basically how the CPU can keep track of many complicated problems in various states of completion. This process is called &#8220;context switching&#8221; and happens every so often (i.e. millions of times per second.)<br /></p>

<p>We can amend our previous example by adding context switching tasks. The worst case scenario has you switching projects after every task. Let&#8217;s simplify and say that a context switch takes the same amount of time as any other small task.</p>

<p><br />
<img src="http://www.davidnunez.com/blog/wp-content/uploads/2008/11/untitled-3.jpg" width="500" height="37" alt="Untitled-3.jpg" /></p>

<p>Whoa! We almost doubled the amount of time required to complete just two projects by adding context switching. In fact: <strong><em>w</em></strong><strong><em>e get exponential increases of time for every new project we add a multitasked project just because of the overhead of having to think about a different set of information.</em></strong></p>

<p>Computers deal with this in several ways:</p>

<ul>
  <li>They optimize the time it takes to context switch by storing as minimal amount of information as necessary to continue working on a problem.</li>

  <li>The engineers who build CPUs design chips so they are physically able to context switch faster than anything else.</li>

  <li>They add more brains. The only way a computer can physically do more than one math problem at a time is by adding additional CPUs. So when we hear &#8220;Quad-core CPU&#8221; you have 4 math machines working at the exact same time. This adds a whole new layer of complication because how you split up a problem among multiple processors will affect the speed of your computer. The Saguaro 2 supercomputer has hundreds and hundreds of core CPUs and requires elaborate water cooling systems to keep it from melting down, but can handle <a href="http://www.sciencedaily.com/releases/2008/10/081029084044.htm">50 trillion math operations per second</a>.</li>

  <li>They can reduce the number of times they context switch by chunking their problems differently. Rather than switch between every task, for example, they might switch between every 5th task.</li>

  <li>They can pre-process complicated tasks so that they are prioritized and broken up into parts that will complete faster. Major branches of computer science deal with the serious math behind this approach.</li>
</ul>

<p><strong><span style="font-weight: normal;">Multitasking is a tough problem for a machine. There&#8217;s a huge amount of computer science around how you schedule and prioritize tasks and how they are broken down so that the most complicated projects don&#8217;t consume too many resources at the wrong time. <em><strong>Many times a &#8220;faster&#8221; computer is not faster at all. The software is just tweaked, via mathematics, to deliver finished projects sooner. Projects which deliver the most perceptual impact (ex. graphics processing) are usually prioritized.</strong></em></span><br /></strong></p>

<p><strong>Human Multitasking</strong><br /></p>

<p>Our brains are capable of about 100 000 000 000 000 000 operations per second. That is at least a hundred thousand times faster than the fastest super computer requiring all that water cooling and government money.</p>

<p>So why are we so bad at multitasking?</p>

<p>We, thankfully, do not perceive each of the trillions of operations required to observe, wonder, tinker and build things in our world around us. On a conscious level, we do not manage the the tiny tasks of our brain computers.</p>

<p>We operate on a higher level. Our self-awareness is an application running on top of a really fast wet operating system. However, as is of any abstraction, as we simplify and aggregate functions, we start lose flexibility and power. We don&#8217;t have complete control over ourselves. We are prone to mental illness (bugs in our synapse programming), there are daemon processes that run on autopilot, backing up our memories and making sure the graphics displays of our visual processing render with a reasonable precision. Reasonable, but not perfect.</p>

<p>What&#8217;s a puny human mind to do when we can&#8217;t add CPUS (yet) and are limited by our core OS? We have to reduce our context switching. It&#8217;s the only way to get multiple interesting things done.</p>

<ol>
  <li>Eliminate tasks to reduce context switching.</li>

  <li>Chunk tasks so you get as much done on one project before you must switch to another.</li>

  <li><strong>Focus on projects which provide the most perceptual impact. Those projects which provide you the most value, recognition, and velocity towards your passions should deserve more cpu time.</strong></li>

  <li>The final task of a project is the most important task. All effort should be placed on getting the final task crossed off the list. &#8220;The quicker you finish, the quicker you finish.&#8221;</li>
</ol>

<p>I think those four things are easier said than done.</p>

<p>As a parting shot, after reading many self-help productivity books and blogs, trying to implement system after system of productivity, and listening to people who might know better, I&#8217;ve come to the conclusion that getting things done can actually be boiled down to one word:</p>

<p><strong><span style="text-decoration: underline;"><span style="font-size: 24px;">Decide.</span></span></strong></p>

<p><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidnunez.com/2008/11/04/what-we-can-learn-about-multitasking-from-machines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On dormant blogs and completing projects</title>
		<link>http://www.davidnunez.com/2008/08/05/on-dormant-blogs-and-completing-projects/</link>
		<comments>http://www.davidnunez.com/2008/08/05/on-dormant-blogs-and-completing-projects/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 17:50:25 +0000</pubDate>
		<dc:creator>davidnunez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[davidnunez.com]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[nowhabit]]></category>

		<guid isPermaLink="false">http://www.davidnunez.com/blog/2008/08/05/on-dormant-blogs-and-completing-projects/</guid>
		<description><![CDATA[I am currently ramping up to reinvigorate my blog / online presence / personal brand / social media strategy, etc. etc.

What you are seeing on my blog today is a temporary placeholder until I can officially "relaunch."

I've recently moved to the East Coast (Somerville, MA) and have been doing some Big Thinking about where I'm going with my work, life, etc. Part of this is a renewed emphasis on ego-building online. It's easier now than ever, and I'm really exhausted by seeing uninteresting people have all the fun.

However, as an antidote to my bad habits of taking on too many low-value projects and passive aggressively making the last 20% of ongoing projects drag on and on, I have been trying to implement <a href="http://www.calnewport.com/blog">Cal Newport's</a> idea of a <a href="http://www.scotthyoung.com/blog/2007/10/18/the-art-of-the-finish-how-to-go-from-busy-to-accomplished/">completion-centric productivity</a>.]]></description>
			<content:encoded><![CDATA[<p>I am currently ramping up to reinvigorate my blog / online presence / personal brand / social media strategy, etc. etc.</p>

<p>What you are seeing on my blog today is a temporary placeholder until I can officially &#8220;relaunch.&#8221;</p>

<p>I&#8217;ve recently moved to the East Coast (Somerville, MA) and have been doing some Big Thinking about where I&#8217;m going with my work, life, etc. Part of this is a renewed emphasis on ego-building online. It&#8217;s easier now than ever, and I&#8217;m really exhausted by seeing uninteresting people have all the fun.</p>

<p>However, as an antidote to my bad habits of taking on too many low-value projects and passive aggressively making the last 20% of ongoing projects drag on and on, I have been trying to implement <a href="http://www.calnewport.com/blog">Cal Newport&#8217;s</a> idea of a <a href="http://www.scotthyoung.com/blog/2007/10/18/the-art-of-the-finish-how-to-go-from-busy-to-accomplished/">completion-centric productivity</a>. In a nutshell:</p>

<ul>
  <li>Make a list of the areas of your life (ex. Professional, Relationships, Physical)</li>

  <li>Under each category, brainstorm on all the projects you have going on for that &#8220;sphere&#8221; of your existence.</li>

  <li>Identify the top 1 or 2 in each category that, if you finished them w/in 2 weeks, would make the most positive impact (however you&#8217;d like to measure that). Break down large projects into mini-projects that will take around 2 weeks to finish. I aimed for 8 or so projects.</li>

  <li>Create a worksheet listing of these projects. (Excel worked well for this) Next to each project, identify a <strong>completion criteria.</strong> This is a narrative that describes what your world will look like when that project is finished and out of your hair forever. (hint: write this in the past test. ex: &#8220;I submitted the article proposal to the editor.&#8221;)</li>

  <li>Print this out and carry it with you everywhere. This is your script for the next 2 weeks. You have to adopt a mentality that no matter what happens, you will make as much forward progress <strong>towards completion</strong> on these projects as you can every single day. At the end of 2 weeks, you should have completed every single project on that list.</li>

  <li>If other project ideas come up (and they will tempt you over and over), you need to put them in a holding bin. Nothing new can come on your list. If you are in the thick of it and don&#8217;t have your act together, trust me, new stuff can wait a couple weeks. Just write it on the back of your worksheet.</li>

  <li>Here is the key that make it work for me: I only work on one project at a time in 4 hour chunks. I also have been blocking in &#8220;me time&#8221; for things like sleep, hanging out w/ the SO, and exercise (a la <a href="http://www.amazon.com/Now-Habit-Overcoming-Procrastination-Guilt-Free/dp/1585425524/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1217958311&amp;sr=8-1&amp;tag=davidnunezcom-20">The Now Habit</a>)/ All of these are scheduled into iCal and are treated with the seriousness of meetings and appointments.</li>
</ul>

<p>For me, this means I&#8217;ve been pulling late nighters to just get festering projects off my plate so.</p>

<p>It also means &#8220;Relaunch the blog&#8221; is a project that&#8217;s currently sitting in the holding bin until 8/17. So you should see a relaunch w/in 2 weeks after that (i.e. around the end of the month).</p>

<p>I am staring at my holding bin (and backlog of other projects) and see lots of extremely valuable, lucrative, exciting, and downright fun ideas. It is so tempting to drop the current list and just start working on those.</p>

<p>But that kind of action got me into lots of trouble before Hence, rigor.</p>

<p><img src="http://www.davidnunez.com/blog/wp-content/uploads/2008/08/davidnunezcom.jpg" width="480" height="385" alt="davidnunez.com.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidnunez.com/2008/08/05/on-dormant-blogs-and-completing-projects/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Meeting edict and energy vacuums</title>
		<link>http://www.davidnunez.com/2007/11/13/meeting-edict-and-energy-vacuums/</link>
		<comments>http://www.davidnunez.com/2007/11/13/meeting-edict-and-energy-vacuums/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 15:24:56 +0000</pubDate>
		<dc:creator>davidnunez</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[meetings]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://www.davidnunez.com/2007/11/13/meeting-edict-and-energy-vacuums/</guid>
		<description><![CDATA[As a freelancer, I often get a feeling of isolation when working on projects; sometimes this leads to a lack of accountability (i.e. peer pressure). I miss more, however, the riffing and brainstorming that happens when people willingly get together, share ideas, and are <em>genuinely interested in each others’ (or the collective) success</em>. (and it has to be face-to-face… virtual meetings can’t replicate the energy building of a good brainstorming session).]]></description>
			<content:encoded><![CDATA[<p>I have a new meeting edict.</p>

<p>I had 2 rather inspiring, back-to-back meetings this morning.</p>

<p>I wish I could have spent the entire day with the two people I met this morning (one a friend who’s work I admire and I feel comfortable BS’ing with, and the other a stranger-soon-to-be-friend w/ similar interests and demonstrating <em>good</em> ideas), I’d rather have 2 of these people in my address book than 200 people who I “friended” on linked-in.</p>

<p>(I usually prefer to meet in the afternoon when my energy is starting to wane for “thinking work”, but the first meeting was at 7, on purpose, so we could get a jump on the day)</p>

<p>I’ve decided that from now on, I’m only going to meet up in person with people who energize me to talk about things that they or I am passionate about; motivated people who are excited about what they are doing should be the bread and butter of my peoplespace.</p>

<p>(Meeting to “take care of business” can happen via email or on the phone, when at all possible)</p>

<p>As a freelancer, I often get a feeling of isolation when working on projects; sometimes this leads to a lack of accountability (i.e. peer pressure). I miss more, however, the riffing and brainstorming that happens when people willingly get together, share ideas, and are <em>genuinely interested in each others’ (or the collective) success</em>. (and it has to be face-to-face… virtual meetings can’t replicate the energy building of a good brainstorming session).</p>

<p>The corollary to this edict is my new policy of avoiding the energy vacuums who don’t listen at all and are constantly talking about their own stuff with zero expressed interest in your own work. These people tend to hang out a lot on things like facebook and consider the number of “friends” in their lists some sort of score. Bah. They like to spam their list with bragging announcements of what they are up to and expect you to spam all your contacts on their behalf. I’m happy to do this for real friends or for projects that seem worthwhile. However, the shameless self-promoter who fires off project announcement after project announcement (usually leading to a half-assed implementation) gets tiresome and at the very least hurts their credibility (and mine, if I indeed relay their messages). Instead of energizing me, I usually wilt in their presence.</p>

<p>At the very least, without any kind of relationship tending on their part (ex. a very basic quid pro quo or a random “how’s it going” email), I think I can definitively say: I really don’t have time for them.</p>

<p>I have a Cocoa app in the works, incidentally, that might help me out with this hang-up. I think I’ll call something iLove or LoveBot or LoveYa.</p>

<p>Building systems to collect a large social network is one thing. Building tools that urge you to deepen your relationships with friends is a whole other animal.</p>

<p>Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidnunez.com/2007/11/13/meeting-edict-and-energy-vacuums/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spam and Email System</title>
		<link>http://www.davidnunez.com/2007/11/01/spam-and-email-system/</link>
		<comments>http://www.davidnunez.com/2007/11/01/spam-and-email-system/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 10:44:44 +0000</pubDate>
		<dc:creator>davidnunez</dc:creator>
				<category><![CDATA[Build]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://www.davidnunez.com/2007/11/01/spam-and-email-system/</guid>
		<description><![CDATA[I think I have finally nailed down a reasonable email handling / spam fighting strategy after about a year of tweaking. I&#8217;m going to slowly describe my system over a series of posts. It&#8217;s pretty good, if I do say so myself. Here are a couple of ranty things I&#8217;d like to just put out [...]]]></description>
			<content:encoded><![CDATA[<p>I think I have finally nailed down a reasonable email handling / spam fighting strategy after about a year of tweaking.</p>

<p>I&#8217;m going to slowly describe my system over a series of posts.  It&#8217;s pretty good, if I do say so myself.</p>

<p>Here are a couple of ranty things I&#8217;d like to just put out on the table, first.</p>

<p>I wish I had a quarter for whenever somebody says, &#8220;Oh, man, I get SOOO many email messages every day that I don&#8217;t have time to read them all, much less respond.&#8221;</p>

<p>It&#8217;s usually followed by some quantification, &#8220;I get over 1000 messages everyday&#8221;  and <em>always</em> includes some corollary about, &#8220;I subscribe to 100 mailing lists&#8221; and &#8220;I have 20 email addresses I check&#8221; and &#8220;that doesn&#8217;t even include SPAM!&#8221;</p>

<p>I&#8217;m going to carry around blue ribbons and certificates for whenever somebody says this.</p>

<p>What they are trying to explain to you is that they are important.  And important people get lots of email.  And since they are more important than you, they mask their immense fear of being discovered as disorganized or type-B or luddites  with a cloud of digital detritus that enables them to defraud their families and employers by engaging ineffectively with pointless busywork rather than actually contributing to society.</p>

<p>Here&#8217;s the reality check:</p>

<ol>
<li>Human beings can&#8217;t process thousands of messages a day.</li>
<li>Good news.  Most email does not deserve your attention.</li>
<li>You will not have to act on all of the messages you receive each day.</li>
<li>Saying &#8220;I have too many pieces of email&#8221; is admitting you have poor skills at prioritizing.</li>
<li>Shut up and deal&#8230; we&#8217;re all faced with the same (or worse) email and spam barrage.</li>
<li>If you can&#8217;t deal with your avalanche of email, then you and your system are outdated and broken.  Upgrade, dinosaur.</li>
<li>Will the world end or will people suffer and die if you don&#8217;t handle all your email?  If so, why the hell are you talking to me instead of clearing your inbox?</li>
<li>Coping mechanisms: Hire assistants.  Hit the delete key.  Go read <a href="http://lifehacker.com">Lifehacker</a>.  Streamline your system.  Get in touch with yourself. Climb a mountain and meditate on what&#8217;s truly important.  </li>
</ol>

<p>So here&#8217;s me: 4000 messages daily (including SPAM, including mailing lists, including automated notices) that pass through my multiple servers hosting multiple email addresses.</p>

<p>The system I use filters that down to roughly 20 per day that MAY require a response or action.  They all come to the one inbox.</p>

<p>Using some Mail.app plugins to triage, route, and deal, I can handle these in under 30 minutes.</p>

<p>The rest are handled by autoresponders or are filed away through a set of rules.  I&#8217;ve recently implemented some steps that automagically archive older stuff into a MySQL database in the most absurdly remote, almost impossible chance I&#8217;d need to refer back to those posts some years down the line.</p>

<p>That beats <a href="http://en.wikipedia.org/wiki/Pareto_principle">Pareto</a> 20/80 easily, and I&#8217;m going to share how I do it.</p>

<p><strong>Pre-requisites</strong>:   Go read <a href="http://www.43folders.com/izero">Merlin Mann&#8217;s inbox zero</a> series for some theory.  Implement and live with his system for a while.  Only then should you consider my tweaks.
You&#8217;ll need a computer running OS X using Mail.app as your primary client.  You&#8217;ll have to purchase roughly $100 worth software. (ask yourself how much your time is worth before balking at that).</p>

<p>One other pet peeve:  It&#8217;s &#8220;email messages&#8221; or &#8220;email posts&#8221; or &#8220;pieces of email&#8221; or <em>sometimes</em> just &#8220;email.&#8221;  It is NEVER CORRECT to say &#8220;emails.&#8221;  This is the same as never saying, &#8220;I&#8217;m going to the post office to drop off mails.&#8221;</p>

<p>And yes&#8230; with my backlog of owed responses, I&#8217;m self-aware enough to recognize &#8220;Pot. Kettle. Black.&#8221;  That&#8217;s why I&#8217;m projecting so strongly.</p>

<p>Upcoming: Mail.app baseline setup. IMAP, Inbox, Archives, and Smart Folders I Use
<!--break--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidnunez.com/2007/11/01/spam-and-email-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applescript to transform mail.app message to GTDAlt inbox item</title>
		<link>http://www.davidnunez.com/2007/03/25/applescript-to-transform-mailapp-message-to-gtdalt-inbox-item/</link>
		<comments>http://www.davidnunez.com/2007/03/25/applescript-to-transform-mailapp-message-to-gtdalt-inbox-item/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 03:56:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[365experiments]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[GTDAlt]]></category>
		<category><![CDATA[Mail.app]]></category>
		<category><![CDATA[textmate]]></category>
		<category><![CDATA[Tinker]]></category>

		<guid isPermaLink="false">http://www.davidnunez.com/2007/03/25/applescript-to-transform-mailapp-message-to-gtdalt-inbox-item/</guid>
		<description><![CDATA[I&#8217;m currently using GTDAlt in TextMate as my GTD processing system. It&#8217;s a text based system, so it&#8217;s upgradable, portable, etc. Through the TextMate bundle framework, you get some nice collating of contexts, etc. GTDAlt does rely on some proprietary syntax, but it&#8217;s pretty basic and easily parsable. There is rudimentary support for iterating through [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently using <a href="http://skiadas.dcostanet.net/afterthought/2006/06/25/details-on-the-gtdalt-bundle/">GTDAlt</a> in <a href="http://macromates.com/">TextMate</a> as my GTD processing system.  It&#8217;s a text based system, so it&#8217;s upgradable, portable, etc.</p>

<p>Through the <a href="http://macromates.com/">TextMate</a> bundle framework, you get some nice collating of contexts, etc.</p>

<p><a href="http://skiadas.dcostanet.net/afterthought/2006/06/25/details-on-the-gtdalt-bundle/">GTDAlt</a> does rely on some proprietary syntax, but it&#8217;s pretty basic and easily parsable.</p>

<p>There is rudimentary support for iterating through items in an inbox.txt file to generate GTD items.</p>

<p>I created an applescript which will take the selected message in Mail.app and create a properly formated item, using the subject and message: url (you must have <a href="http://www.indev.ca/MailTags.html">MailTags</a> installed so the message: protocol is recognized).</p>

<p>This means I&#8217;ll get action items with links to specific messages in my GTD system.</p>

<p>I partner this with a <a href="http://www.indev.ca/MailActOn.html">Mail Act-On</a> rule&#8230; so when I hit ctrl-1, a <a href="http://skiadas.dcostanet.net/afterthought/2006/06/25/details-on-the-gtdalt-bundle/">GTDAlt</a> item gets created, the message is tagged &#8220;@action&#8221;, and it&#8217;s sent to my one archive folder in one step.</p>

<p>In true GTD fashion, this should only be used for messages that take longer than 2 minutes to respond to.  In reality, I need to get better at firing off quick responses to things (or liberally using the delete key).  Otherwise, it&#8217;s likely I&#8217;ll use this to just procrastinate email items away into a black hole.</p>

<p><a href="/assets/2007/3/26/Mail_to_TMGTD.scpt">Download the script</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidnunez.com/2007/03/25/applescript-to-transform-mailapp-message-to-gtdalt-inbox-item/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>If you want it done right&#8230;</title>
		<link>http://www.davidnunez.com/2006/10/16/if-you-want-it-done-right/</link>
		<comments>http://www.davidnunez.com/2006/10/16/if-you-want-it-done-right/#comments</comments>
		<pubDate>Mon, 16 Oct 2006 19:01:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[procrastination]]></category>
		<category><![CDATA[Tinker]]></category>
		<category><![CDATA[tock]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://www.davidnunez.com/2006/10/16/if-you-want-it-done-right/</guid>
		<description><![CDATA[I have spent way too many hours of my life searching for the ideal GTD system. I&#8217;ve been through &#8216;em all: diy planner, kinkless, frictionless, tracks, index cards, printable ceo, and even plain text files. Usually, I&#8217;ll spend an entire afternoon just transferring data back and forth&#8230; precious, irretrievable minutes lost on pointless migrations. Every [...]]]></description>
			<content:encoded><![CDATA[<p>I have spent way too many hours of my life searching for the <em>ideal</em> GTD system.  I&#8217;ve been through &#8216;em all: <a href="http://diyplanner.com/">diy planner</a>, <a href="http://kinkless.com/">kinkless</a>, <a href="http://www.twinforces.com/Frictionless/Frictionless.html">frictionless</a>, <a href="http://www.rousette.org.uk/projects/">tracks</a>, <a href="http://www.43folders.com/2004/09/03/introducing-the-hipster-pda/">index cards</a>, <a href="http://davidseah.com/archives/2005/09/23/the-printable-ceo/">printable ceo</a>, and even plain <a href="http://todotxt.com/">text files</a>.  Usually, I&#8217;ll spend an entire afternoon just transferring data back and forth&#8230; precious, irretrievable minutes lost on pointless migrations.</p>

<p>Every platform comes very close to being good enough to <em>trust</em>.  However, all of them fall short for various reasons.  ANY system will fail if it&#8217;s not a complete pleasure to use.    Systems that do not <em>urge</em> me into action are going to disappoint me, no matter how clever.</p>

<p>I&#8217;ve noticed a new crop of apps starting to appear in the scene and something struck me about attempts at GTD nirvana. They all essentially do the same thing: they present information in table, outline, and list formats.  None of them do much more than help organize a set of lists &#8211; this is a great <em>start</em>, though; even David Allen says it all comes down to lists.</p>

<p>The point of this post isn&#8217;t to enumerate why these platforms don&#8217;t turn me on.  Let&#8217;s just leave it at, &#8220;they don&#8217;t.&#8221;  (Not entirely true, every one of them has elements that I could see co-opting for my ultimate platform, but none of them get me excited about doing things on their own).</p>

<p>I believe that there can exist a GTD framework that not only handles day-to-day battlefields, but can also tap into some different cognitive access points.   Why does everything have to be lists?  Why not ephemeral clouds?  Why not <em>physical</em> devices that urge me into activity by nudging me in the right direction?  Do any GTD apps <em>really</em> help you decide what to do next, or don&#8217;t they all just present a too broad set of information?</p>

<p>They need to be smarter&#8230; <em>What if our GTD platform showed you not all the things you COULD get done to fill your time, but only the very next thing you should get done to evolve your soul?</em></p>

<p>At the end of the day, yes, I realize that <em>I&#8217;m</em> the only one that can make me get stuff done, and I will fully own up to the reality that this endless tinkering is, indeed, a form of procrastination.</p>

<h1>That being said, I am pretty convinced that I&#8217;m the only one that can build the better system.</h1>

<p>&#8230; the better system as defined by &#8220;what works for me.&#8221;</p>

<p>A long, long time ago (okay, 2003), I hinted at an application I was hacking away at called <a href="http://davidnunez.com/articles/2003/02/18/lighting-a-fire-under-my-rump">Tock</a>.  It was basically GTD before everyone else had read the book.</p>

<p>I even had a prototype.  It committed &#8220;paradigm violence.&#8221;</p>

<p>It should probably be dusted off.</p>

<p>I realized though, that my working style has changed and I really need to field test anything I come up with in a rapid development environment.  So, over just a couple hours this weekend, I threw together the Project-Task-Context model in Ruby on Rails.</p>

<p><a href="http://davidnunez.com/files/ZZ541EF73F.jpg"><img src="http://davidnunez.com/files/ZZ541EF73F-tm.jpg" height="100" alt="Zz541Ef73F" width="160" /></a></p>

<h2>&#8221;Ugh!  Not another web 2.0 wannabe app!&#8221;</h2>

<p>Exactly.  However, RoR makes for a good prototyping environment&#8230; this will help me get the backend right.  It will let me tinker on experiments like, &#8220;Tock, give me the 9 things I should work on today.&#8221;</p>

<p>I was very close to just forking <a href="http://www.rousette.org.uk/projects/">Tracks</a>, but I realized that there was too much in there just to support AJAX user interfaces.  Tock isn&#8217;t about that.  Tock laughs at web browsers.  Hell, he laughs at mice and keyboards.</p>

<p>You&#8217;ll see&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidnunez.com/2006/10/16/if-you-want-it-done-right/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plans are easy.  Starting is hard.</title>
		<link>http://www.davidnunez.com/2006/08/09/plans-are-easy-starting-is-hard/</link>
		<comments>http://www.davidnunez.com/2006/08/09/plans-are-easy-starting-is-hard/#comments</comments>
		<pubDate>Wed, 09 Aug 2006 08:11:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[Live and Observe]]></category>

		<guid isPermaLink="false">http://www.davidnunez.com/2006/08/09/plans-are-easy-starting-is-hard/</guid>
		<description><![CDATA[Starting is always the hardest part, dont you think? I definitely have a deep infection of plan-it-out syndrome. studentl.inc: Think About Planning Ahead [5x5s]: 5. Start now. Do something.Some people are addicted to planning (or the idea of planning). They get excited about all the tools you can use to plan, all the latest, hip [...]]]></description>
			<content:encoded><![CDATA[<p>Starting is always the hardest part, dont you think?  I definitely have a deep infection of plan-it-out syndrome.</p>

<p><a href="http://studentlinc.typepad.com/studentlinc/2005/09/think_about_pla.html">studentl.inc: Think About Planning Ahead [5x5s]</a>:
<br /></p>

<blockquote>5. Start now.  Do something.<br />Some people are addicted to planning (or the idea of planning).  They get excited about all the tools you can use to plan, all the latest, hip ideas that planning gurus offer.  But their planning ends up being all that there is&#8230;just planning.  Planning is not a means to an end.  We plan so that we can accomplish (both efficiently and effectively) the tasks that need to be done.   I believe that planning is vital to accomplishment.  But if we never start, then we are wasting time.  Implement your plans. </blockquote>

<p><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidnunez.com/2006/08/09/plans-are-easy-starting-is-hard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 20 minute rule &#8211; Taking action that leads to the Build</title>
		<link>http://www.davidnunez.com/2006/08/08/the-20-minute-rule-taking-action-that-leads-to-the-build/</link>
		<comments>http://www.davidnunez.com/2006/08/08/the-20-minute-rule-taking-action-that-leads-to-the-build/#comments</comments>
		<pubDate>Tue, 08 Aug 2006 21:31:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Creativity Framework]]></category>
		<category><![CDATA[dash]]></category>
		<category><![CDATA[dayjob]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[nowhabit]]></category>
		<category><![CDATA[procrastination]]></category>
		<category><![CDATA[Tinker]]></category>

		<guid isPermaLink="false">http://www.davidnunez.com/2006/08/08/the-20-minute-rule-taking-action-that-leads-to-the-build/</guid>
		<description><![CDATA[Earlier today I sent out what amounted to a call to arms to friends and mailing lists. I was urging people to drive towards the objective all creative people should have: to build things. I urged people to spend 20 minutes today working on whatever creative endeavor they have brewing in the back burner. Move [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier today I sent out what amounted to a <a href="http://davidnunez.com/articles/2006/08/08/dorkbot-in-august-cancelled">call to arms</a> to friends and mailing lists. I was urging people to drive towards the objective all creative people should have: <a href="http://davidnunez.com/articles/2006/05/18/building-is-the-objective">to build things</a>.</p>

<p>I urged people to spend 20 minutes today working on whatever creative endeavor they have brewing in the back burner.  Move that project into the center of the radar for just 20 minutes.</p>

<p>20 minutes is a very small chunk of time.  In any given project, however, there are any number of minor pieces which can be built in that time.  The encouragement today was to spend 20 minutes just building.  This needs to be <em>focused</em> working time without deviation from activity.  This is inspired by Merlin Mann&#8217;s <a href="http://www.43folders.com/2005/09/08/kick-procrastinations-ass-run-a-dash/">dash</a> concept &#8211; a good way to beat procrastination is to just begin on a small chunk&#8230;  Just commit to cranking activity out for a small amount of time.  When the dash is over, you&#8217;ve easily beaten the first and only hurdle of procrastination: starting.</p>

<p>Running constantly on my OSX desktop is a small timer program called <a href="http://perso.orange.fr/philippe.galmel/index_mac.html">Minuteur</a>.  This has worked wonders for me.</p>

<p><a href="http://www.davidnunez.com/files/minuteur-1.jpg"><img src="http://www.davidnunez.com/files/minuteur-1-tm.jpg" height="100" alt="Minuteur-1" width="218" /></a></p>

<p>I just set it at 20 minutes and hit go.  I focus on a single piece of a project until the timer runs out.  Minuteur pops up a &#8220;TIME&#8217;S UP!&#8221; window and I can choose to add 5, 10 or 15 more minutes.  I often do that simply because I&#8217;m on a roll.  I&#8217;ll also sometimes drop in 10 minutes between working periods for guilt-free play time.  That&#8217;s usually when I do my RSS reading or grab coffee.</p>

<p>Admittedly, my responsibilities are fewer than, say, a single mom with 2 toddlers who is trying to finish college, but I often find myself devoting 100% of my useful and usable time into other peoples&#8217; projects.   Day job work spills into after hours and suddenly I&#8217;m barely left with enough energy to get myself home, much less exercise or make a good meal, and much MUCH less build a stunningly cool and beautiful machine puppet.</p>

<p>Since when did I put &#8220;making somebody else lots of money sweating blood over their vision&#8221; at a higher priority than &#8220;following what my soul and mind&#8217;s eye are screaming at me?&#8221;</p>

<p>That needs to end.</p>

<p>It&#8217;s not to say that we all don&#8217;t need day jobs.  We have mortgages to pay, for crying out loud.  However, I think the mistake I often make is letting the day job crowd out the dreams.</p>

<p>In The Now Habit and there&#8217;s this concept of the &#8220;Unschedule&#8221;.  Briefly, it recommends starting your calendar by planning in all of your &#8220;me&#8221; time: Block out sleeping, eating, commuting, and exercising time.  More importantly, block out your play time &#8211; time in which you are simply NOT working.  This is time for guilt free play; guilt free play, incidentally is where I think the best creativity is born.</p>

<p>I also recommend scheduling 20 minutes a day as an <em>unbreakable</em> appointment with yourself every day for every project which you genuinely care about completing with all your heart.</p>

<p>Only then do you block out work appointments: meetings, etc.</p>

<p>Whatever&#8217;s left is your day job working time.</p>

<p>If you are anything like me, you&#8217;ll be very surprised at how little time you have left over.    It&#8217;s no wonder we feel overwhelmed at work sometimes &#8211; we operate as if we actually had 40+ hours a week to do the jobs we&#8217;re assigned. And as <a href="http://en.wikipedia.org/wiki/Parkinson's_law">Parkinson&#8217;s law</a> suggests, we stretch tasks to fill those phantom 40+ hours.  Whoops.  It&#8217;s like buying working hours on credit&#8230; we don&#8217;t have that much time to complete the tasks on that schedule and so we tend to go home over budget.  Of COURSE our energy is low and all we want to do is crash.</p>

<p>So let&#8217;s start operating with a more realistic understanding of what time we have and how fast we should work and to what standards we should aspire.  That is to say, we start learning when to stop tinkering to get to perfection and just start building&#8230; putting projects in the &#8220;done&#8221; bucket faster and with less energy.</p>

<p>I would never suggest that you go about your day job without the highest integrity and quality of work that you can provide.  During work hours, you work, and you work hard; you deliver more value to your employers and clients than they are paying for: 110%, team-player, all that &#8211; Work with the mantra &#8220;I am here to do nothing but add value.&#8221;</p>

<p>I believe that a self-fulfilling prophecy / psychological trick starts to happen.  When you realize your time is limited at the day job and also at the passion job, you start to move with grace and efficiency.  You don&#8217;t feel the need to slack off, mostly because you are aware of how little time you have to accomplish your jobs.</p>

<p>However, you must remember that you have <em>unbreakable</em> appointments with your personal passion projects.  When it comes time to work on those, you <em>will</em> find a way to work on them and summon all your energy to build them with the same amount of integrity.</p>

<p>I suggest 20 minutes a day at first.  I would guess this will increase over time.</p>

<p><em>caveat:</em> I think it&#8217;s a bit presumptuous for somebody like me, who often struggles with Getting Things Done, to write an article about how better to get things done.  Take it with a grain of salt.  I&#8217;m only regurgitating advice I&#8217;ve culled from many other sources.</p>

<p>&lt;!&#8211; technorati tags start &#8211;></p>

<p>Technorati Tags: <a href="http://www.technorati.com/tag/day job">day job</a>, <a href="http://www.technorati.com/tag/gtd">gtd</a>, <a href="http://www.technorati.com/tag/procrastination">procrastination</a></p>

<p>&lt;!&#8211; technorati tags end &#8211;></p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidnunez.com/2006/08/08/the-20-minute-rule-taking-action-that-leads-to-the-build/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
