Using \color tag in LaTex syntax.
Nobody seems to be using or talking about this (probably bc it's ugly and useless but I might make a generator for funsies... ;P).
| // ==UserScript== | |
| // @name Microplus Toolkit for TETR.IO | |
| // @namespace https://gitlab.com/UniQMG/tetrio-plus | |
| // @version 0.2.5 | |
| // @description Some functionality of TETR.IO PLUS reimplemented as a userscript | |
| // @author UniQMG | |
| // @match https://tetr.io | |
| // @icon https://tetr.io/favicon.ico | |
| // @grant unsafeWindow | |
| // @grant GM_getValue |
| // ==UserScript== | |
| // @name Universal Anubis Anti-Bot Auto-Solver | |
| // @namespace https://github.com/ | |
| // @version 1.2 | |
| // @description Automatically detects and solves Anubis Proof-of-Work challenges on ANY website | |
| // @author Assistant | |
| // @match *://*/* | |
| // @run-at document-start | |
| // @grant none | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name Reddit Login Modal & Sidebar Remover | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.1 | |
| // @description Hides Reddit login/signup upsell modal and left sidebar, and restores page scrolling. | |
| // @author milotek.dev | |
| // @match https://*.reddit.com/* | |
| // @grant GM_addStyle | |
| // @run-at document-start | |
| // ==/UserScript== |
| $\textsf{{\color[rgb]{0.48, 0.49, 0.88}L}{\color[rgb]{0.53, 0.47, 0.86}O}{\color[rgb]{0.57, 0.44, 0.84}L}{\color[rgb]{0.62, 0.42, 0.82}O}{\color[rgb]{0.67, 0.39, 0.79}L}{\color[rgb]{0.72, 0.37, 0.77}O}{\color[rgb]{0.77, 0.34, 0.75}L}{\color[rgb]{0.81, 0.32, 0.73}O}{\color[rgb]{0.86, 0.29, 0.70}L}{\color[rgb]{0.91, 0.27, 0.68}O}{\color[rgb]{0.96, 0.24, 0.66}L}}$ |
| # == YOUR CODE == | |
| def is_valid(password): | |
| special_characters = "!@$%&" | |
| return(len(password) > 7 and any(special_char in password for special_char in special_characters)) | |
| class PasswordManager(): | |
| def __init__(self): | |
| self.passwords = {} | |
| def add(self, service, password): |
Using \color tag in LaTex syntax.
Nobody seems to be using or talking about this (probably bc it's ugly and useless but I might make a generator for funsies... ;P).
| Go to: | |
| /Applications/CleanMyMacX.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LoginItems/CleanMyMac X HealthMonitor.app/Contents/MacOS/CleanMyMac X HealthMonitor | |
| Then add to CleanMyMac X HealthMonitor '.old' | |
| and force quit it again in activity monitor |
| // | |
| // AdvancedToolbarWindow.swift | |
| // | |
| // Created by Stephan Casas on 3/17/23. | |
| // | |
| import SwiftUI; | |
| import AppKit; | |
| class AdvancedToolbarWindow<MainContent: View, ToolbarContent: View, TitleToolbarContent: View>: NSWindow, NSToolbarDelegate { |
| (function() { | |
| let increment = 0.01; // Adjust this value to change the increment | |
| let lowerBound = 0.1; // Adjust this value to change the lower bound | |
| let upperBound = 3; // Adjust this value to change the upper bound | |
| let A = 0; // Adjust this value to change the minimum hold time in milliseconds | |
| let B = 2; // Adjust this value to change the maximum hold time in milliseconds | |
| let targetRate = 0.1; // Initialize targetRate with a default value | |
| let holding = false; | |
| let holdTimer; |