Skip to content

Instantly share code, notes, and snippets.

View pagueru's full-sized avatar
🥑
Working from home

Raphael Coelho pagueru

🥑
Working from home
View GitHub Profile
@OlivierLDff
OlivierLDff / Readme.md
Last active November 28, 2024 18:35
🚀 Git Bash Emojis (Windows)

Open git bash with admin privilege.

cd "C:/Program Files/Git/usr/share/mintty"
mkdir -p emojis
cd emojis
curl https://raw.githubusercontent.com/wiki/mintty/mintty/getemojis > getemojis
./getemojis -d
@hosackm
hosackm / colorlog.py
Created July 28, 2020 01:39
Colored logger module using Colorama
import logging
from colorama import init, Fore, Back
init(autoreset=True)
class ColorFormatter(logging.Formatter):
# Change this dictionary to suit your coloring needs!
COLORS = {
"WARNING": Fore.RED,