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 | |
| ################################################################################ | |
| ### NZBGET POST-PROCESSING SCRIPT ### | |
| # Change user:group ownership and folder/file permission. | |
| ################################################################################ | |
| ### OPTIONS ### | |
| # Set owner and group (yes, no). | |
| #SetOwner=yes | |
| # Owner user ID or username. | |
| #User=nobody |
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 Slack: Always Stay Active | |
| // @namespace https://ericdraken.com/slack-always-stay-active | |
| // @version 1.0.4c | |
| // @description Always stay active on Slack. | |
| // @author Eric Draken (ericdraken.com), THOUSAND-SKY, pannal | |
| // @match https://app.slack.com/client/* | |
| // @icon https://www.google.com/s2/favicons?domain=slack.com | |
| // @grant unsafeWindow | |
| // @run-at document-start |
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
| import logging | |
| import random | |
| import time | |
| import re | |
| # based off of https://gist.github.com/doko-desuka/58d9212461f62583f8df9bc6387fade2 | |
| # and https://github.com/Anorov/cloudflare-scrape | |
| # and https://github.com/VeNoMouS/cloudflare-scrape-js2py | |
| ''''''''' |