This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias listi='qlist -I' | |
alias sync='sudo emerge --sync' | |
alias syncg='sudo emerge --sync guru' | |
alias install='sudo emerge -avq' | |
alias remove='sudo emerge -C' | |
alias update='sudo emerge -avquD @world' | |
alias update-new='sudo emerge -avquDN @world' | |
alias update-changed='sudo emerge -avquDU @world' | |
alias clean='sudo emerge --clean --ask' | |
alias cleand='sudo emerge --depclean --ask' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ConsoleColors { | |
// Reset | |
public static final String RESET = "\033[0m"; // Text Reset | |
// Regular Colors | |
public static final String BLACK = "\033[0;30m"; // BLACK | |
public static final String RED = "\033[0;31m"; // RED | |
public static final String GREEN = "\033[0;32m"; // GREEN | |
public static final String YELLOW = "\033[0;33m"; // YELLOW | |
public static final String BLUE = "\033[0;34m"; // BLUE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub CLI api | |
# https://cli.github.com/manual/gh_api | |
### GIT AND PRINT ALL REPOSITORIES ### | |
# gh api --paginate \ | |
# -H "Accept: application/vnd.github+json" \ | |
# -H "X-GitHub-Api-Version: 2022-11-28" \ | |
# /user/repos | jq '.[].html_url' | awk '{print $NF}' FS=/ | awk -F\" '{print $1}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class colors: | |
default = 0 | |
teal = 0x1abc9c | |
dark_teal = 0x11806a | |
green = 0x2ecc71 | |
dark_green = 0x1f8b4c | |
blue = 0x3498db | |
dark_blue = 0x206694 | |
purple = 0x9b59b6 | |
dark_purple = 0x71368a |