The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
| #!/bin/bash | |
| URL='https://web-api.nordvpn.com/v1/ips/info' | |
| JSON=$(curl -s $URL) | |
| printf "\n" | |
| #echo $JSON | python -m json.tool | |
| echo $JSON | python -c 'import sys, json; data = json.load(sys.stdin); print("IP: %s (%s)\nStatus: %s" % (data["ip"], data["isp"], "\033[32mProtected" if data["protected"] is True else "\033[31mUnprotected"));' | |
| printf "\n" |
| #!/usr/bin/env bash | |
| # | |
| # Sync Amason S3 Bucket with Akamai NetStorage | |
| # | |
| # Dependency: | |
| # "aws" command : AWS CLI | |
| # "rsync" command :yeah, the one. | |
| # .aws/credentials : AWS Credential file (for aws command) | |
| # .ssj/netstorage.ppk : Private Key for your NetStorage account |
The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client: