Skip to content

Instantly share code, notes, and snippets.

View AlphaGameDeveloper's full-sized avatar
😥
Really bad burnout rn

Damien Boisvert AlphaGameDeveloper

😥
Really bad burnout rn
View GitHub Profile
@AlphaGameDeveloper
AlphaGameDeveloper / autotip_dashboard.py
Created July 2, 2025 01:19
Minecraft AutoTip mod dashboard
import json
import os
from datetime import datetime
from collections import defaultdict
# CHANGE THIS FOR YOUR GAME INSTANCE
path = "/path/to/your/.minecraft/config/autotip/(UUID)/stats"
"""
{
@AlphaGameDeveloper
AlphaGameDeveloper / smhs-bell.py
Created April 28, 2025 16:41
San Marin High School bell schedule CLI
#!/usr/bin/env python3
import datetime
import sys
import argparse
import json
def time_until_next_bell(schedule, current_time):
verbose(f"Calculating time until next bell from {current_time}")
for i, period in enumerate(schedule):
if len(period) == 2: # Only the name and start time