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
(function (Promise:Function /* Strange, but true... according to Flow */) { | |
"use strict" | |
// This function cannot(!) use the 'this'-binding fat arroq: () ==> {} | |
Promise.spread = function (promises:Array, fulfilled:Function, rejected:?Function):Promise { | |
return Promise.all(promises).spread(fulfilled, rejected) | |
} | |
// This function cannot(!) use the 'this'-binding fat arroq: () ==> {} | |
// eslint-disable-next-line no-extend-native |
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
--- | |
# Initial server setup; run on guest after 'Assumptions' are addressed: | |
# Forked from: https://www.vultr.com/docs/how-to-configure-a-new-ubuntu-server-with-ansible | |
# | |
# VirtualBox OS Prep | |
# | |
# Assumptions: | |
# Already have used VirtualBox Manager to: | |
# * create new VirtualBox ubuntu 20.04.3+ using VirtualBox Manager: | |
# * General > Basic: |