As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/bash | |
| if [[ "$STASH_USER" == "" || "$STASH_PASS" == "" ]]; then | |
| echo "FATAL: You need to set STASH_USER and/or STASH_PASS" | |
| exit 1 | |
| fi | |
| STASH_HOST=${STASH_HOST:-stash.hq.practicefusion.com} | |
| STASH_URL=https://${STASH_USER}:${STASH_PASS}@${STASH_HOST} |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
| // Evaluation of Infix Expression using Two Stacks | |
| // p9Scripts | |
| /* | |
| Q: Evalution of Infix Expression using Two Stacks. | |
| Algo: Here we have two stacks. | |
| 1) Operator Stack | |
| 2) Operand Stack. |