Skip to content

Instantly share code, notes, and snippets.

View devhindo's full-sized avatar
🌠
creating my own way

devhindo

🌠
creating my own way
View GitHub Profile
@devhindo
devhindo / .bashrc
Last active May 23, 2023 07:49
.bashrc
export PATH="$PATH"
alias python="winpty python.exe"
alias cv="python3 -m venv venv && source venv/Scripts/activate"
alias av="source venv/Scripts/activate"
alias gi="touch .gitignore && echo 'venv/' >> .gitignore && echo '.vscode/' >> .gitignore"
alias nrd="npm run dev"
alias nrb="npm run build"
function add_commit_push() {
git add .