The point of this is to provide links and resources to master the new Gutenberg Editor for WordPress as a developer.
This file contains hidden or 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
| function dnames-fn { | |
| for ID in `docker ps | awk '{print $1}' | grep -v 'CONTAINER'` | |
| do | |
| docker inspect $ID | grep Name | head -1 | awk '{print $2}' | sed 's/,//g' | sed 's%/%%g' | sed 's/"//g' | |
| done | |
| } | |
| function dip-fn { | |
| echo "IP addresses of all named running containers" |
This file contains hidden or 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
| #!/bin/bash | |
| check_exit_status() { | |
| if [ $? -eq 0 ] | |
| then | |
| echo | |
| echo "Success" | |
| echo | |
| else |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # Bootstrap script for setting up a new Ubuntu machine | |
| # | |
| # This should be idempotent so it can be run multiple times. | |
| # | |
| # Notes: | |
| # - Before running, check in this file: | |
| # - latest version of NVM, |