Questions tagged [gtd]

GTD is Getting Things Done, David Allen's productivity book.

24 questions
36
votes
1 answer

Renaming Objects in RStudio context sensitive within entire Project

I have an issue when developing an R project using RStudio. I create an object, and then realise later, that I want to give it another name. I then have to manually change the name, which in larger projects is annoying and often results in errors,…
David Go
  • 740
  • 1
  • 6
  • 13
16
votes
8 answers

Use bug tracker to get things done and manage personal tasks?

This is slightly off-topic, but can only be answered by programmers and is useful to many programmers: Do you think it is useful to use a bug tracking system to keep track of personal todo items and to Get Things Done? I have not tried that; in…
Frank
  • 193
  • 1
  • 3
14
votes
4 answers

Finding and removing orphaned web pages, images, and other related files

I am working on a number of websites with files dating back to 2000. These sites have grown organically over time resulting in large numbers of orphaned web pages, include files, images, CSS files, JavaScript files, etc... These orphaned files…
William Edmondson
  • 3,519
  • 3
  • 29
  • 39
11
votes
2 answers

A weekly review in org-mode

I'd like to generate an agenda view from org-mode which includes completed TODO items from the previous week. The following snippet seems like the prefered way to do it from reading the docs. However there are no items displayed in the agenda, only…
zzkt
  • 435
  • 2
  • 12
9
votes
3 answers

Trying out Test-Driven Development

After reading this post I kinda felt in the same position as the guy who asked the question. I love technology and coming up with new ideas to solve real world problems just gets my neurons horny, but the other part of the equation - actually…
Alix Axel
  • 141,486
  • 84
  • 375
  • 483
8
votes
8 answers

Inbox Management (in Outlook)

I've gone back and forth between having an organized inbox and having an inbox with absolutely everything I've received in it. Would you recommend leaving everything in an inbox, or organize it? If you organize it, is there any method to your…
Adam Tegen
  • 23,348
  • 32
  • 115
  • 149
7
votes
2 answers

org-capture and time clocking misbehaving

I am sure some of you may have gathered (from my recent barrage of questions) that I am setting up org-mode on emacs and walking through Brent Hansen's impressive org set up. He is a clocking fanatic, and I like a lot of the stuff he does to track…
krishnan
  • 631
  • 9
  • 20
6
votes
3 answers

Are there any GTD apps that sync with any of the common bug tracking apps?

I'm trying to decide on a GTD app. Does anyone know of one that automatically syncs with Trac or, better yet, FogBugz? My suspicion is that none does. Which leaves me with writing a script that does it for me. Things stores its data in XML, but…
James A. Rosen
  • 60,042
  • 58
  • 173
  • 260
5
votes
1 answer

Why use org-mobile-push/pull?

I have managed my todo-lists for some years with Emacs Org-mode and really like it. The files are kept in a WebDAV folder on a server to keep them synced. However, since I use more and more tablets and smartphones an app to access the files would…
namnor
  • 130
  • 1
  • 6
4
votes
4 answers

Recommend a note taking wiki-like "super" application

I need a note taking wiki-like "super" application. I'll start with a rundown of applications that I've already evaluated and/or used: Wikidpad Pros: fast switching between the edit and view modes; nice syntax (especially for pasting code…
Singulus
  • 1,828
  • 2
  • 16
  • 15
4
votes
6 answers

Work in several projects at the same time

I wonder who of you can work on several projects the same day, dedicating only a short piece of time for each one. Or if you are able to work in the same hour, on two or three or more projects at the same time. I have so many things to do, that I am…
asdf
  • 1,951
  • 4
  • 24
  • 29
3
votes
1 answer

Composite pattern for GTD app

This is a continuation of one of my previous questions Here are my classes. #Project class class Project: def __init__(self, name, children=[]): self.name = name self.children = children #add object def add(self,…
mandroid
  • 2,189
  • 5
  • 23
  • 35
2
votes
3 answers

Python classes for simple GTD app

I'm trying to code a very rudimentary GTD app for myself, not only to get organized, but to get better at coding and get better at Python. I'm having a bit of trouble with the classes however. Here are the classes I have so far: class Project: …
mandroid
  • 2,189
  • 5
  • 23
  • 35
1
vote
1 answer

Get a view of scheduled tasks excluding some TODO states on Org Mode

Here are the todo states I use (on GNU Emacs 24.5.1): (setq org-todo-keywords '((type "TODO" "NEXT" "DONE" "STARTED" "WAITING" "FROZEN" "REFERENCE" "CANCELLED" "DELEGATED"))) I would like to create a custom view showing all the scheduled tasks for…
crocefisso
  • 557
  • 1
  • 5
  • 20
1
vote
1 answer

Cheap, hosted Tracks installation?

(I am not sure whether this belongs on StackOverflow or SuperUser. Admins: feel free to move it.) I am trying to get started with GTD, and I would like to use the excellent tool Tracks. However, I don't have a server for it to run on, and I would…
Martin Wiboe
  • 1,960
  • 2
  • 25
  • 45
1
2