This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
simple-rop: simple-rop.c | |
gcc -m32 -O0 -g -static -fno-stack-protector $^ -o $@ | |
.PHONY: clean | |
clean: | |
rm -rf simple-rop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Adds PPTX Presenter Notes as PDF Text Annotations. | |
This can then be used with `pdfpc` (https://github.com/pdfpc/pdfpc) for presentations. | |
NOTE: | |
<input.pptx> and <input.pdf> must contain the same number of pages. | |
""" | |
import sys | |
from pptx import Presentation |