I hereby claim:
- I am dbapl on github.
- I am dariuszb (https://keybase.io/dariuszb) on keybase.
- I have a public key whose fingerprint is 84ED 45A4 A8E7 77C0 7591 1E1B B720 3050 F822 AAE8
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import httplib, urllib | |
| import argparse | |
| def main(): | |
| parser = argparse.ArgumentParser( | |
| description='send pushover.net notification') | |
| parser.add_argument('note', metavar='note', default=['(no note)'], nargs='*') | |
| args = parser.parse_args() |
I hereby claim:
To claim this, I am signing this object:
| *.ods diff=odf | |
| *.odt diff=odf | |
| *.odp diff=odf | |
| *.pdf diff=pdf | |
| *.PDF diff=pdf | |
| *.apk diff=apk | |
| *.bz2 diff=bz2 | |
| *.gz diff=gzip | |
| *.zip diff=zip | |
| *.tar diff=tar |
| git show-ref | while read f; do echo $(echo $f); echo $(echo $f| cut -c1-40); echo $(echo $f| cut -c42-); echo $(echo $f| cut -c1-40) > $(echo $f| cut -c42-) ; done |
| # Rename tags named 1.X.X to 1.0X.X and push the tag changes | |
| git tag -l | grep 1. | while read t; do n="1.0${t#*.}"; echo $n; git tag $n $t; git push --tags ; git tag -d $t; git push origin :refs/tags/$t ; done |