This file contains 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
import requests | |
# write permissions for issues and pull requests, read for metadata | |
TOKEN: str = "<your GH token>" | |
LABELS: set[tuple[str, str, str]] = { | |
( | |
"<your new label name>", | |
"<your new label description>", |
This file contains 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 | |
## linux | |
alias c='clear' | |
alias cl='clear' | |
alias clr='clear' | |
alias aptupd='sudo apt update' | |
alias aptupg='sudo apt upgrade -y' | |
alias aptrm='sudo apt autoremove -y' | |
alias aptc='sudo apt clean' |
This file contains 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
# load color parsing | |
setopt PROMPT_SUBST | |
autoload -U colors | |
# load antigen | |
source $HOME/.antigen/antigen.zsh | |
# load the oh-my-zsh's library | |
antigen use oh-my-zsh |