Jonathan Bernard e5c6e6187c Add --yesterday and --or filter criteria.
* `--yesterday` is like `--today`, but for yesterday 😄.
* `--or` changes the behavior of filter criteria to return a union of
  events matching an of the criteria than an intersection of events
  matching all the criteria. Example:

      ptk list --today --yesterday

  Will never return results (because the criteria are mutually
  exclusive).

      ptk list --today --or --yesterday

  Will return the marks for both today and yesterday.
2018-04-27 13:22:06 -05:00
2017-02-09 10:57:51 -06:00
2016-10-08 00:37:16 -05:00
2016-10-11 13:29:31 -05:00

Personal Time Keeper

ptk is a small utility to log time entries. It uses a simple conceptual model and a simple JSON data format.

A ptk timeline is made up of a series of ptk entries, or marks. Each mark has a summary, a timestamp, and a universally unique id (generated by ptk). Additionally a mark may be tagged with an arbitrary number of tags and may have detailed notes attached to it (anything representable in plain text).

The duration of a task is calculated by taking the difference between that task's timestamp and the one following it chronologically. The STOP value as a summary serves as a sentinal to indicate that an entry has been completed and no new entry is being tracked.

Description
Personal Time Keeper Super-simple time tracking app.
Readme 79 KiB
Languages
Nim 100%