Skip to content

Instantly share code, notes, and snippets.

#!/usr/local/bin/bash
source ~/.bash_profile
python ~/"Apps/SickRage/contrib/nzbToMedia/nzbToSickBeard.py" "$@"
# this how the script should look like only the 1st 3 lines. edit script with path to ur Locations
# it is very important "$@" is set last
# be sure you have /usr/local/bin on top in /etc/paths & you have a working .bash_profile in your Home Directory
# with all the proper paths set for Homebrew use,
# only python via brew installed all other copys removed (dont touch the one that Belongs in System)
# #!/usr/local/bin/bash Use #!/usr/bin/bash at the start of the script if you are not using the brewed version.
@XxUnkn0wnxX
XxUnkn0wnxX / Paths.plist
Last active February 17, 2021 15:25
SickChill LaunchAgent macOS [Runs On Boot]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Disabled</key>
<false/>
<key>Label</key>
<string>Paths</string>
<key>ProgramArguments</key>
<array>
@XxUnkn0wnxX
XxUnkn0wnxX / openssl 1.02 from source macOS (homebrew DIY)
Last active May 16, 2020 16:00
macOS Catalina, 10.15, setup openssl from source via homebrew manually
this just a small guide for those who need openssl@1.0 as homebrew has officially removed ths from their formula list.
make sure you have xcode installed & command line tools, run: xcode-select --install after you have intalled xcode
DL the 1.02 ver you want from here: https://github.com/openssl/openssl/releases | https://www.openssl.org/source/old/1.0.2/
extract to /usr/local/src (create src folder if it doesnt exsist)
in terminal CD into the folder EG: cd /usr/local/src/OpenSSL_1_0_2u
then run: brew diy --name openssl@1.0 --version 1.0.2u | (where version type in the version you are using)
should print you a prefix simular to this: --prefix=/usr/local/Cellar/openssl@1.0/1.0.2u