- 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 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): |
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
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 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 json | |
import random | |
import requests | |
import subprocess | |
stations = ["KAET", "KAID", "KAKM", "KAMU", "KAWE", "KBDI", "KBTC", "KCPT", "KCTS", "KCWC", "KDIN", "KEDT", "KEET", "KENW", "KERA", "KETA", "KETC", "KETS", "KFME", "KGTF", "KIXE", "KLRN", "KLRU", "KLCS", "KLVX", "KMOS", "KNME", "KNPB", "KTCA", "KOCE", "KOOD", "KOPB", "KOZK", "KPBS", "KPBT", "KPTS", "KRCB", "KRMA", "KRWG", "KQED", "KSPS", "KSYS", "KTWU", "KUAC", "KUAT", "KUED", "KUHT", "KUON", "KUSD", "KUSM", "KVCR", "KVIE", "KWCM", "WBGU", "WBIQ", "WBRA", "WCBB", "WCFE", "WCMU", "WCTE", "WCVE", "WDCQ", "WDSE", "WEDH", "WEDU", "WEIU", "WENH", "WETA", "WETK", "WETP", "WFSU", "WFWA", "WFYI", "WGBH", "WGBY", "WGCU", "WGTE", "WGTV", "WGVU", "WHRO", "WHUT", "WHYY", "WILL", "WITF", "WJCT", "WKAR", "WKLE", "WKNO", "WLIW", "WLJT", "WLPB", "WLRN", "WLVT", "WMHT", "WMPB", "WMPN", "WMVS", "WNED", "WNEO", "WNET", "WNIN", "WNIT", "WNJT", "WNMU", "WNPT", "WOSU", "WOUB", "WPBS", "WPBT", "WPNE", "WPSU", "WRLK", "WQED", "WQLN", "WQPT", "WSBE", "WSIU" |
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
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 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 os | |
import requests | |
import subprocess | |
cities = {} | |
cities["Atlanta"] = [524, 33.7490, -84.3880] | |
cities["Baltimore"] = [512, 39.2904, -76.6122] | |
cities["Boston"] = [506, 42.3601, -71.0589] |
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/python | |
from binascii import hexlify, unhexlify | |
from Crypto.Cipher import AES | |
from struct import pack, unpack | |
from sys import argv, exit | |
import requests | |
import re | |
def modu(dat): | |
wad.write(b'\x00' * ((0x40 - (len(dat) % 0x40)) % 0x40)) |
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
import json | |
import requests | |
import subprocess | |
home = requests.get("https://content.services.pbskids.org/v2/kidspbsorg/home/").text | |
home = json.loads(home) | |
shows = {} | |
episodes = {} |
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
import subprocess | |
import sys | |
if len(sys.argv) != 3: | |
exit("Usage: name_secrets.py <DOL or ARM binary> <Wii or DS>") | |
if sys.argv[2] != "wii" and sys.argv[2] != "ds": | |
exit("Platform must be specified as Wii or DS.\nUsage: name_secrets.py <DOL or ARM binary> <Wii or DS>") | |
string = subprocess.Popen(["strings", sys.argv[1]], stdout=subprocess.PIPE) |
This tutorial will briefly tell you how to use pisg, a program that takes IRC logs and makes a webpage about statistics of the chat, with Discord.
- Use DiscordChatExporter to generate a log of the chat you want to use pisg with. You need to make it saved in the PlainText format. I prefer the command-line version of the tool. (If you're on Linux/Mac, run this tool with mono.)
- Run my Python script to convert the log into a format that pisg can read (the "mbot" format).
- Run pisg with the command that the script outputs.
NewerOlder