Skip to content

Instantly share code, notes, and snippets.

View etahn-git's full-sized avatar

ethan etahn-git

View GitHub Profile
@etahn-git
etahn-git / compose.yml
Last active May 4, 2025 02:55
prowlarr qBittorrent Sonarr Radarr NZBget gluetun Docker Compose Media-Stack
services:
gluetun:
image: qmcgaw/gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
environment:
- VPN_SERVICE_PROVIDER=nordvpn
- BLOCK_MALICIOUS=off
@etahn-git
etahn-git / membercount.py
Created November 17, 2022 22:25
Customizable member count channel for discord.py
import discord
import discord.utils
from discord.ext import commands
# bot token
TOKEN = ''
# bot prefix
BOT_PREFIX = '!'
# The id of the channel the bot should update
@etahn-git
etahn-git / github follower count channel.py
Last active November 17, 2022 19:09
Discord channel that counts the amount of github followers a user has.
import discord
from discord.ext import commands
import requests
# ---------------------------------------------------------
TOKEN = '' # Discord bot token
GITHUB_USERNAME = '' #github username (ex: 'etahn-git')
# Follower count channel id
CHANNEL_ID =