Update homebrew formulaes
➜ brew update
To install
➜ brew install postgresql
To configure with postgres superuser
Update homebrew formulaes
➜ brew update
To install
➜ brew install postgresql
To configure with postgres superuser
| #!/bin/bash | |
| username="" | |
| token="" | |
| organization="" | |
| suffix=".git" | |
| # clone all repositories for specifed user | |
| for repo in `curl https://api.github.com/user/repos?type=owner\&per_page=100 -u ${username}:${token} | jq .[].ssh_url | sed -e 's/^"//' -e 's/"$//'` | |
| do |
| branches: | |
| only: | |
| - master | |
| os: | |
| - linux | |
| - osx | |
| language: go |
| #!/bin/zsh | |
| # 1. Close all JetBrains applications | |
| echo "Closing running JetBrains instances..." | |
| jbs=(phpstorm pycharm intellij webstorm datagrip clion goland rider) | |
| for app in "${jbs[@]}"; do | |
| pkill -fi "$app" 2>/dev/null | |
| done | |
| # 2. Define Base Directories |