Original link: http://www.concentric.net/~Ttwang/tech/inthash.htm
Taken from: http://web.archive.org/web/20071223173210/http://www.concentric.net/~Ttwang/tech/inthash.htm
Reformatted using pandoc
Thomas Wang, Jan 1997
last update Mar 2007
| # 75.0.3770.142 | |
| 0x04b58615 7626 => 9090 0x04b58615 | |
| 0x04b5861d 31c0488945 => 9090909090 0x04b5861d | |
| Due to a beautiful bug in Chromium, it turns out you don't need this binary patch and can **enable** subpixel positioning by asking Chrome **to disable it**: https://bugs.chromium.org/p/chromium/issues/detail?id=824153#c39 | |
| Needless to say, I won't be maintaining this gist any longer. |
Original link: http://www.concentric.net/~Ttwang/tech/inthash.htm
Taken from: http://web.archive.org/web/20071223173210/http://www.concentric.net/~Ttwang/tech/inthash.htm
Reformatted using pandoc
Thomas Wang, Jan 1997
last update Mar 2007
| #!/bin/bash | |
| AUTHOR=$(git config user.name) | |
| DATE=$(date +%F) | |
| git log --no-merges --format="%cd" --date=short --no-merges --author="$AUTHOR" --all | sort -u -r | while read DATE ; do | |
| if [ $NEXT != "" ] | |
| then | |
| echo | |
| echo [$NEXT] | |
| fi | |
| GIT_PAGER=cat git log --no-merges --format=" %s" --since=$DATE --until=$NEXT --author="$AUTHOR" --all |
| #!/bin/sh | |
| # PRE-COMMIT HOOK | |
| # | |
| # The pre-commit hook is invoked before a Subversion txn is | |
| # committed. Subversion runs this hook by invoking a program | |
| # (script, executable, binary, etc.) named 'pre-commit' (for which | |
| # this file is a template), with the following ordered arguments: | |
| # | |
| # [1] REPOS-PATH (the path to this repository) |
| #! /usr/bin/env python | |
| """ Convert values between RGB hex codes and xterm-256 color codes. | |
| Nice long listing of all 256 colors and their codes. Useful for | |
| developing console color themes, or even script output schemes. | |
| Resources: | |
| * http://en.wikipedia.org/wiki/8-bit_color | |
| * http://en.wikipedia.org/wiki/ANSI_escape_code |
| """ | |
| jQuery templates use constructs like: | |
| {{if condition}} print something{{/if}} | |
| This, of course, completely screws up Django templates, | |
| because Django thinks {{ and }} mean something. | |
| Wrap {% verbatim %} and {% endverbatim %} around those | |
| blocks of jQuery templates and this will try its best |