Skip to content

Instantly share code, notes, and snippets.

View AlphaGameDeveloper's full-sized avatar

Damien Boisvert AlphaGameDeveloper

View GitHub Profile
@AlphaGameDeveloper
AlphaGameDeveloper / discord-and-vencord.sh
Last active September 24, 2025 16:48
Quick & Simple shell script for Linux systems to install Discord with Vencord. Works for initial installation and updates.
#!/usr/bin/env bash
# Quick shell script for Linux systems, to install Discord & Vencord.
# By default, installs to /opt/discord; Should be fine. What's nice
# about this script in lieu of other methods is that it installs the
# package from discord themselves instead of a package maintained by
# some people who'll be a couple hours (if not days) late after an
# update was released by Discord.
# Also, I've had problems with Vencord being nuked when Discord gets
@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