This file contains 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 KSK Animation fix | |
// @version 0.3 | |
// ==/UserScript== |
This file contains 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 | |
if [ -z $1 ]; then | |
echo "Usage: sshfs_ez user@address [port]"; | |
exit | |
fi | |
PORT=22 | |
if [ ! -z $2 ]; then PORT=$2; fi |
This file contains 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 Better SyncVideo | |
// @namespace http://jangxx.com | |
// @version 0.6 | |
// @description Adds various improvements to sync-video.com, for example reddit integration | |
// @author jangxx | |
// @match *://www.sync-video.com/r/* | |
// @match *://sync-video.com/r/* | |
// @grant GM_xmlhttpRequest | |
// @grant GM_setValue |
This file contains 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 Million Dollar Homepage Greyout | |
// @namespace http://jangxx.com/ | |
// @version 0.1 | |
// @description Greys out all the offline pages on milliondollarhomepage.com | |
// @author /u/jangxx | |
// @match http://milliondollarhomepage.com/ | |
// @grant GM_xmlhttpRequest | |
// @connect * | |
// ==/UserScript== |
This file contains 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 Pocket Open Links Directly | |
// @namespace http://jangxx.com/ | |
// @version 0.3.1 | |
// @description Disables the reader view on getpocket.com by redirecting to the target page directly | |
// @author jangxx | |
// @match *://getpocket.com/* | |
// @grant none | |
// @downloadURL https://gist.github.com/jangxx/6b10183591fa26b7388a444ec7f19a23/raw/pocket_open_links_directly.user.js | |
// ==/UserScript== |
This file contains 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 | |
if [ -z "$1" ]; then | |
cat <<HELP_USAGE | |
$(basename $0) <directory> | |
Prints a tree of all files in the specified directory wrapped in a LaTeX itemize environment. | |
HELP_USAGE | |
exit | |
fi |
This file contains 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 MOVES Layout Fix | |
// @namespace https://literalchaos.de | |
// @version 0.1 | |
// @description Disables overflow: hidden on the MOVES main content | |
// @author jangxx | |
// @match https://moves.rwth-aachen.de/teaching/* | |
// @grant none | |
// @downloadURL https://gist.github.com/jangxx/7a0d2022086fe802001edcd4bdab766f/raw/layout_fix.user.js | |
// ==/UserScript== |
This file contains 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 (DEPRECATED) Youtube Player Speed Slider | |
// @namespace youtube_player_speed_slider | |
// @version 0.4.0 | |
// @description A userscript that is no longer required. You can uninstall this without losing any features. | |
// @author Łukasz, jangxx | |
// @match https://*.youtube.com/* | |
// @grant none | |
// @downloadURL https://gist.github.com/jangxx/d56eb1efbf7dcd5d6de3af922af8160b/raw/youtube_speed_slider.user.js | |
// ==/UserScript== |
This file contains 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 Justin Y. Detector Integration | |
// @namespace https://literalchaos.de/ | |
// @version 0.3 | |
// @description Automatically try to find out if Justin. Y has left a comment on a video | |
// @author jangxx | |
// @match http://www.youtube.com/* | |
// @match https://www.youtube.com/* | |
// @grant GM_xmlhttpRequest | |
// @downloadURL https://gist.github.com/jangxx/998baf5fd94a6bd6cf400d54c631b213/raw/justiny_detector_integration.user.js |
This file contains 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 argparse, socket, requests, json, os | |
parser = argparse.ArgumentParser() | |
parser.add_argument('--username', type=str, help="DynDns Username", required=True) | |
parser.add_argument('--password', type=str, help="DynDns Password", required=True) | |
parser.add_argument('--url', type=str, help="Update url with <ipaddr> and <ip6addr> parameters", required=True) | |
args = parser.parse_args() | |
# attempt to get the server's ipv4 and ipv6 addresses |
OlderNewer