Created
March 10, 2014 08:31
-
-
Save gabrielbauman/9461433 to your computer and use it in GitHub Desktop.
Run this whenever your IP changes to tell unblock.us about your new address. Fixes weird Netflix "internal errors", the Roku android app not signing in properly, and other glitchiness.
This file contains hidden or 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
#!/bin/bash | |
# Set this to the email address you use with unblock.us. | |
UNBLOCKUS_EMAIL="[email protected]" | |
curl \ | |
--url http://check.unblock-us.com/ \ | |
--form "validated=1&email=${UNBLOCKUS_EMAIL}&rid=0" \ | |
--user-agent "Mozilla/5.0 (X11; Linux x86_64; rv:27.0) Gecko/20100101 Fi27.0" -q \ | |
&> /dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment