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
import sys | |
simple_table = { | |
":encoded1:" : "a", | |
":encoded2:" : "b", | |
":encoded3:" : "c", | |
":encoded4:" : "d", | |
":encoded5:" : "e", | |
":encoded6:" : "f", | |
":encoded7:" : "g", |
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
!/usr/bin/env sh | |
set -eu | |
git diff master..HEAD | grep -B 2 -A 2 "${@}" |
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
#!/usr/bin/env bash | |
set -eu | |
# macOS | |
find . -type f \( -iname \*.cs \) -exec perl -e 's/\xef\xbb\xbf//;' -pi.bak {} \; -exec rm {}.bak \; |
OlderNewer