[ Launch: test ] a35203f2b0ab98fa943da3c59baf4e20 by stkrzysiak
This file contains 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
--- | |
vhost: | | |
server { | |
listen __PORT____DEFAULT_VHOST__; | |
server_name __VHOST_NAME__; | |
access_log "__ACCESS_LOG__" combined; | |
error_log "__ERROR_LOG__" warn; | |
# Define the vhost to reverse proxy |
This file contains 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
JS Module Learning Notes/Links | |
Below is a summary of how I approached learning about JS module loading. | |
https://www.youtube.com/watch?v=szJjsduHBQQ | |
A recent video on ES6 module loading, which seem to be the buzz words I seek to | |
understand. Made it through 20 minutes, which had it's benefits, but I relized I | |
should probably nderstand more about the AMD api and CommonJS and some background | |
info so I ended up pausing the video.... |
This file contains 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/sh | |
# Source http://lapwinglabs.com/blog/hacker-guide-to-setting-up-your-mac | |
# Worth looking at for dotfile stuff: http://dotfiles.github.io/ | |
# Check for Homebrew, | |
# Install if we don't have it | |
if test ! $(which brew); then | |
echo "Installing homebrew..." | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi |