Skip to content

Instantly share code, notes, and snippets.

View pkkid's full-sized avatar
🐝
Bzzz

Michael Shepanski pkkid

🐝
Bzzz
View GitHub Profile
@pkkid
pkkid / vscode.css
Last active January 30, 2025 15:11
vscode.css
/*----------------------------------
* Custom CSS Styles
* Derivative from https://github.com/glennraya
* https://github.com/glennraya/vscode-settings-json/blob/main/custom-vscode.css
*--------------------------------- */
:root {
--transition: opacity 0.3s !important;
}
.codicon { color:#90846b !important; }
.codicon.outline-element-icon { display:none; }
@pkkid
pkkid / sort-photos-by-month.py
Created April 3, 2024 23:09
Sort Photos by Month
#!/usr/bin/python3
"""
Sort Photos by Month.
install python3-pil
"""
import logging, datetime
import argparse, os, sys
import hashlib
from PIL import Image