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
### Keybase proof | |
I hereby claim: | |
* I am 0x63lv on github. | |
* I am arnis (https://keybase.io/arnis) on keybase. | |
* I have a public key whose fingerprint is 5B56 4985 FE26 058D 0A86 C8DB 28A7 69C6 A4F0 F7E9 | |
To claim this, I am signing this object: |
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
#!/bin/env python | |
import fileinput | |
import re | |
import binascii | |
for line in fileinput.input(inplace = 1): | |
if re.search('X\'([a-fA-F0-9]+)\'', line) is not None: | |
unhexed_string = binascii.unhexlify(re.search('X\'([a-fA-F0-9]+)\'', line).group(1)) | |
unhexed_string = unhexed_string.replace("'", "''") |
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
#!/bin/env bash | |
# This script and mailmapping file should be on the same level as the directory | |
# containing the repo | |
# | |
# mailmapping file should have the following format: | |
# name surname [email protected] [email protected] | |
# | |
# List of commiter names emails can be obtained with: | |
# git shortlog -sne |