bakerx run so.io focal --ip 192.168.100.120
whoami
Install prereqs.
bakerx run so.io focal --ip 192.168.100.120
whoami
Install prereqs.
class StackPromise extends Promise { | |
constructor(args) { | |
super((myresolve, myreject) => | |
{ | |
let fn = function(result) { | |
console.log(new Error("Promise resolved").stack); | |
myresolve(result); | |
} | |
args.call(null, fn, myreject ); |
{"fawn": {"2.1.1": {"dependencies": [], "resources": ["fawn"]}}, "juju-docean": {"0.6.0": {"dependencies": [], "resources": ["juju_docean"]}}, "kafka-tools": {"0.1.9": {"dependencies": [], "resources": []}}, "pyirsdk": {"1.1.7": {"dependencies": [{"type": "python-module", "name": "yaml"}], "resources": []}}, "biopython": {"1.71": {"dependencies": [], "resources": ["Bio", "BioSQL"]}}, "sphinxcontrib-actdiag": {"0.8.5": {"dependencies": [{"type": "python-module", "name": "sphinxcontrib"}], "resources": ["sphinxcontrib"]}}, "django-stdimage": {"3.0.1": {"dependencies": [{"type": "python-module", "name": "django.core.files.base"}], "resources": ["stdimage"]}}, "pafy": {"0.5.4": {"dependencies": [], "resources": ["pafy"]}}, "f5-openstack-lbaasv2-driver": {"12.0.0": {"dependencies": [], "resources": ["f5lbaasdriver", "test"]}}, "dump1090exporter": {"16.10.5": {"dependencies": [], "resources": ["dump1090exporter"]}}, "django-dowser": {"0.1.4": {"dependencies": [{"type": "python-module", "name": "django.utils.html"}] |
class Customer extends DomainObject | |
{ | |
public Customer(String name) { | |
_name = name; | |
} | |
public String statement() { | |
double totalAmount = 0; | |
int frequentRenterPoints = 0; | |
Enumeration rentals = _rentals.elements(); | |
String result = "Rental Record for " + name() + "\n"; |
name: hibernate-spring | |
vm: | |
ip: 192.168.8.8 | |
ports: 8080 | |
vars: | |
- mysql_password: | |
prompt: Type your password for mysql server | |
tools: | |
- maven | |
services: |
name: brain-jupyter | |
vm: | |
ip: 192.168.88.11 | |
ports: 8888 | |
lang: | |
- python2 | |
tools: | |
- jupyter | |
commands: | |
serve: jupyter notebook --no-browser --NotebookApp.token='' |
@Test | |
public void postMessage() | |
{ | |
driver.get("https://csc510-fall16.slack.com/"); | |
// Wait until page loads and we can see a sign in button. | |
WebDriverWait wait = new WebDriverWait(driver, 30); | |
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("signin_btn"))); | |
// Find email and password fields. |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Focus sessions</title> | |
<meta name="description" content="pomodoro"> | |
<meta name="author" content="Chris Parnin"> |