Skip to content

Instantly share code, notes, and snippets.

View fuglede's full-sized avatar
🥔

Søren Fuglede Jørgensen fuglede

🥔
View GitHub Profile
@christianpanton
christianpanton / keybase-import-keys.py
Last active September 14, 2015 09:44
Import public keys of already tracked users from Keybase, useful if you use Keybase on multiple computers or after reinstall.
#!/usr/bin/env python
""" WARNING: crypto is hard to do right, bugs are hard to discover. Don't use if you life depends on it. """
import os.path
from subprocess import Popen, PIPE
import json
# requests and beautifulsoup should be in your favorite package manager already
import requests