1 #+OPTIONS: H:3 num:nil toc:nil \n:nil ::t |:t ^:t -:t f:t *:t tex:t d:(HIDE) tags:not-in-toc
2 #+STARTUP: align fold nodlcheck hidestars oddeven lognotestate
3 #+SEQ_TODO: TODO(t) INPROGRESS(i) WAITING(w@) | DONE(d) CANCELED(c@)
4 #+TAGS: Write(w) Update(u) Fix(f) Check(c)
5 #+TITLE: Org for GTD and other Task managment systems
7 #+EMAIL: mdl AT imapmail DOT org
12 # This file is the default header for new Org files in Worg. Feel free
13 # to tailor it to your needs.
15 [[file:index.org][{Back to Worg's index}]]
19 #+index: GTD!Tutorials
21 Org-mode is flexible enough to implement many different ways of
22 organizing your projects. A frequently discusses scheme is [[http://www.davidco.com/][David
23 Allen's]] strategy for [[http://en.wikipedia.org/wiki/GTD][Getting Things Done]]. But it is clearly not the
24 only way to us Org-mode for planning. Here are a couple of links
25 related to this topic.
27 - [[http://johnwiegley.com][John Wiegley]] has written an excellent document describing his way of
28 using Org-mode as a [[http://www.newartisans.com/2007/08/using-org-mode-as-a-day-planner/][day planner]]. See also some later messages for
29 enhancements of his setup: [[http://article.gmane.org/gmane.emacs.orgmode/2963][emacs-orgmode-2962]], [[http://article.gmane.org/gmane.emacs.orgmode/3629][emacs-orgmode-3629]]
31 - [[http://members.optusnet.com.au/charles57/Creative/][Charles Cave]] has written an [[http://members.optusnet.com.au/~charles57/GTD/orgmode.html][article/tutorial]] about the basic elements
32 of GTD and how he implements them in Org-mode. There is also a
33 [[http://orgmode.org/worg/org-tutorials/orgtutorial_dto-fr.html][french translation]] of this document.
35 + More recently, Charles Cave has written another tutorial on [[http://members.optusnet.com.au/~charles57/GTD/gtd_workflow.html][his GTD
36 workflow in org-mode]], which includes a nice section on effort
37 estimates and custom agenda commands for GTD.
39 - There have been several threads on emacs-orgmode@gnu.org related to
40 GTD, the most important ones are:
42 + [[http://thread.gmane.org/gmane.emacs.orgmode/683][Another GTD question]], which contains a discussion about GTD and
44 + In the same thread, there is a [[http://article.gmane.org/gmane.emacs.orgmode/715][post by Carsten]] summarizing several
45 options for implementing GTD in org-mode.
46 + [[http://thread.gmane.org/gmane.emacs.orgmode/523][GTD, Projects and Next Actions in org-mode]] is a thread where
47 several people describe their personal setup.
48 + The [[http://thread.gmane.org/gmane.emacs.orgmode/4915][SOMEDAY/MAYBE vs. low priorities]] thread contains a
49 discussion about priorities that is quite instructive.
50 + Here is a [[http://thread.gmane.org/gmane.emacs.orgmode/4832/focus%3D4854][very instructive post]] by Pete Phillips explaining
51 why David Allen's book is the best place to start learning GTD
52 and that the Internet and Org-mode should only come into the
53 game later, when you start thinking about the implementation.
54 And since doing GTD the right way will give you lots of free
55 time, don't forget to listen to [[http://www.detox-jazz.co.uk/][Pete's music]]!
57 - Also on the web you can find information about how people are
58 setting up Org-mode to fit their habits. A few examples:
60 + This [[http://www.brool.com/?p=82][blog post]] shows a very simple and clear GTD setup.
62 - This tutorial on [[file:org-tutorials/org-custom-agenda-commands.org][custom agenda commands]] offers a few examples of
63 how to make GTD reviews easier using custom agenda searches.
69 [[http://www.pomodorotechnique.com][Pomodoro]] is a time management technique. In [[http://article.gmane.org/gmane.emacs.orgmode/29347][this thread]], Frédéric Couchet
70 describes how he uses Org for Pomodoro:
72 : I always start a clock when I work on a task. And for the Pomodoro
73 : technique I use also the org-timer module with some configuration.
75 : Activate the org-timer module :
77 : (add-to-list 'org-modules 'org-timer)
79 : Set a default value for the timer, for example :
81 : (setq org-timer-default-timer 25)
83 : Modify the org-clock-in so that a timer is started with the default
84 : value except if a timer is already started :
86 : (add-hook 'org-clock-in-hook (lambda ()
87 : (if (not org-timer-current-timer)
88 : (org-timer-set-timer '(16)))))