- 1Password - Great password manager
- Alfred - Handy replacement for Spotlight
- AlphaBaby - Fun app for kids to button mash your keyboard and more
- Bartender - Hide some menu bar apps in its own menu
- Charles - Great proxy tool
- Chatology - Great way to read your iMessages logs (Discontinued, for Catalina or lower)
- CleanMyMac X - Tidy up your computer (this app is legit)
- CloudApp - Nice way to store your screenshots in the cloud, annotate them, share them, and more
- Discord - Place to chat
- EasyFind - Handy way to search files
This file contains hidden or 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
| import json | |
| import requests | |
| import subprocess | |
| stations = {} | |
| stations["Alabama Public Television"] = "WBIQ" | |
| stations["Alaska Public Media"] = "KAKM" | |
| stations["Arizona Public Media"] = "KUAT" | |
| stations["Arkansas PBS"] = "KETS" |
This file contains hidden or 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
| import datetime | |
| import glob | |
| import json | |
| import os | |
| import random | |
| import requests | |
| import subprocess | |
| stationz = { | |
| "KACV": "838f7279-cacf-4561-bd33-ac9a4b1429e8", |
This file contains hidden or 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
| import os | |
| import random | |
| import sys | |
| from googletrans import Translator # pip install googletrans==4.0.0-rc1 --upgrade-strategy only-if-needed | |
| print("Bad Translator by Larsen Vallecillo") | |
| print("\n") | |
| if os.path.exists("translated.txt"): | |
| text = open("translated.txt", "r").read() |
This file contains hidden or 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
| import sys | |
| import zlib | |
| if len(sys.argv) != 3: | |
| print("Usage: crc.py <input> <seed (in hex form)>") | |
| sys.exit(1) | |
| with open(sys.argv[1], "rb") as f: | |
| read = f.read() | |
| for i in range(0x00000000, 0x100000000): |
OlderNewer