Skip to content

Instantly share code, notes, and snippets.

View cole-wilson's full-sized avatar
🖖
cole.ws

Cole Wilson cole-wilson

🖖
cole.ws
View GitHub Profile
@cole-wilson
cole-wilson / main.py
Created February 9, 2024 05:39
Combat Robotics Challonge Code
import challonge
import time
class Tournament():
_id = None
participants = []
matches = []
printed = []
def __init__(self, _id: str):
{
"tabPane": [
{
"title": "Main",
"autoPopulate": false,
"autoPopulatePrefix": "SmartDashboard/",
"widgetPane": {
"gridSize": 64.0,
"showGrid": true,
"hgap": 16.0,
@cole-wilson
cole-wilson / main.py
Created May 20, 2024 03:57
AP Statistics Final Project: Is FRC pay-to-win?
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
@cole-wilson
cole-wilson / ec1.py
Created August 29, 2024 00:09
Extra Credit 1: MATH 273 Calculus III
# 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