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
# install openjdk | |
sudo apt-get install openjdk-7-jdk | |
# download android sdk | |
wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz | |
tar -xvf android-sdk_r24.2-linux.tgz | |
cd android-sdk-linux/tools | |
# install all sdk packages |
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
name: lockUpdate (1) | |
description: Create a new snippet from a blank template. | |
host: EXCEL | |
api_set: {} | |
script: | |
content: > | |
const username = "cfebj_boathouseapi"; | |
const listLocks = async () => { |
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
/* | |
Feature: Data Source Join and Mapping | |
Scenario: Joining and mapping data from third-party API and local DB query in execute() | |
GIVEN two different data sources, one from a third-party API (call3partyAPI) and one from a local DB query (dbQuery) | |
AND the call3partyAPI() returns static "curriculum" data | |
AND the dbQuery() returns user learning progress data from our DB | |
WHEN the execute() function is called | |
THEN it should return an array of [{lessonName, readableStatus}] |