public
Description: Pomodoro tracking app
Homepage:
Clone URL: git://github.com/chrismdp/sing_pomodoro.git
Chris Parsons (author)
Tue Oct 13 03:27:52 -0700 2009
commit  86154ab32d9626669946247e6a7d24c8d31a291b
tree    ec4610c5267bb7e1f6dc2b93d878c82d562b811c
parent  745064823dcfc2913ab4bec57edee7623a7ea714
sing_pomodoro / README
100644 50 lines (30 sloc) 1.381 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Sing Pomodoro - Pomodoro tracking, statistics and accountability
 
To use:
 
1. bin/pomodoro [action] [people]
OR:
POST to http://sing-pomodoro.heroku.com/<action>/<urlencode(people)>
 
People is formatted as follows:
 
"My Name <my@email.address>"
 
You can pass multiple people by seperating them with commas. Note that we don't show email addresses on the website, just the name you supply.
 
Action can be:
 
start - Start a pomodoro
finish - Finish a pomodoro. If a pomodoro is finished less than 25 minutes then it counts as failed.
interrupt - Register an interrupt. Currently this just increments a counter.
 
For example:
 
bin/pomodoro start "My Name <my@email.address>"
bin/pomodoro finish "My Name <my@email.address>"
 
2. View the result at http://sing-pomodoro.heroku.com
 
The output is pretty basic so far: ideas for stats welcome!
 
To use the pomodoro timer app for OSX:
 
1. Open preferences
2. Click script
3. Check the box next to the following events and put in the following:
 
start:
do shell script "~/path/to/bin/pomodoro start \"$pomodoroName\""
 
interrupt:
do shell script "~/path/to/bin/pomodoro interrupt \"$pomodoroName\""
 
reset:
do shell script "~/path/to/bin/pomodoro finish \"$pomodoroName\""
 
end:
do shell script "~/path/to/bin/pomodoro finish \"$pomodoroName\""
 
You'll need to type in your "Name <email>,Name <email" as the pomodoro name when you start.