https://github.com/tmcw/minute
a personal data visualizer
https://github.com/tmcw/minute
Last synced: over 1 year ago
JSON representation
a personal data visualizer
- Host: GitHub
- URL: https://github.com/tmcw/minute
- Owner: tmcw
- License: mit
- Created: 2011-12-12T17:53:35.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2014-07-11T04:45:07.000Z (about 12 years ago)
- Last Synced: 2025-03-16T01:55:50.320Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://macwright.org/2012/02/15/minute.html
- Size: 426 KB
- Stars: 36
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## minute

One of many possibilities for a personal statistics dashboard. Currently
it works with [minute-agent](https://github.com/tmcw/minute-agent), my
Cocoa keycounter application to show off keystrokes. It's a work in progress.
Uses lots of [d3](http://mbostock.github.com/d3/) behind the scenes,
with just a quick hint of jQuery to tie things together.
## Installation
[Install minute-agent](https://github.com/tmcw/minute-agent).
Download or git clone this repository into any directory you want (for example: `~/Sites/minute`). From that directory run `make run`. Now simply point your browser at `http://localhost:8888` and you should get a blank page with an error message.
To visualize a snapshot of your keystrokes, _copy_ `keystrokes.log`
from `~/Documents/minute/keystrokes.log` to `~/Sites/minute/keystrokes.log`.
To have continuously updating version, link the two:
ln -s ~/Documents/minute/keystrokes.log ~/Sites/minute/keystrokes.log
## Variations
`basic-canvas.html` contains a reimplementation of `index.html` that does
drawing in Canvas. This is mainly due to me testing in Google Chrome 'Canary',
which has a subpar SVG implementation. The canvas render version is lightning-fast
in Safari.