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 RCGI Constellation Import/Export | |
// @version 0.1 | |
// @description Import/Export for Constellation | |
// @author LapisOnTheMoon | |
// @match https://mrredshark77.github.io/RGCI-Classic/ | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=https://mrredshark77.github.io/RGCI-Classic/ | |
// @updateURL https://gist.github.com/LapisOnTheMoon/a45a8ae903224fa39fa3c9a40c99cdbb/raw/fb3c8ac2453a057d25402738e4eb094aaaaccd1a/constellation-importexport.user.js | |
// @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 F-Puzzles to CtC/Sudokupad | |
// @namespace http://tampermonkey.net/ | |
// @version 0.5 | |
// @description Replaces screenshot button on f-puzzles export popup to export to Sven's Sudokupad/CtC web app. | |
// @author LapisOnTheMoon | |
// @match https://*.f-puzzles.com/* | |
// @match https://f-puzzles.com/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none |
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
![Adblock Plus 2.0] | |
! Title: FuckFandom | |
! Expires: 30 days (update frequency) | |
! Homepage: https://gist.github.com/Craftplacer/04089c2c666c89e10818124c92d9c65b | |
fandom.com##.mcf-wrapper | |
fandom.com##.wds-global-footer | |
fandom.com##.global-navigation | |
fandom.com##.top-ads-container |
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
module.exports = { | |
mentions: { | |
userOrMember: /^(?:<@!?)?(\d{17,19})>?$/, | |
channel: /^(?:<#)?(\d{17,19})>?$/, | |
role: /^(?:<@&)?(\d{17,19})>?$/, | |
snowflake: /^(\d{17,19})$/, | |
}, | |
misc: { | |
emoji: /^(?:<a?:\w{2,32}:)?(\d{17,19})>?$/, | |
username: /.{2,32}/, |
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 requests | |
import sys | |
from datetime import datetime | |
import re | |
tag_re = re.compile(r'(<!--.*?-->|<[^>]*>)') | |
name = "" # change this | |
code = "" | |
def get_room_code(s): |