xServer API Documentation
Base URL
https://xserver.boxmarshall.com/api/v2/authorize
Validation Endpoint
Validation will fail if license key is not activated
find app/src -name "*.js" -exec sh -c 'mv "$0" "${0%.js}.ts"' {} \; |
|
{ | |
"PX1": "no_script", | |
"PX2": "js_bootstrap", | |
"PX3": "domready", | |
"PX4": "fingerprint", | |
"PX6": "nav_timing", | |
"PX7": "incognito", | |
"PX8": "score_session", | |
"PX9": "score_impression", | |
"PX10": "ui_interaction", |
const recursionExample = () => | |
new Promise((resolve, reject) => { | |
const maxCycles = 10 | |
let cycle = 0 | |
const run = () => { | |
try { | |
if (cycle > maxCycles) { | |
throw new MaxTriesError(`Max of ${maxCycles} reached`) | |
} |
sudo yum update -y | |
sudo yum install epel-release -y | |
sudo yum install git -y | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash | |
curl -sL https://rpm.nodesource.com/setup_10.x | sudo bash - |
Base URL
https://xserver.boxmarshall.com/api/v2/authorize
Validation will fail if license key is not activated
sudo yum update -y | |
sudo amazon-linux-extras install epel -y | |
sudo yum install git -y | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm |
import requests | |
class LicenseValidationError(Exception): | |
'''This exception is raised when license validation fails''' | |
pass | |
class LicenseActivationError(Exception): | |
'''This exception is raised when license activation fails''' |
Name: David Ibia Github: boxpositron Roles: [Server Side Lead, Project Code Review]
Name: Adesuyi Adelekan Github: desuyi Roles: [Server Side Development]