Skip to content

Instantly share code, notes, and snippets.

View eduardo-romao's full-sized avatar

eduardo-romao

View GitHub Profile
@eduardo-romao
eduardo-romao / parallels-reset.sh
Created August 20, 2021 19:56
Reset Parallels' trial
#!/bin/sh
# Reset Parallels Desktop's trial and generate a casual email address to register a new user
rm /private/var/root/Library/Preferences/com.parallels.desktop.plist /Library/Preferences/Parallels/licenses.xml
jot -w pdu%d@gmail.com -r 1
@eduardo-romao
eduardo-romao / load_dotenv.sh
Created October 16, 2020 00:15 — forked from mihow/load_dotenv.sh
Load environment variables from dotenv / .env file in Bash
if [ ! -f .env ]
then
export $(cat .env | xargs)
fi