I hereby claim:
- I am ioparaskev on github.
- I am jpr (https://keybase.io/jpr) on keybase.
- I have a public key ASCFKUxJjyI1_zCxzs4aMVqCZ7mL04pV2a7eTVUP-zJavAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| Xcursor.theme: Vanilla-DMZ-AA | |
| !urxvt color scheme: | |
| URxvt*background: #2B2B2B | |
| URxvt*foreground: #DEDEDE | |
| URxvt*colorUL: #86a2b0 | |
| ! black |
| #!/usr/bin/python | |
| import sys | |
| import time | |
| def stdout_with_delay(character, seconds_delay=0.0): | |
| time.sleep(seconds_delay) | |
| sys.stdout.write(character) | |
| sys.stdout.flush() |
| #This is a porting of https://gist.github.com/garrettreid/8329796 | |
| # to Python 3 with some more additions (time compare, dialogs etc) | |
| # for Python 2.x use the above gist | |
| from hashlib import sha512 | |
| import os | |
| import base64 | |
| from operator import _compare_digest as constant_time_compare | |