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
    
  
  
    
  | Import-Module Dism | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServer | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-CommonHttpFeatures | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpErrors | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpRedirect | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-ApplicationDevelopment | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-NetFxExtensibility | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-NetFxExtensibility45 | |
| Enable-WindowsOptionalFeature -Online -FeatureName IIS-HealthAndDiagnostics | 
  
    
      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 | |
| # Works with: | |
| # Docker 18.06.1-ce, build e68fc7a | |
| # Kubernetes v1.10.0 | |
| # minikube v0.30.0 | |
| # Download minikube hyperkit driver and install | |
| curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-hyperkit \ | 
  
    
      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
    
  
  
    
  | <# | |
| The command to run, built from the raw link of this gist | |
| Win+R | |
| iexplore http://boxstarter.org/package/url?<RAW GIST LINK> | |
| OR (if you don't like the way the web launcher force re-installs everything) | 
  
    
      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
    
  
  
    
  | let numbers = [4,6,3,8]; | |
| let max = Math.max(...numbers); | |
| console.log(max); | 
  
    
      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 | |
| # compiled from https://docs.docker.com/engine/installation/linux/debian/#/debian-jessie-80-64-bit | |
| sudo apt-get update | |
| sudo apt-get dist-upgrade -y | |
| sudo apt-get install apt-transport-https ca-certificates -y | |
| sudo sh -c "echo deb https://apt.dockerproject.org/repo debian-jessie main > /etc/apt/sources.list.d/docker.list" | |
| sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | 
  
    
      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
    
  
  
    
  | # ... | |
| ADD package.json /tmp/package.json | |
| RUN cd /tmp && npm install && \ | |
| mkdir -p /opt/app && cp -a /tmp/node_modules /opt/app/ | |
| # ... | |
| WORKDIR /opt/app | |
| ADD . /opt/app | 
  
    
      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
    
  
  
    
  | # tmux v2.0 installation steps for Ubuntu 14.04 (Trusty Tahr) | |
| tmux -V | |
| sudo apt-get update | |
| sudo apt-get install -y python-software-properties software-properties-common | |
| sudo add-apt-repository -y ppa:pi-rho/dev | |
| sudo apt-get update | |
| sudo apt-get install -y tmux | |
| tmux -V | |
| # tmux v1.9 installation steps for Ubuntu 14.04 (Trusty Tahr) | 
  
    
      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
    
  
  
    
  | echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |