start new:
tmux
start new with session name:
tmux new -s myname
| .motto-disturb { | |
| position: relative; | |
| } | |
| @keyframes noise-anim { | |
| 0% { | |
| clip: rect(55px, 9999px, 9px, 0); | |
| } | |
| 5% { | |
| clip: rect(12px, 9999px, 60px, 0); |
| #!/bin/bash | |
| # Stop all containers | |
| containers=`docker ps -a -q` | |
| if [ -n "$containers" ] ; then | |
| docker stop $containers | |
| fi | |
| # Delete all containers | |
| containers=`docker ps -a -q` | |
| if [ -n "$containers" ]; then | |
| docker rm -f -v $containers |
| #!/bin/bash | |
| #Cleans up glassfish domain folders so that the maven deployment with cargo doesn't hang. | |
| #--------------------------------------------------------------------------------------------------- | |
| # CUSTOMIZATION SECTION START | |
| #--------------------------------------------------------------------------------------------------- | |
| export GF_DIR=/home/nyxcalamity/ws/appservers/glassfish | |
| #--------------------------------------------------------------------------------------------------- | |
| # CUSTOMIZATION SECTION END | |
| #--------------------------------------------------------------------------------------------------- | |
| export OK="$(tput setaf 2) DONE$(tput sgr0)" |