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,
@mattmc3
mattmc3 / modern_sql_style_guide.md
Last active June 25, 2025 21:50
Modern SQL Style Guide
layout author title revision version description
default
mattmc3
Modern SQL Style Guide
2019-01-17
1.0.1
A guide to writing clean, clear, and consistent SQL.

Modern SQL Style Guide