Skip to content

Instantly share code, notes, and snippets.

View yungztrunks's full-sized avatar

*weshford yungztrunks

  • 73 - Hezex
  • 14:35 (UTC +01:00)
View GitHub Profile
@yungztrunks
yungztrunks / links.md
Created October 30, 2024 15:20
useful links
@yungztrunks
yungztrunks / color_of_the_supreme_king.py
Created September 24, 2024 11:43
Python colored print statements, various printed colors
PURPLE = "\033[95m"
CYAN = "\033[96m"
DARKCYAN = "\033[36m"
BLUE = "\033[94m"
GREEN = "\033[92m"
YELLOW = "\033[93m"
RED = "\033[91m"
BOLD = "\033[1m"
UNDERLINE = "\033[4m"
END = "\033[0m"
@yungztrunks
yungztrunks / gitstring_search.sh
Created September 23, 2024 08:47
search for specific strings across the entire git repo history using git commands
git rev-list --all | xargs -n 1 git grep 'rashford'
# the above now searchs through all commits in every file for the string "rashford"