Skip to content

Instantly share code, notes, and snippets.

View christophervigliotti's full-sized avatar
🎯
Hi

Christopher Vigliotti christophervigliotti

🎯
Hi
View GitHub Profile
@christophervigliotti
christophervigliotti / go.py
Created March 5, 2026 02:10
Posts today and tomorrow details for Pokemon Go events
import requests
from datetime import datetime, timezone, timedelta
# --- CONFIGURATION ---
# Replace this with your actual Discord Webhook URL
DISCORD_WEBHOOK_URL="your webhook url goes here"
def get_pogo_data(target_date):
"""Returns PoGo event data for a specific date."""
base_data = {
@christophervigliotti
christophervigliotti / arrs_inspector.sh
Last active April 11, 2026 20:33
detailed comparison of files in "a" to files and hardlinks in "b"
#!/bin/bash
# What Is This
# A way to compare downloads in folder A to hardlinks in folder B. Useful to see if your
# "use hardlinks" logic in the ARRS is working
#
# Separation of Concerns (AI yackin')
# The logic for calculating the 2TB physical limit is isolated from the descriptive logic
# used for the detailed file list.
#