Live data from Hacker News

Taskwarrior – CLI Task Management

taskwarrior.org

41–50 of 72 posts

Re: Taskwarrior – CLI Task Management

#41
post #4

In case anyone else is interested in seeing the schema I ran a few example commands through this and the dumped my ~/.task/taskchampion.sqlite3 database out to SQL: https://gist.github.com/simonw/ab208b18b6c3ab31ea3feb70f6502... It's mainly JSON data stored in some simple tables, with full historic change tracking modeled as JSON too. Here's that example loaded into Datasette Lite: https://lite.datasette.io/?sql=http…

That format could sync well to local-first PWA using indexeddb.

Re: Taskwarrior – CLI Task Management

#42
Don't get me wrong, this is probably great software, but there is a big field of tasks like reminder apps, calendar, note taking apps etc. for which I just use a plain free form text editor. I don't quite see what these tools offer, other than pretty user interfaces. And after taking the time to learn the new tools, there will still be cases when I won't have access to them, while plain text works everywhere

Re: Taskwarrior – CLI Task Management

#43

Don't get me wrong, this is probably great software, but there is a big field of tasks like reminder apps, calendar, note taking apps etc. for which I just use a plain free form text editor. I don't quite see what these tools offer, other than pretty user interfaces. And after taking the time to learn the new tools, there will still be cases when I won't have access to them, while plain text works everywhere

I was going to say something similar. Is it ever the case that a single app or something tiny piece of technology has revolutionised a persons discipline and ability to stay on top of things?

While apps might make things easier, unless the individual develops a personal system and follows it in a disciplined fashion, none of these things are going to make a difference.

Re: Taskwarrior – CLI Task Management

#44

Don't get me wrong, this is probably great software, but there is a big field of tasks like reminder apps, calendar, note taking apps etc. for which I just use a plain free form text editor. I don't quite see what these tools offer, other than pretty user interfaces. And after taking the time to learn the new tools, there will still be cases when I won't have access to them, while plain text works everywhere

I am with you, as of now I use a paper notebook for all that. But in a previous (more predictable) life I was using task warrior and time warrior and was very happy with it. Especially since it also runs on android and you can just sync the data.

If you like Command line applications and need something that is good for many tasks in nested projects and time tracking capabilities (e.g. as happens in software world) it is worth checking out.

Re: Taskwarrior – CLI Task Management

#45

Don't get me wrong, this is probably great software, but there is a big field of tasks like reminder apps, calendar, note taking apps etc. for which I just use a plain free form text editor. I don't quite see what these tools offer, other than pretty user interfaces. And after taking the time to learn the new tools, there will still be cases when I won't have access to them, while plain text works everywhere

I was going to say something similar. Is it ever the case that a single app or something tiny piece of technology has revolutionised a persons discipline and ability to stay on top of things? While apps might make things easier, unless the individual develops a personal system and follows it in a disciplined fashion, none of these things are going to make a difference.

Tools are just that, tools. 150 years ago someone might have said the same thing about a pocket watch or a paper calendar.

The question is, whether the form of task keeping the tool encourages fits to your practice. E.g. if you have a well ordered software engineering life, thst thing might be perfect, if you are a mother of three that works as a alpine guide a paper based system might work better. Or you might just not like the choices they made — which is a perfectly fine reason not to use it.

What I have learned is that procrastinators will hunt for the perfect tool to manage their backlog, especially when it means they can avoid tackling their backlog.

One thing tho: time tracking can be an eye opener. Many people do 30 minutes of effective work a day, while (understandably) feeling stressed for not getting shit done. Task Warrior has a great time tracking extension. So depending on your life and needs it might be well worth figuring out where you spend your time.

Re: Taskwarrior – CLI Task Management

#46

Don't get me wrong, this is probably great software, but there is a big field of tasks like reminder apps, calendar, note taking apps etc. for which I just use a plain free form text editor. I don't quite see what these tools offer, other than pretty user interfaces. And after taking the time to learn the new tools, there will still be cases when I won't have access to them, while plain text works everywhere

Same here. I've been using "todo.txt" for years (decade?) now. It's hardly more than a very loosely defined format to present TODOs. Lot's of tools, apps, GUIs and whatnot developed around it.

The format is so easy that anything that can edit txt allows to manage it without hassle, so even if MyFavoriteTool is abandoned in a year, I can continue with my todo system. And synching a text file is a no-brainer too. I now just use dropbox. But used git, rsync and some more in the past.

The only downside I've constantly run against, is that I cannot "share" this with my spouse or colleagues. Guess "team" function could easily be invented, but so far no one has, that I know, and I'm not going to put that task on this todo.txt file either.

Re: Taskwarrior – CLI Task Management

#47

Self plug, I'm developing a minimal gui for Taskwarrior, focused on keyboard navigation. https://github.com/tmahmood/taskwarrior-web/ Task warrior is the my core of task management, as I've ADHD,I lost track of my task if it's not easily visible, this ui helps me with that. It shows timer for active task on the top. Future plan is to integrate time warrior too.

Impressive, I am definitely giving this a test drive.

One observation: one thing people dislike about task warrior is that it can be complicated using it on the go, e.g. on a smartphone. A web interface like yours offers a real chance to make task warrior usable on smartphones and solving the syncing problem at the same time.

Is this within scope of your ideas? Or is the web interface mainly thought for (unauthenticated) local use?

Re: Taskwarrior – CLI Task Management

#48
post #47

Self plug, I'm developing a minimal gui for Taskwarrior, focused on keyboard navigation. https://github.com/tmahmood/taskwarrior-web/ Task warrior is the my core of task management, as I've ADHD,I lost track of my task if it's not easily visible, this ui helps me with that. It shows timer for active task on the top. Future plan is to integrate time warrior too.

Impressive, I am definitely giving this a test drive. One observation: one thing people dislike about task warrior is that it can be complicated using it on the go, e.g. on a smartphone. A web interface like yours offers a real chance to make task warrior usable on smartphones and solving the syncing problem at the same time. Is this within scope of your ideas? Or is the web interface mainly thought for (unauthentica…

For now, my scope is local usage. As I am working as a freelancer, having free time to work on personal project becomes a luxury :-(

Yes, remote usage is an issue for task warrior. As I work from home, remote access is not yet a priority to me.

Come to think of it, as the UI can be accessed in LAN, maybe I can use local storage to store the data on mobile, sync with the desktop when it can connect back.

I will keep it in mind, to see if I can do it, I feel it's an interesting idea!

Re: Taskwarrior – CLI Task Management

#50
post #47

Earlier quoted context omitted.

Impressive, I am definitely giving this a test drive. One observation: one thing people dislike about task warrior is that it can be complicated using it on the go, e.g. on a smartphone. A web interface like yours offers a real chance to make task warrior usable on smartphones and solving the syncing problem at the same time. Is this within scope of your ideas? Or is the web interface mainly thought for (unauthentica…

For now, my scope is local usage. As I am working as a freelancer, having free time to work on personal project becomes a luxury :-( Yes, remote usage is an issue for task warrior. As I work from home, remote access is not yet a priority to me. Come to think of it, as the UI can be accessed in LAN, maybe I can use local storage to store the data on mobile, sync with the desktop when it can connect back. I will keep i…

Hey, no worries, been there, done that. It is your personal project — don't ever let anyone (including me) pressure you into doing any work you would not do yourself.

If this was my project and I was tasked with adding mobile support I'd add:

- a simple (optional) authentification scheme that let's you deploy the whole thing server side/log in remotely

- a alternative mobile interface that works well on smartphones without keyboards

Then the task data lives on the server and syncing is a on-issue

Post reply on HN