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 Moodle Login | |
// @namespace https://nzbr.de | |
// @version 0.1 | |
// @description Redirect to login page when not logged in on moodle.tu-dortmund.de | |
// @author nzbr | |
// @match https://moodle.tu-dortmund.de/ | |
// @match https://moodle.tu-dortmund.de/login/index.php | |
// @grant none | |
// ==/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 Reddit like it's 2023-06-11 | |
// @namespace Violentmonkey Scripts | |
// @match https://www.reddit.com/* | |
// @grant none | |
// @version 1.0 | |
// @author nzbr | |
// @description Redirect any Reddit site to its archive.org capture of just before the blackout | |
// ==/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 Show Rawr | |
// @namespace Violentmonkey Scripts | |
// @match https://github.com/** | |
// @match https://gist.github.com/** | |
// @match https://codeberg.org/** | |
// @grant none | |
// @version 1.0 | |
// @author nzbr | |
// @description Replaces the Raw button on GitHub with Rawr |
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
# This script assumes a right joy-con as the first (or only) controller connected to your PC | |
if starting: | |
j0 = joystick[0] | |
# Next | |
if j0.getPressed(0) or j0.getPressed(2): # a or b | |
keyboard.setKeyDown(Key.N) | |
else: | |
keyboard.setKeyUp(Key.N) |
OlderNewer