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
function change_ground(ground) | |
--[[ | |
paste this code into the console and then use the change_ground(`ground`) command | |
options for `ground` can be a number or a string | |
use `worldtiledefs.lua` or `terrain.lua` as a reference | |
--]] | |
ground = | |
ground == nil and GROUND.QUAGMIRE_SOIL or type(ground) == "string" and GROUND[string.upper(ground)] or ground |
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
tell application "2021 Digital AP Exams" | |
activate | |
end tell | |
tell application "System Events" | |
set testSec to "I will not give or receive help during this exam. I will not share or post references to this exam during the testing window. If anyone helps me or if I help them, we will both be investigated.\nMy answers will be entirely my own. Plagiarism software and analyses will be used to review my responses.\nIf I attempt to cheat, my score will be canceled, and college admissions offices can be notified. I will also be disqualified from taking future AP or SAT exams in high school and CLEP exams in college." | |
keystroke "\t" | |
keystroke testSec | |
end tell |
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
[ | |
{ | |
"asset": "https://discord.com/assets/05ace4106e5e1af6afbea0fa339e557c.svg", | |
"names": [ | |
":hash:" | |
], | |
"strings": [ | |
"\u0023\ufe0f\u20e3", | |
"\u0023\u20e3" | |
] |
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
from contextlib import contextmanager | |
from io import BytesIO, StringIO | |
import os | |
import re | |
import requests | |
import signal | |
import time | |
from typing import List | |
import urllib |