Skip to content

Instantly share code, notes, and snippets.

View return1's full-sized avatar

Dominique Lederer return1

View GitHub Profile
@return1
return1 / shrinkpdf.sh
Created January 2, 2020 10:40
Shrink PDF File
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/printer -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf
@return1
return1 / python-2.7-osx-14.5.sh
Last active July 29, 2024 10:38
Install Python2.7 with pyenv and homebrew on OSX 14.5
# install openssl 1.1 next to current openssl@3
brew install [email protected]
# install python 2.7 with openssl 1.1
LDFLAGS="-L/opt/homebrew/opt/[email protected]/lib" CPPFLAGS="-I/opt/homebrew/opt/[email protected]/include" pyenv install 2.7.18
# install package which needs openssl libs
LDFLAGS="-L/opt/homebrew/opt/[email protected]/lib" CPPFLAGS="-I/opt/homebrew/opt/[email protected]/include" pip install -r requirements.txt