This allows us to refer to other nodes using names instead of IP addresses.
sudo nano /etc/hosts
- Example on master:
[ | |
{ | |
"id": "00601", | |
"City": "ADJUNTAS", | |
"State": "PR" | |
}, | |
{ | |
"id": "00602", | |
"City": "AGUADA", | |
"State": "PR" |
window.location.origin||(window.location.origin=window.location.protocol+"//"+window.location.hostname+(window.location.port?":"+window.location.port:""));typeof Array.prototype.filter=="undefined"&&(Array.prototype.filter=function(n){"use strict";var i,f,r,e,t,u;if(this===void 0||this===null)throw new TypeError;if(i=Object(this),f=i.length>>>0,typeof n!="function")throw new TypeError;for(r=[],e=arguments[1],t=0;t<f;t++)t in i&&(u=i[t],n.call(e,u,t,i)&&r.push(u));return r});typeof Array.prototype.find=="undefined"&&Object.defineProperty(Array.prototype,"find",{value:function(n){var i,u,f,t,r;if(this==null)throw new TypeError('"this" is null or not defined');if(i=Object(this),u=i.length>>>0,typeof n!="function")throw new TypeError("predicate must be a function");for(f=arguments[1],t=0;t<u;){if(r=i[t],n.call(f,r,t,i))return r;t++}return undefined},configurable:!0,writable:!0});window.$xa=function(){var n,t; | |
//! moment.js | |
//! version : 2.27.0 | |
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors | |
//! lic |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Text.RegularExpressions; | |
using System.Xml; | |
using System.Xml.Linq; | |
namespace Formix.Utils | |
{ | |
class Program |
/** | |
* Parse hash bang parameters from a URL as key value object. | |
* | |
* For repeated parameters the last parameter is effective. | |
* | |
* If = syntax is not used the value is set to null. | |
* | |
* #!x+y:3 -> { x:null, y:3 } | |
* | |
* @param options |