Show HN: Grit – a multitree-based personal task manager
21–30 of 47 posts
Re: Show HN: Grit – a multitree-based personal task manager
#22How do you handle ordering? I noticed: $ grit add -p 5 Bread (5) -> (6) $ grit add -p 5 Milk (5) -> (7) $ grit add -p 5 Eggs (5) -> (8) led to: ├──[ ] Get groceries (5) │ ├──[ ] Bread (6) │ ├──[ ] Eggs (8) │ └──[ ] Milk (7) And I didn't see anything about reordering tasks in the readme. Is everything sorted by title?
Yes, it's sorted by name in natural order. I haven't decided yet which would work best as default (this vs insertion order) -- feedback is welcome. This works well for numbered book chapters, something I personally find useful. In any case, the defaults will be configurable -- when I implement config :) (Another thing on the TODO list is adding an optional priority score for each task, and sorting those on top of the…
One big deficiency of most todo apps is lack of support for making routes through the leaf nodes. I see that you can already do this with Grit via pointers and numeric task prefixes for sorting. But that brings us back to the bad old BASIC style line numbering problems.
Re: Show HN: Grit – a multitree-based personal task manager
#23Re: Show HN: Grit – a multitree-based personal task manager
#24https://f-droid.org/en/packages/org.dmfs.tasks/
Is this something you're thinking about adding?
Re: Show HN: Grit – a multitree-based personal task manager
#25This looks pretty interesting! How is the data stored? Would it be difficult to sync among different machines?
Just SQLite - two tables, one for the nodes, one for edges + some fancy constraints and queries. I was tempted to make a custom binary format, but that's a big task, and it seems to work fine as it is. As for the syncing, that would be really nice, but I haven't come up with an elegant way to do it yet. Suggestions welcome, if anyone has ideas!
Re: Show HN: Grit – a multitree-based personal task manager
#26I observed task lists are just for memory references.
Re: Show HN: Grit – a multitree-based personal task manager
#27This looks pretty interesting! How is the data stored? Would it be difficult to sync among different machines?
Just SQLite - two tables, one for the nodes, one for edges + some fancy constraints and queries. I was tempted to make a custom binary format, but that's a big task, and it seems to work fine as it is. As for the syncing, that would be really nice, but I haven't come up with an elegant way to do it yet. Suggestions welcome, if anyone has ideas!
You can write git in a weekend or two: https://wyag.thb.lt/
sqlite is the wrong tool for the job, beyond an initial prototype. git and hg figured this stuff out decades ago.
Good job, by the way. This seems like the sort of thing which, if:
* it did store data in git and sync; and
* had a nice Python API
would change how I work.
The Python API, I could probably even handle myself. This is small data, and calls to shell commands are both more than adequate, and easy to script in Python.
Re: Show HN: Grit – a multitree-based personal task manager
#28Grit is really cool, the name feels a bit unfortunate as it might have muscle memory overlap with “git” - nothing that can’t be solved with an alias but perhaps something to ponder.
I also sadly see limited use for a task tracking system that I don’t have with me at all times - I would love a way to use grit on my phone and desktop computer with some kind of sync. Otherwise it would be limited to tracking work-related stuff as when I’m not working I really don’t use the computer; the grocery list example was really nice but I don’t carry my laptop to the grocery store :)
I really like Grit, will keep an eye on how it evolves.
Re: Show HN: Grit – a multitree-based personal task manager
#29You can also self host it.
Re: Show HN: Grit – a multitree-based personal task manager
#30This looks pretty interesting! How is the data stored? Would it be difficult to sync among different machines?
Just SQLite - two tables, one for the nodes, one for edges + some fancy constraints and queries. I was tempted to make a custom binary format, but that's a big task, and it seems to work fine as it is. As for the syncing, that would be really nice, but I haven't come up with an elegant way to do it yet. Suggestions welcome, if anyone has ideas!