Add todo-list.
This commit is contained in:
parent
d4efb11e44
commit
2c28d6bc42
1 changed files with 19 additions and 0 deletions
19
TODO.md
Normal file
19
TODO.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
TODO
|
||||||
|
====
|
||||||
|
|
||||||
|
Fixes and ideas for the future
|
||||||
|
|
||||||
|
## Per user scotch
|
||||||
|
|
||||||
|
Different users have a different commit style & frequency.
|
||||||
|
We should be able to define a per-user scotch.
|
||||||
|
|
||||||
|
|
||||||
|
## Automatic scotch : Use median time between consecutive commits, per user
|
||||||
|
|
||||||
|
def median(array)
|
||||||
|
sorted = array.sort
|
||||||
|
len = sorted.length
|
||||||
|
return (sorted[(len - 1) / 2] + sorted[len / 2]) / 2.0
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in a new issue