Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# This script installs the dependencies required by cypress.io tool
# on amazon linux AMI as the required dependencies are not easily available.
# path of dynamic executable of cypress
# for ex. /home/ec2-user/.cache/Cypress/3.0.1/Cypress/
CYPRESS_EXECUTABLE_FOLDER="/home/ec2-user/.cache/Cypress/3.1.5/Cypress"
exitError() {
@maxterry
maxterry / parse.js
Created June 23, 2012 19:36 — forked from aaronksaunders/parse.js
Titanium Appcelerator Quickie: Parse API : parse.js
//Public client interface
function Client(applicationId, masterKey) {
this.applicationId = "applicationId";
this.masterKey = "masterKey";
}
exports.Client = Client;
//Parse API endpoint
var ENDPOINT = 'https://api.parse.com/1/classes/';
237.times("All work and no play makes Jack a dull boy.")