This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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. | |
| # |
OlderNewer