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) |
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
// ==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 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
using Aurora; | |
using Aurora.Devices; | |
using Aurora.Settings; | |
using System; | |
using System.Collections.Generic; | |
using System.Drawing; | |
using System.Linq; | |
using System.Net.Sockets; | |
using System.Threading.Tasks; | |
using System.Diagnostics; |
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
# INSTRUCTIONS: | |
# 1. Follow the installation instructions at | |
# https://nixos.org/nixos/manual/index.html until | |
# /mnt/etc/nixos/configuration.nix is edited | |
# 2. Replace that file with this one: | |
# -> curl -L -o /mnt/etc/nixos/configuration.nix https://go.nzbr.de/zoomvm | |
# 3. You will need to edit this configuration if you want a locale other than | |
# german (i18n and xserver.locale) or not use UEFI (boot.loader) | |
# 4. Run `nix-env -i git` to install git on the live system (may take some time) | |
# 5. Run nixos-install |
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 Traefik auto-yaml | |
// @version 1 | |
// @grant none | |
// @include https://docs.traefik.io/* | |
// ==/UserScript== | |
Array.from(document.getElementsByTagName("label")).forEach((elem) => { | |
if (elem.innerHTML === "File (YAML)") { | |
elem.click(); |
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 smile_amazon_de | |
// @namespace http://orderthruchaos.bitbucket.org/ | |
// @copyright 2015+, Brett DiFrischia | |
// @license | |
// @description Always remember to smile! | |
// @grant GM_log | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js | |
// @include http://www.amazon.de/* | |
// @include https://www.amazon.de/* |
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
V=v | |
CC=gcc | |
LD=gcc | |
LINKFLAGS=-lm -lpthread -ldl | |
BINARY=program.elf | |
OBJECTS=_vcode.o $(patsubst %.c,%.o,$(wildcard *.c)) | |
all : $(BINARY) |
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
#!/usr/bin/python3 | |
import sys | |
import os | |
if len(sys.argv) != 2: | |
print("Usage:\twghosts.py <interface>") | |
sys.exit(1) | |
interface = sys.argv[1] | |
conffile = "/etc/wireguard/%s.conf" % interface |
NewerOlder