Skip to content

Instantly share code, notes, and snippets.

View 0xFR0STY's full-sized avatar

Jared 0xFR0STY

View GitHub Profile

FYI (July 24, 2025): I've been away since July 11, dealing with an emergency move. I'll be back working on all the amazing comments y'all have been putting down, most possibly by the first weekend of August. I appreciate all the contributions everybody has been making and all the time everybody has put to make all of our lives better.

Streaming Whitelists and Blacklists for PiHole

Last Updated On:           July 10, 2025
Last Updated Platform:     Peacock

Table of Contents

@Thoosje
Thoosje / proxy-rotation-httpx.py
Last active March 16, 2022 07:43
Simple script to show how you can rotate proxies using httpx in python.
import asyncio, httpx
# httpx version = 0.17.1
# Versions below this use session._proxies instead of session._mounts
async def rotateProxy(session, proxy):
import httpcore
import typing
from httpx._client import URLPattern, DEFAULT_LIMITS
@liorr
liorr / twingate_connectors_upgrade.sh
Last active September 4, 2023 19:40
Twingate connectors upgrade
#!/usr/bin/env bash
set -e
REPO="twingate"
IMAGE=$REPO/connector:latest
CID=$(docker ps -a --format "{{.Names}} {{.Image}}" | grep $REPO | awk '{print $1}')
docker pull $IMAGE
for im in $CID
do
LATEST=`docker inspect --format "{{.Id}}" $IMAGE`
RUNNING=`docker inspect --format "{{.Image}}" $im`
@Log1x
Log1x / README.md
Last active November 28, 2023 21:15
Uptime Robot Discord Webhook

Uptime Robot Webhook for Discord

Screenshot

Configuration

  • Alert Contact Type: Web-Hook
  • URL to Notify: https://discordapp.com/api/webhooks/CHANGEME/CHANGEME?
    • Must end with ?
/**
* purzi's Count up script V.1
Don't copy this part :D
donations for idk memes
Btc: DCJ1S92joR9uZfujkxo8utadCEZoWCSBv
ETH: 0x6158e8A6574EdCAa6d229D3b67b726f70C704911
BCH: qq0yjc8ts8uvt75y2f7kmk3yme2jlhsxwy9w5ua5v2
you can tip me on bustadice or bustabit "/tip purzi"
*/
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active November 1, 2025 05:06 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy

Exporting your 2FA tokens from Authy to transfer them into another 2FA application

IMPORTANT - Update regarding deprecation of Authy desktop apps

Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.

And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.

If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.

@EvieePy
EvieePy / error_handler.py
Last active July 7, 2025 05:48
Simple Error Handling for Prefix and App commands - discord.py
import logging
import discord
from discord import app_commands
from discord.ext import commands
LOGGER: logging.Logger = logging.getLogger(__name__)