Skip to content

Instantly share code, notes, and snippets.

@Mrmaxmeier
Mrmaxmeier / real_book_toc.py
Last active January 15, 2024 13:45
Searchable Table of Contents for The Real Book (sixth edition): https://dl.ente.ninja/real_book_toc.pdf
from pikepdf import Pdf, OutlineItem
# via https://cloud.google.com/vision and some cleanup
TOC = """
AFRICAN FLOWER 10
BLUE BOSSA 50
AFRO BLUE 11
BLUE IN GREEN 51
AFTERNOON IN PARIS 12
BLUE MONK 52
@Mrmaxmeier
Mrmaxmeier / bsGenPayloadInfo.py
Created September 14, 2016 08:49
payload_info generator
#!/usr/bin/python
import os
import hashlib
from functools import partial
def md5sum(filename):
with open(filename, mode='rb') as f:
d = hashlib.md5()