I hereby claim:
- I am cleverdevil on github.
- I am cleverdevil (https://keybase.io/cleverdevil) on keybase.
- I have a public key whose fingerprint is 8A0D 7FD0 193E 3FB4 DE04 0C57 253F B1B5 46BE 7AC2
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| ''' | |
| Send an multipart email with HTML and plain text alternatives. The message | |
| should be constructed as a plain-text file of the following format: | |
| From: Your Name <your@email.com> | |
| To: Recipient One <recipient@to.com> | |
| Subject: Your subject line | |
| --- |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| ''' | |
| A script to search the Mac OS X Address Book via PyObjC bridge, and | |
| then output the results in a format suitable for integration with | |
| mutt. | |
| Add the following to your `.muttrc`: | |
| set query_command = "~/.mutt/contacts.py '%s'" |
| #!/usr/bin/env python | |
| import os | |
| import sys | |
| import time | |
| import socket | |
| from paramiko import SSHClient, AutoAddPolicy | |
| from novaclient.v1_1 import client as compute_client |
| ### Keybase proof | |
| I hereby claim: | |
| * I am cleverdevil on github. | |
| * I am cleverdevil (https://keybase.io/cleverdevil) on keybase. | |
| * I have a public key whose fingerprint is C756 2813 F881 06E2 6F1F 547B 003F 530D 3859 B702 | |
| To claim this, I am signing this object: |
| #!/usr/bin/env python | |
| import subprocess | |
| import threading | |
| import time | |
| class Scanner(): | |
| def __init__(self): | |
| self.stop = threading.Event() |
| global | |
| log /dev/log local0 | |
| log /dev/log local1 notice | |
| chroot /var/lib/haproxy | |
| maxconn 4096 | |
| tune.ssl.default-dh-param 2048 | |
| user haproxy | |
| group haproxy | |
| daemon |
| <article class="h-review known-review"> | |
| <h2 class="p-name"> | |
| <a class="u-url" href="http://cleverdevil.io/2015/blood-rites"> | |
| <span class="p-category">Book</span> Review: Blood Rites, by Jim Butcher | |
| </a> | |
| </h2> | |
| <div class="p-item h-product"> | |
| <h4 class="p-name"> | |
| <a class="u-url" href="https://www.goodreads.com/book/show/99383.Blood_Rites">Blood Rites</a> |
| import boto | |
| import sys | |
| import time | |
| from multiprocessing import Process, Queue | |
| from Queue import Empty | |
| class Worker(Process): | |
| def __init__(self, me, q, bucketname): |
| import stoker | |
| import micropub | |
| import time | |
| MICROPUB_ENDPOINT = 'https://xn--cp8h2o.ws/micropub/endpoint' | |
| INDIEAUTH_TOKEN = 'REDACTED' | |
| SYNDICATE_TO = 'twitter::JonsHotMeat' | |
| s = stoker.Stoker('bbq.lacour.local', timeout=120) |