Skip to content

Instantly share code, notes, and snippets.

View averwhy's full-sized avatar

averyB averwhy

View GitHub Profile
@averwhy
averwhy / PINGER.py
Last active February 22, 2024 04:45
PINGER.py - For generating a ping list in xqc's chat. NO NEED TO MANUALLY COPY! The program will automatically copy to your clipboard!
import re
import requests
import datetime
import pyperclip
STREAMER = 'xqc'
BLACKLIST = ('avrwhy', # myself obviously
#all xqc mods \/
'xqcbot', 'thisapear', 'nightbot', 'hydration', 'zza_ow', 'mendo', 'netcat',
@averwhy
averwhy / button.py
Created February 7, 2022 20:00
TikTok Button Thing (unfinished)
import random
import yaml
from os.path import exists
class Config:
def __init__(self):
pass
def load(self, filename="button_stats"):
"""Loads the config file. Creates it if it doesnt exist. Returns the opened file object."""
filename = f"{filename}.yml"