I hereby claim:
- I am vrde on github.
- I am vrde (https://keybase.io/vrde) on keybase.
- I have a public key ASD86aqAXEv41oIfKRR7SVTGgULTBLVPgee3woMiiAyU7Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # Setup some variables needed for bootstrapping the environment | |
| ROOT=/home/vrde/projectz/myproject | |
| REPOS=${ROOT}/repos | |
| export PYTHONPATH=${REPOS} | |
| import pynotify | |
| from time import sleep | |
| def mins_to_secs(ms): | |
| return map(lambda x: x * 60, ms) | |
| class Pymodoro(object): | |
| POMODORO_TIME = 25 * 60 | |
| POMODORO_CHECKPOINTS = mins_to_secs([25, 15, 10, 5, 3, 1]) + range(10) |