Search for your todo comments in any ticket:
initials|initials_reversereplace this with your initials
\/\/ ?TODO ?(#.*)? ?(initials|initials_reverse):
| import json | |
| from datetime import datetime | |
| with open('certs-response.json') as file: | |
| data = json.load(file) | |
| for item in data["Items"]: | |
| scn = item["SubjectCommonName"] | |
| thumbprint = item["Thumbprint"] |
| www.youtube.com##.ytd-rich-shelf-renderer | |
| www.youtube.com##ytd-video-renderer:has([overlay-style="SHORTS"]) | |
| www.youtube.com##grid-shelf-view-model.ytGridShelfViewModelHostHasBottomButton |
| import os | |
| import re | |
| root_dir = "src" | |
| JSX_REGEX = r"<\w+" | |
| for dirpath, dirnames, filenames in os.walk(root_dir): | |
| for filename in filenames: | |
| if filename.endswith(".js"): |
| <.*>[^<>{}]+<\/.*> |
| $wshell = New-Object -ComObject wscript.shell; | |
| Sleep 3 | |
| $wshell.SendKeys('YOUR MESSAGE HERE') |
| ############################# | |
| # pip3 install pyautogui # | |
| # python3 password-typer.py # | |
| ############################# | |
| import sys | |
| import time | |
| import pyautogui | |
| if(len(sys.argv) != 2): | |
| print("Run: python3 " + sys.argv[0] + " <your password>") |
| # TODO |
| /** | |
| * This checks for newer releases on GitHub. If any newer versions can be found, it returns a promise resolving as the latest version tag. Otherwise the promise resolves as null. | |
| * @param {String} releaseTag The release tag of the code you implement this into. | |
| * @param {String} repo The repository containing the code. | |
| * @returns A Promise, resolving as the version tag if the provided release tag doesn't match the one provided on GitHub. | |
| */ | |
| const checkIfOutdated = (releaseTag, repo) => new Promise(async (resolve, reject) => { | |
| const releases = await fetch(`https://api.github.com/repos/${repo}/releases`).then(res => res.json()); | |
| if(!Array.isArray(releases)) return reject(); | |
| const latestRelease = releases[0]; |