For a long time I’ve been looking for a note-taking app that:
1) is available as an iPhone/iPad app ✔
2) synchronizes to either my own server or Google Docs/Drive ✔
3) has a web interface
4) supports organization of notes in hierarchical folders
5) has “todo” functionality (creation and due dates) ✔
6) allows assignment of priorities ✔
This has until now been a fruitless search – primarily because of 3 and 4, and I’ve ended up using Awesome Note. The ticks above indicate what Awesome Note supports. Awesome Note is indeed awesome – especially after they’ve fixed the Google sync issues that plagued them for a some time. The additional diary and calendar features are particularly cool. Still, of the 6 points, 3 and 4 are not ticked of – which is a big deal for me, meaning that I’ve only used Awesome Note for notes and not made use of the nice todo and calendar integration features.
Well, to cut to the chase: I decided to hack my way out and sort of implement 4 and also make the notes synced to Google Drive more organized. To be specific, I’ve implemented a script, tdo.py
, that on Google Drive:
- “moves” notes with slashes in their title into a corresponding folder hierarchy in a specified subfolder
- “moves” notes into folders “1″, “2″,.. “5″ according to number of stars
Notice that “moving” a note into a folder simply means adding the folder to the list of parent folders (collections) of the note. A concrete example should help understand:
Say that on Google Drive I have e.g. 3 notes in my “Todo” folder (which is a subfolder of “Awesome Note”), each with a number of stars indicating their priority:
- “Work/Project1/Write plan” ★★
- “Work/Project1/Hire developers” ★★★
- “Home/fix bike” ★
Running my script, tdo.py
, will create folder (collection) hierarchies and place notes as illustrated below:
TodoFolders
→ Work
→ → “Project1″
→ → → “Write plan”
→ → → “Hire developers”
→ Home
→ → “Fix bike”
TodoPriorities
→ 1
→ → “Fix bike”
→ 2
→ → “Write plan”
→ 3
→ → “Hire developers”
If you want to try this out yourself, here’s my setup: python-2.6.2, gdata-2.0.14 and strongly modified versions of gcp.py
, gls.py
, gmkdir.py
and gmv.py
from gdatacopier-2.1.2. BTW: this is Linux only.
Downloads:
Installation:
- download and install gdata-2.0.14
- download and place the above python scripts somewhere on your
$PATH
- make them executable
- customize folder IDs and paths in
tdo.py
– to get the IDs, usegls.py
or mouseover in the Google Drive web interface - for convenience: hard-code your Google email address in the python scripts
Now just run tdo.py
and lean back while your Todo notes are being organized in folders.
Obviously, use this software at your own risk – and have fun.
I also need that heirachy. I also need to be able to collaborate with others (sharing tasks, or one person assigned the task but being able to look at their list – all controlled by settings of course).
Someone recently told me about awesome notes, in researching I found your post.
I use toodledo – it does what you want (I am not sure about the google drive but I don’t need that because I can access it via the web page and my smartphone, it does interact with Google calendars which i don’t use so it may interact with google drive).
It does folders, then tasks, and then subtasks under the tasks for heirarchy, I wish it had another layer down but I can live with this amount of layers. And you can set context, tags, goals, and other things to further break things down.
It is very flexible. If you decide to check it out, I would love to have your opinion on how it compares to awesome notes or anything else you have liked.
Jill
Hi Jill
Thanks for your reply. I’ve tried out toodledo, but that was more than a year ago and I don’t have any detailed recollection other than a generally positive impression and, well, its non-honoring of my demands 2 and 4 above. I do realize that these two demands are a bit special and probably not a big deal for most people, so don’t take this as any criticism of toddledo – I’m sure it’s a great product.
Frederik