Fix another link
[worg.git] / org-gtd-etc.org
blob88aa5bb5bd5dceeb47deafea916ee4e78c1e76d8
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
6 #+AUTHOR:     Worg people
7 #+EMAIL:      mdl AT imapmail DOT org
8 #+LANGUAGE:   en
9 #+PRIORITIES: A C B
10 #+CATEGORY:   worg
11 #+HTML_LINK_UP:    index.html
12 #+HTML_LINK_HOME:  https://orgmode.org/worg/
14 # This file is released by its authors and contributors under the GNU
15 # Free Documentation license v1.3 or later, code examples are released
16 # under the GNU General Public License v3 or later.
18 # This file is the default header for new Org files in Worg.  Feel free
19 # to tailor it to your needs.
21 * Org and GTD
23 #+index: GTD!Tutorials
25 Org-mode is flexible enough to implement many different ways of
26 organizing your projects.  A frequently discusses scheme is [[http://www.davidco.com/][David
27 Allen's]] strategy for [[https://en.wikipedia.org/wiki/GTD][Getting Things Done]].  But it is clearly not the
28 only way to us Org-mode for planning.  Here are a couple of links
29 related to this topic.
31     - [[https://nicolas.petton.fr/][Nicolas Petton]] has written a post on his setup of [[https://emacs.cafe/emacs/orgmode/gtd/2017/06/30/orgmode-gtd.html][Orgmode for GTD]].
33     - [[http://johnwiegley.com][John Wiegley]] has written an excellent document describing his way of
34       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
35       enhancements of his setup: [[https://orgmode.org/list/m2myw3fa2f.fsf@newartisans.com][emacs-orgmode-2962]], [[https://orgmode.org/list/m21wc7dz4r.fsf@newartisans.com][emacs-orgmode-3629]]
37     - [[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
38       of GTD and how he implements them in Org-mode.  There is also a
39       [[https://orgmode.org/worg/org-tutorials/orgtutorial_dto-fr.html][french translation]] of this document.
41       + More recently, Charles Cave has written another tutorial on [[http://members.optusnet.com.au/~charles57/GTD/gtd_workflow.html][his GTD
42         workflow in org-mode]], which includes a nice section on effort
43         estimates and custom agenda commands for GTD.
45     - There have been several threads on emacs-orgmode@gnu.org related to
46       GTD, the most important ones are:
48       + [[https://orgmode.org/list/ud59ipf8o.fsf@juniper.net][Another GTD question]], which contains a discussion about GTD and
49         org-mode.
50       + In the same thread, there is a [[https://orgmode.org/list/76f7cd71190bcff68e57e71d163fe49f@science.uva.nl][post by Carsten]] summarizing several
51         options for implementing GTD in org-mode.
52       + [[https://orgmode.org/list/m1wt9pr1y4.fsf@bertrand.carcosa.net][GTD, Projects and Next Actions in org-mode]] is a thread where
53         several people describe their personal setup.
54       + The [[https://orgmode.org/list/20071230181116.GE20947@atlantic.linksys.moosehall][SOMEDAY/MAYBE vs. low priorities]] thread contains a
55         discussion about priorities that is quite instructive.
56       + Here is a [[https://lists.gnu.org/archive/html/emacs-orgmode/2007-12/msg00281.html][very instructive post]] by Pete Phillips explaining
57         why David Allen's book is the best place to start learning GTD
58         and that the Internet and Org-mode should only come into the
59         game later, when you start thinking about the implementation.
60         And since doing GTD the right way will give you lots of free
61         time, don't forget to listen to [[http://www.detox-jazz.co.uk/][Pete's music]]!
63     - Also on the web you can find information about how people are
64       setting up Org-mode to fit their habits.  A few examples:
66       + This [[http://www.brool.com/?p=82][blog post]] shows a very simple and clear GTD setup.
68     - This tutorial on [[file:org-tutorials/org-custom-agenda-commands.org][custom agenda commands]] offers a few examples of
69       how to make GTD reviews easier using custom agenda searches.
71 * Org and Pomodoro
73 #+index: Pomodoro
75 [[http://www.pomodorotechnique.com][Pomodoro]] is a time management technique.  In [[https://orgmode.org/list/AANLkTinZ5u5+1-SE5ptjoCsYVj0rHDTXx9SbbqKyadee@mail.gmail.com][this thread]], Frédéric Couchet
76 describes how he uses Org for Pomodoro:
78 : I always start a clock when I work on a task. And for the Pomodoro
79 : technique I use also the org-timer module with some configuration.
81 : Activate the org-timer module :
83 : (add-to-list 'org-modules 'org-timer)
85 : Set a default value for the timer, for example :
87 : (setq org-timer-default-timer 25)
89 : Modify the org-clock-in so that a timer is started with the default
90 : value except if a timer is already started :
92 : (add-hook 'org-clock-in-hook (lambda ()
93 :       (if (not org-timer-current-timer)
94 :       (org-timer-set-timer '(16)))))