Skip to content

Instantly share code, notes, and snippets.

@bourem
bourem / openpgp.txt
Created March 25, 2018 02:50
OpenKeychain リンクしたユーザID
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:5413fcc76a18fba4e58977bd4e58e9e77a242d99]
@bourem
bourem / openpgp.txt
Created March 25, 2018 02:50
OpenKeychain リンクしたユーザID
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:5413fcc76a18fba4e58977bd4e58e9e77a242d99]
@bourem
bourem / openpgp.txt
Created March 25, 2018 02:50
OpenKeychain リンクしたユーザID
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:5413fcc76a18fba4e58977bd4e58e9e77a242d99]
@bourem
bourem / openpgp.txt
Created March 25, 2018 02:50
OpenKeychain リンクしたユーザID
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:5413fcc76a18fba4e58977bd4e58e9e77a242d99]
@bourem
bourem / asyncio_sample_script.py
Last active October 19, 2017 04:01
Example of basic asyncio usage (python 3.5)
import asyncio
import sys
# time is used in the blocking sync request function only
import time
# event loop used in all functions
loop = asyncio.get_event_loop()
# defines whether to use request_async (True) or request_sync (False).