Live data from Hacker News

Show HN: Thyme, a simple CLI to measure human time and focus

text.sourcegraph.com

1–10 of 21 posts

Re: Show HN: Thyme, a simple CLI to measure human time and focus

#5
post #4

How do you install it on Mac OSX?

You can find instructions in the README here: https://github.com/sourcegraph/thyme. But to summarize:

0. Install Go (https://golang.org/doc/install?download=go1.7.darwin-amd64.p...)

1. `go get -u github.com/sourcegraph/thyme/cmd/thyme`

2. `thyme dep`

3. Follow the instructions printed by `thyme dep`

Re: Show HN: Thyme, a simple CLI to measure human time and focus

#7
Looks like a nice project but me myself prefers Wakatime that breaks down the time between project (basically git sources you open in your editor) rather than all the application opens. Then I can see what project I'm spending too much/little time at and balance myself.

Dashboard looks something like this: http://imgur.com/a/jdRct

Re: Show HN: Thyme, a simple CLI to measure human time and focus

#9
post #5
post #4

How do you install it on Mac OSX?

You can find instructions in the README here: https://github.com/sourcegraph/thyme . But to summarize: 0. Install Go ( https://golang.org/doc/install?download=go1.7.darwin-amd64.p... ) 1. `go get -u github.com/sourcegraph/thyme/cmd/thyme` 2. `thyme dep` 3. Follow the instructions printed by `thyme dep`

For those on OSX, using Homebrew to install go is a far nicer experience, in addition to making it easier to keep things up-to-date. http://brew.sh then `brew install go` will move you past step 0, although I somehow thought one had to specify a `GOPATH` in order to use `go get`:

    $ go get -u github.com/sourcegraph/thyme/cmd/thyme
    package github.com/sourcegraph/thyme/cmd/thyme: cannot download, $GOPATH not set. For more details see: go help gopath
meaning there is a step 0.5 of `export GOPATH=/some/place/with/a/lot/of/disk/space` and (again, as I understand it) you'll want `$GOPATH/bin` in your `$PATH` or step 2 will not behave as expected.
Post reply on HN