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
| // ==UserScript== | |
| // @name Remove Horror From Itch | |
| // @match *://itch.io/* | |
| // @run-at document-start | |
| // @grant none | |
| // @description add exclude horror filter to all itch.io pages | |
| // ==/UserScript== | |
| var oldUrlPath = window.location; |
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
| #!/usr/bin/python | |
| # Written for Ubuntu 16.10 | |
| # Requires: | |
| # ffmpeg - https://www.ffmpeg.org/ | |
| # youtube-upload - https://github.com/tokland/youtube-upload | |
| # usage: vidprocess.py "filename.mp4" "Title of video - Part " "Description of video." "comma,separated,list of tags,for youtube" | |
| # Make sure to set up youtube-upload with a credentials file first. Script currently assumes secrets file is located at ~/.scripts/youtube/client_secret.json | |
| import subprocess,sys,shlex,re |