Skip to content

Instantly share code, notes, and snippets.

@wumb0
wumb0 / delta_patch.py
Last active September 16, 2024 23:43
a script for applying MS patch deltas
import base64
import hashlib
import zlib
from ctypes import (
CDLL,
POINTER,
LittleEndianStructure,
c_size_t,
c_ubyte,
c_uint64,
@andyrbell
andyrbell / scanner.sh
Last active August 28, 2024 13:55
Make a pdf look scanned using ImageMagick
# use ImageMagick convert
# the order is important. the density argument applies to input.pdf and resize and rotate to output.pdf
convert -density 90 input.pdf -rotate 0.5 -attenuate 0.2 +noise Multiplicative -colorspace Gray output.pdf