Skip to content

Instantly share code, notes, and snippets.

View TotallyNotSethP's full-sized avatar

TotallyNotSeth.dev TotallyNotSethP

View GitHub Profile
{
"client_name": "AT Toolbox for Android",
"client_uri": "attoolbox.totallynotseth.dev",
"redirect_uris": [
"dev.totallynotseth.attoolbox://callback"
],
"token_endpoint_auth_method": "none",
"contacts": [
"[email protected]"
]
@TotallyNotSethP
TotallyNotSethP / main.py
Last active February 10, 2021 17:48
+-=*/@%#()< Interpreter
import keyboard
class Accumulator:
def __init__(self, initial_value=0):
self.accumulator = initial_value
def increment(self, number=1):
self.accumulator += number
return self.accumulator