Skip to content

Instantly share code, notes, and snippets.

@kakutani
kakutani / gist:5040692
Created February 26, 2013 18:13
Ruby commit count until 2.0.0-p0
$ 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
@valvallow
valvallow / debug.scm
Created August 27, 2010 04:16
PAIP, gauche, scheme,
;; 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)