Every API request must have an associated bearer token that will be provided.
Requests made without this authorisation token will return a 403 Status
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 sys | |
| ''' | |
| Write a program which accepts a sequence of comma-seperated | |
| numbers from console and generate a list and a tuple which | |
| contains every number | |
| ''' | |
| def create_list(data): |
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 requests | |
| class LicenseValidationError(Exception): | |
| '''This exception is raised when license validation fails''' | |
| pass | |
| class LicenseActivationError(Exception): | |
| '''This exception is raised when license activation fails''' |
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
| 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 |
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
| 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 - |
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
| 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`) | |
| } |
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
| { | |
| "PX1": "no_script", | |
| "PX2": "js_bootstrap", | |
| "PX3": "domready", | |
| "PX4": "fingerprint", | |
| "PX6": "nav_timing", | |
| "PX7": "incognito", | |
| "PX8": "score_session", | |
| "PX9": "score_impression", | |
| "PX10": "ui_interaction", |
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
| |
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
| find app/src -name "*.js" -exec sh -c 'mv "$0" "${0%.js}.ts"' {} \; |
OlderNewer