- https://startpage.com
- https://www.ixquick.com/
- https://duckduckgo.com/
- https://3g2upl4pq6kufc4m.onion/html/ (Duck Duck Go hidden service at Tor network)
- https://search.disconnect.me/
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
from email.mime.text import MIMEText | |
import email.utils | |
import smtplib | |
import sys | |
# Arguments passed from PlexPy | |
# {show_name} {episode_name} {season_num00} {episode_num00} {server_name} {media_type} {poster_url} {title} {summary} {library_name} | |
show_name = sys.argv[1] | |
# You can add more arguments if you want more details in the email body | |
episode_name = sys.argv[2] |
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
REM Add this script to Plex down and/or Plex remote down to restart plex if | |
REM server is unreachable. | |
TASKKILL /f /im "Plex Media Server.exe" | |
TASKKILL /f /im "PlexScriptHost.exe" | |
"C:\Program Files (x86)\Plex\Plex Media Server\Plex Media Server.exe" |
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
mapkey('gi', 'test', function() { | |
var inputs = document.getElementsByTagName('input'); | |
var input = null; | |
for(var i=0; i<inputs.length; i++) { | |
if(inputs[i].type=='text') { | |
input = inputs[i]; | |
break; | |
} | |
} | |
if(input) { |
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/sh | |
# Written by pmow | |
# Upload to Gist by JonnyWong16 | |
# For this video transcode alert script, you should select the script for action types where it would be useful: | |
# Playback Start and Playback Resume, for example. | |
# Under Settings > Notifications > Scripts, set the parameters that should get passed to the script. | |
## Telegram notification basic script | |
### Based on Matriphe's at https://gist.github.com/matriphe/9a51169508f266d97313 |
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
# Written by pmow/Hellowlol | |
# Upload to Gist by JonnyWong16 | |
# For this video transcode alert script, you should select the script for action types where it would be useful: | |
# Playback Start and Playback Resume, for example. | |
# Under Settings > Notifications > Scripts, set the parameters that should get passed to the script. | |
import sys | |
import requests |
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
### WARNING: This script has not been tested! ### | |
# 1. Set api_sql = 1 in the config.ini file. | |
# 2. Install the requests module for python. | |
# pip install requests | |
# 3. Use some method to run the script on a schedule. | |
import requests | |
## EDIT THESE SETTINGS ## |
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
// an example to create a new mapping `ctrl-y` | |
mapkey('<Ctrl-y>', 'Show me the money', function() { | |
Normal.showPopup('a well-known phrase uttered by characters in the 1996 film Jerry Maguire (Escape to close).'); | |
}); | |
// an example to replace `u` with `?`, click `Default mappings` to see how `u` works. | |
map('?', 'u'); | |
// an example to remove mapkey `Ctrl-i` | |
unmap('<Ctrl-i>'); |
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
# coding: utf-8 | |
import sys | |
import keychain | |
import clipboard | |
import webbrowser | |
key = sys.argv[1] | |
value = keychain.get_password("workflow", key) | |
if value != None: |
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
from email.mime.text import MIMEText | |
import email.utils | |
import smtplib | |
import sys | |
# Arguments passed from PlexPy | |
# {show_name} {episode_name} {season_num} {episode_num} | |
show_name = sys.argv[1] | |
# You can add more arguments if you want more details in the email body | |
# episode_name = sys.argv[2] |