-
How to use discipline, consistency and code organization to make your code grow more gently.
-
As you cycle through patterns, your application is becoming a patchwork of different coding techniques.
All those new techniques actually help, or if you are just adding layers of inderection.
-
Large applications are large so what we can do is organize a codebase in a way that "scales logarithmically".
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 | |
# This is a fork of https://gist.github.com/mcemce/a6ee9b4ab07df9972883 with | |
# additional variable-based configuration and status hand-holding added by | |
# myself (@jdickey). Thanks to @mcemce for helping me out of a jam. | |
# Docker VM name. 'dev' is a recommended name for a development VM; you'll want | |
# to name a production VM something else. | |
OUR_DOCKER_VM=dev | |
echo "Docker will install a machine named $OUR_DOCKER_VM within VMware." |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |