Skip to content

Instantly share code, notes, and snippets.

View epc's full-sized avatar
🎯
Focusing

Ed Costello epc

🎯
Focusing
View GitHub Profile
@epc
epc / en-decrypt.py
Created December 19, 2016 15:23 — forked from gwire/en-decrypt.py
Decrypt password protected notes exported from Evernote (ENEX)
#!/usr/bin/env python
# Python script to decrypt encrypted ENEX notes exported from Evernote as ENEX
#
# This will onle work on notes encypted after 2014 using the "ENC0" format
#
# This script requires a modified version of pbkdf2.py to support SHA256
# https://github.com/PaulUithol/python-pbkdf2
#
# There's no helpful error if your password was incorrect, it will just
@epc
epc / keybase.md
Created April 15, 2015 13:36
keybase.md

Keybase proof

I hereby claim:

  • I am epc on github.
  • I am epc (https://keybase.io/epc) on keybase.
  • I have a public key whose fingerprint is EB56 BD11 9E09 9BB7 E502 A65A A779 B05D 3AC2 749B

To claim this, I am signing this object:

@epc
epc / inventory.py
Last active November 1, 2022 04:48
python script to parse sphinx objects.inv file
#!/usr/bin/env python
""" Process URL for intersphinx targets and emit html or text """
def validuri(string):
return string
from sphinx.ext.intersphinx import read_inventory_v2
from posixpath import join
import pprint
import argparse