I hereby claim:
- I am nomirose on github.
- I am nomirose (https://keybase.io/nomirose) on keybase.
- I have a public key ASDXHQwTX6CwxbN43nQH12_e-FXBGMzypjnJyrcPO6cAUAo
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| def main(): | |
| pass | |
| if __name__ == "__main__": | |
| main() |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import time, os, sys, signal | |
| sleeptime = waketime = 0.01 | |
| def send(signal, pids): | |
| for pid in pids: | |
| os.kill(pid, signal) |
| #!/usr/bin/env python3 | |
| # This script pastes the input image on top of the template image and writes out | |
| # a new file. The reference template image includes a drop shadow. | |
| # | |
| # To get this script working on macOS, install the following dependencies: | |
| # | |
| # $ brew install pngquant | |
| # $ python3 -m pip install Pillow pngquant | |
| # |
| #!/usr/bin/env python | |
| import sys | |
| import urllib | |
| import urlparse | |
| import base64 | |
| import mimetypes | |
| import cgi | |
| from os import path |