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
@michaeldebetaz
michaeldebetaz / catppuccin
Last active July 18, 2025 15:55
Windows Git Bash Terminal Catppuccin Theme
# Based on the Catppuccin theme for kitty
# source https://github.com/catppuccin/kitty/blob/main/themes/mocha.conf
# Add this file to your Git Bash Terminal theme directory
# (e.g. C:\Program Files\Git\usr\share\mintty\themes).
# Open Git Bash, right click on the terminal top bar and go to
# Options../Looks/Theme to select the theme
ForegroundColour=205,214,244
BackgroundColour=30,30,46
Black=69, 71, 90
@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 July 24, 2025 05:44
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