Prints something like this:
In 2018 you made 2488 commits in 134 projects.
The average length of a commit message was 62 characters.
Commits per weekday
Monday 334 ******************************************
| #!/usr/bin/env python | |
| from ctypes import * | |
| for ln in open('/proc/self/maps'): | |
| if "[vdso]" in ln: | |
| start, end = [int(x,16) for x in ln.split()[0].split('-')] | |
| CDLL("libc.so.6").write(1, c_void_p(start), end-start) | |
| break |