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 challonge | |
import time | |
class Tournament(): | |
_id = None | |
participants = [] | |
matches = [] | |
printed = [] | |
def __init__(self, _id: str): |
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
{ | |
"tabPane": [ | |
{ | |
"title": "Main", | |
"autoPopulate": false, | |
"autoPopulatePrefix": "SmartDashboard/", | |
"widgetPane": { | |
"gridSize": 64.0, | |
"showGrid": true, | |
"hgap": 16.0, |
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
from itertools import count | |
import sys | |
import re | |
import random | |
import requests as req_orig | |
import requests_cache | |
import statbotics | |
from code import interact | |
import geocoder |
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
# Cole Wilson | |
# August 28 2024 | |
# MATH 273 Remaley Section 3 | |
# | |
# Calculates the cross product of | |
# two vectors in 3D space, with additional | |
# support for many other vector and matrix | |
# operations such as dot products and | |
# scalar multiplication |
OlderNewer