This file contains 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
/* | |
##################### | |
GoToTilla v0.22 by hoppfrosch - Added parsing of properties (AHK > 1.1.16.*) | |
http://www.autohotkey.com/board/topic/95536-gototilla-a-combination-of-goto-and-tillagoto/ | |
GoToTilla v0.21 by budRich | |
http://www.autohotkey.com/board/topic/95536-gototilla-a-combination-of-goto-and-tillagoto/ | |
A combination of: GoTo by Avi Aryan | |
http://www.autohotkey.com/board/topic/95009-goto-hotkeys-hotstrings-functions-and-labels-in-any-editor/ | |
and TillaGoto by TheGood | |
http://www.autohotkey.com/forum/viewtopic.php?t=41575 |
This file contains 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
#!/usr/bin/env bash | |
# Use this one-liner to produce a JSON literal from the Git log: | |
git log \ | |
--pretty=format:'{%n "commit": "%H",%n "author": "%an <%ae>",%n "date": "%ad",%n "message": "%f"%n},' \ | |
$@ | \ | |
perl -pe 'BEGIN{print "["}; END{print "]\n"}' | \ | |
perl -pe 's/},]/}]/' |