401 Unauthorized
See More
HTTPError: 401 Unauthorized
at Function.discover (/some/path/to/file.js:7:32)
// Map from lowercase to flag emoji | |
const mapLowerUpper = { | |
'a': '🇦', 'b': '🇧', 'c': '🇨', 'd': '🇩', 'e': '🇪', | |
'f': '🇫', 'g': '🇬', 'h': '🇭', 'i': '🇮', 'j': '🇯', | |
'k': '🇰', 'l': '🇱', 'm': '🇲', 'n': '🇳', 'o': '🇴', | |
'p': '🇵', 'q': '🇶', 'r': '🇷', 's': '🇸', 't': '🇹', | |
'u': '🇺', 'v': '🇻', 'w': '🇼', 'x': '🇽', 'y': '🇾', 'z': '🇿' | |
}; | |
// Map for Morse code |
//=========================================================================== | |
// Extend DataManager to persist specific changes | |
//=========================================================================== | |
const RMMZ_DataManager_makeSaveContents = DataManager.makeSaveContents; | |
const RMMZ_DataManager_extractSaveContents = DataManager.extractSaveContents; | |
const RMMZ_DataManager_onLoad = DataManager.onLoad; | |
DataManager.makeSaveContents = function() { | |
const contents = RMMZ_DataManager_makeSaveContents.call(this); |
openapi: 3.0.0 | |
info: | |
version: '1.3' | |
title: Kong Admin API | |
license: | |
name: Apache 2.0 | |
description: '' | |
contact: | |
name: Kong | |
servers: |
Thank you for your interest in making a Contribution to a project of Kong Inc., a USA company with notice address at [251 Post St, 2nd Floor San Francisco, CA, 94108, USA] (“Kong” or “we”). In order to clarify the intellectual property license granted with Contributions from you, Kong must have an Individual Contributor License Agreement (“ICLA”) on file that has been signed by you, a developer of software or other technology (either an individual or an entity), indicating agreement to the license terms below. By electronically signing below, you are consenting to transact electronically and are entering into a binding contract, and you accept and agree to the following terms and conditions for your Contributions submitted Kong.
BEFORE SIGNING AND/OR CLICKING A BUTTON TO E-SIGN OR ACCEPT, CAREFULLY READ THE TERMS AND CONDITIONS OF THIS AGREEMENT AND ANY TERMS OF USE PROVIDED THROUGH THE SIGNING PROCESS.
If you are not authorized as set forth above, do not complete the
sudo chmod -R guo+w storage | |
sudo chmod -R guo+w bootstrap/cache |
sudo add-apt-repository ppa:ondrej/php | |
sudo apt-get update | |
sudo apt-get install -yqq php7.2 php7.2-common | |
sudo apt-get install -yqq php7.2-dom php7.2-cli php7.2-fpm php7.2-curl php7.2-gd php7.2-mysql php7.2-mbstring zip unzip | |
sudo service apache2 stop | |
sudo service nginx start |
{ | |
"description": "caps_lock + w,a,s,d to arrow_keys", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "w", | |
"modifiers": { | |
"mandatory": [ | |
"fn" | |
], |
export default class TreeNode { | |
constructor (value, canHaveChildren) { | |
this.canHaveChildren = canHaveChildren != null ? canHaveChildren : true | |
this.value = value | |
this.parent = null | |
this.children = [] | |
} | |
isAncestor (node) { | |
if (node == null) { |