Then I found evernote-mode for emacs and thought I had found the solution. I hadn't. I could see that is was useful, but it didn't really fit with how I work, even though I spend a lot of time in emacs. I realised what I wanted was something like the amazing todo.txt but with Evernote as the backend. Then I found Geeknote and I could tell from the tag line "Are you a geek? Do you like Evernote? Geeknote - is for you!" that I had found what I wanted. I got it installed without too much trouble, and logged in, which I was pleased to see supported the two-step authentication that lets me sleep at nights. I just needed to change the editor to emacs (actually 'emacsclient -t', but that is for another post, maybe) and I was set. I could create new notes, complete with my Secret Weapon GTD tags, edit existing notes, re-tag notes to change priorities, everything I wanted. I love the search functionality and the ability to refer to notes from previous searches simply by their number. I now have set up a bunch of bash aliases to add new tasks and view what I should be doing. It isn't quite there yet but I will tweak and expand on my workflow.
For those that are interested this is in my .bashrc at the moment:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias todo.now='geeknote create --tags @work,1-Now --title ' | |
alias todo.next='geeknote create --tags @work,2-Next --title ' | |
alias todo.soon='geeknote create --tags @work,3-Soon --title' | |
alias todo.later='geeknote create --tags @work,4-Later --title' | |
alias todo.someday='geeknote create --tags @work,5-Someday --title' | |
alias todo.waiting='geeknote create --tags @work,6-Waiting --title' | |
alias show.todo.all='geeknote find --tags @work --notebooks "Actions Pending" ' | |
alias show.todo.now='geeknote find --tags @work,1-Now --notebooks "Actions Pending" ' | |
alias show.todo.next='geeknote find --tags @work,2-Next --notebooks "Actions Pending" ' | |
alias show.todo.soon='geeknote find --tags @work,3-Soon --notebooks "Actions Pending" ' | |
alias show.todo.later='geeknote find --tags @work,4-Later --notebooks "Actions Pending" ' | |
alias show.todo.someday='geeknote find --tags @work,5-Someday --notebooks "Actions Pending" ' | |
alias show.todo.waiting='geeknote find --tags @work,6-Waiting --notebooks "Actions Pending"' | |
alias todo=show.todo.all |
These just allow me to quickly add notes with a priority then view notes by priority. I just need to type show.todo.now and I know what I should be doing. I will probably add more wrapping to simplify some tasks such as changing the priority of a task etc, but for now I am just loving the way I can add a note at the command line and within seconds it appears on my phone's Evernote widget, amazing integration. Also in reverse I can add a reminder on my phone while dropping the kids at school and find it waiting on my command line at work ( after typing todo).
I will try and post more of my config and experience after I have used it for a while and see how it fits with my workflow.