Skip to content

Instantly share code, notes, and snippets.

View jermainee's full-sized avatar

Jermaine Ernst jermainee

View GitHub Profile
@santaklouse
santaklouse / CrossOver.sh
Last active July 8, 2025 23:10
unlimited CrossOver trial (MacOS)
#!/usr/bin/env bash
# checck if pidof exists
PIDOF="$(which pidof)"
# and if not - install it
(test "${PIDOF}" && test -f "${PIDOF}") || brew install pidof
# find app in default paths
CO_PWD=~/Applications/CrossOver.app/Contents/MacOS
test -d "${CO_PWD}" || CO_PWD=/Applications/CrossOver.app/Contents/MacOS
@RobertAKARobin
RobertAKARobin / python.md
Last active July 10, 2025 11:14
Python Is Not A Great Programming Language
@plentz
plentz / nginx.conf
Last active June 25, 2025 06:48
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048