This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git log --until=v2_0_0_0 --pretty=format:"%an" | sort | uniq -c | sort -r | |
7424 nobu | |
3475 akr | |
2553 matz | |
1618 naruse | |
1514 usa | |
1469 svn | |
1412 eban | |
902 ko1 | |
644 drbrain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; debug tools | |
;; PAIP(実用 Common Lisp) - P.116 - 4.10 | |
(define-module liv.debugs | |
(use srfi-1) | |
(use gauche.parameter) | |
(export-all)) | |
(select-module liv.debugs) |