Skip to content

Instantly share code, notes, and snippets.

@Brybry16
Brybry16 / INSTALLATION.md
Last active July 9, 2025 13:03
Discord Reactive Images (Fugi Overlay) CSS Skins
@Brybry16
Brybry16 / style.css
Created December 17, 2022 13:19
Discord Squared Horizontal Overlay
body {
--width: 100;
--widthPX: calc(var(--width) * 1px);
--height: calc(var(--widthPX) * 1.25);
--nameHeight: calc(var(--height) - var(--widthPX));
--fontSize: calc((var(--widthPX) / 100) * 15);
width: 100%;
overflow: hidden;
@Brybry16
Brybry16 / pkmngoavaiabilitychecker.py
Last active July 23, 2016 14:16
Checks if Pokemon GO is finally out in France
# -*- coding: utf-8 -*-
import threading
import tweepy
import datetime
import sys
import urllib
import urllib2
import json
import random
import time
@Brybry16
Brybry16 / pgo_ptc_checker.py
Last active July 28, 2016 16:25
[Twitter Bot] Pokemon GO and Pokemon Trainer Club servers checker
import threading
import tweepy
import datetime
import requests
import sys
url = {"pgo": "https://pgorelease.nianticlabs.com/plfe", "ptc": "https://club.pokemon.com"}
servers = {"pgo": "Pokemon GO", "ptc": "Pokemon Trainer Club"}
data = {"pgo": {"online": True, "latency": 0, "idle": 0}, "ptc": {"online": True, "latency": 0, "idle": 0}}
timeout = 3