3

Is there an analogue of this tool (maybe python/ruby/etc) which runs under windows?

enter image description here

It has minimalistic but very convenient interface (ncurses-based) close to command-line.

Most operations can be done via two keystrokes.

NB I've read Best commandline time tracking application? and https://stackoverflow.com/questions/4624466/simple-and-free-time-tracking-software but found nothing appropriate.

Community
  • 1
  • 1
Antony Hatchkins
  • 31,947
  • 10
  • 111
  • 111

1 Answers1

1

For pure-Python solution see timed. It's very simple to use and provides a tab-completion by editing .bashrc:

$ timed start myproject
starting work on myproject
  at 16:35 on 07 Feb 2011

$ timed
working on myproject:
  from     16:35 on 07 Feb 2011
  to now,  17:00 on 07 Feb 2011
        => 0h25m have elapsed

$ timed stop
worked on myproject
  from    16:35 on 07 Feb 2011
  to now, 17:40 on 07 Feb 2011
       => 1h5m elapsed

$ timed summary
myproject   1h5m

$ cat ~/.timed
myproject: 16:35 on 07 Feb 2011 - 17:40 on 07 Feb 2011

$ cat ~/.timed | grep "Jan 2011" | timed parse
Mariusz Jamro
  • 30,615
  • 24
  • 120
  • 162