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).
| # == 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; |