Skip to content

Instantly share code, notes, and snippets.

@androidWG
androidWG / 3d-card-hover-effect.markdown
Created November 28, 2025 04:24
3D card hover effect
@androidWG
androidWG / mergify.py
Last active April 7, 2022 14:35
Spotify Playlist Merger (mergify script)
import sys
from typing import Any, Optional
try:
import spotipy
from spotipy import SpotifyOAuth
except ImportError:
print("You need the spotipy package to use this script. Please install it using 'python -m pip install spotipy'")
sys.exit(5)
@androidWG
androidWG / build-pyinstaller.bat
Created December 1, 2021 22:26
Build and install PyInstaller automatically in your Discord.fm project
rmdir /s/q pyinstaller
git clone --branch master https://github.com/pyinstaller/pyinstaller.git
cd pyinstaller\bootloader
python ./waf distclean all
cd..
..\Discord.fm\venv\Scripts\python.exe setup.py install