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
| Moved to: | |
| https://github.com/cra0zy/code-nautilus | |
| since people want to add features to it and no notification arrive from comments on gist. |
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
| # Stop all containers | |
| docker stop `docker ps -qa` | |
| # Remove all containers | |
| docker rm `docker ps -qa` | |
| # Remove all images | |
| docker rmi -f `docker images -qa ` | |
| # Remove all volumes |
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
| var nodes = [ | |
| { | |
| links: [ 1 ], // node 0 is linked to node 1 | |
| visited: false | |
| }, { | |
| links: [ 0, 2 ], // node 1 is linked to node 0 and 2 | |
| path: [], | |
| visited: false | |
| }, | |
| ... |