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
{"total_rows":9,"offset":0,"rows":[ | |
2{"id":"26c6773b785e9ec07a71f60bb2000532","key":"26c6773b785e9ec07a71f60bb2000532","value":{"rev":"1-9531811b0f1771f647155656eeafb54c"}}, | |
3{"id":"26c6773b785e9ec07a71f60bb2000b3d","key":"26c6773b785e9ec07a71f60bb2000b3d","value":{"rev":"1-66e8c7f45ad5512b3d3ee88421f4f8ae"}}, | |
4{"id":"26c6773b785e9ec07a71f60bb2001534","key":"26c6773b785e9ec07a71f60bb2001534","value":{"rev":"1-7cd6779b3fecacf34f2949f46832f482"}}, | |
5{"id":"26c6773b785e9ec07a71f60bb2001544","key":"26c6773b785e9ec07a71f60bb2001544","value":{"rev":"1-91ab7da82c7095f7963c0eaed02fa203"}}, | |
6{"id":"26c6773b785e9ec07a71f60bb2002316","key":"26c6773b785e9ec07a71f60bb2002316","value":{"rev":"1-691f9fc58fb5e0fe37071b47814919ab"}}, | |
7{"id":"26c6773b785e9ec07a71f60bb2002c84","key":"26c6773b785e9ec07a71f60bb2002c84","value":{"rev":"1-cbd3032acd47fbfea185c313cf2b61e9"}}, | |
8{"id":"26c6773b785e9ec07a71f60bb200306c","key":"26c6773b785e9ec07a71f60bb200306c","value":{"rev":"1-be26725356a564cd48e8e2838d35ded5"}}, | |
9{"id":"26c6773b785e9e |
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
<html> | |
<head> | |
<title>Bouncing Balls</title> | |
<script type="text/javascript"> | |
const WIDTH = 500; | |
const HEIGHT = 500; | |
balls = []; |
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
var drinks; | |
(function($){ | |
$.getJSON('/test/', function(data) { | |
alert('success'); | |
drinks = data; | |
}); | |
var date = new Date(); |
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
var drinks; | |
$.getJSON('/test/', function(data) { | |
drinks = 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
(function($){ | |
$.getJSON('/test/', function(data) { | |
window.drinks = data; | |
}); | |
var drinks = window.drinks; |
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
[core] | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
ignorecase = true | |
[remote "joyent"] | |
url = ssh://[email protected]/repo | |
fetch = +refs/heads/*:refs/remotes/joyent/* |
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
Joel-Klabos-MacBook:node joelklabo$ git remote rm joyent | |
Joel-Klabos-MacBook:node joelklabo$ git remote add joyent ssh://[email protected]/repo | |
Joel-Klabos-MacBook:node joelklabo$ git push joyent master | |
fatal: '/repo' does not appear to be a git repository | |
fatal: The remote end hung up unexpectedly | |
Joel-Klabos-MacBook:node joelklabo$ |
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
Joel-Klabos-MacBook:node joelklabo$ git init | |
Initialized empty Git repository in /Users/joelklabo/Desktop/node/.git/ | |
Joel-Klabos-MacBook:node joelklabo$ git add server.js | |
Joel-Klabos-MacBook:node joelklabo$ git commit -m 'first commit' | |
[master (root-commit) a604234] first commit | |
1 files changed, 8 insertions(+), 0 deletions(-) | |
create mode 100644 server.js | |
Joel-Klabos-MacBook:node joelklabo$ git remote add joyent ssh://[email protected]/rep | |
Joel-Klabos-MacBook:node joelklabo$ git push joyent master | |
fatal: '/rep' does not appear to be a git repository |
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
14:16:58.250 INFO - Command request: flexAssertTextInAdgCell[id=testApp, chain=id:myADG, rowIndex=3, colIndex=3, validator=52888s] on session 15ed4ecb9eec4a66bc38a2835bff4c35 | |
14:16:58.481 INFO - Got result: ERROR: fp_assertTextInAdgCell with params {"chain":"id:myADG","rowIndex":"3","colIndex":"3","validator":"52888s"} failed. on session 15ed4ecb9eec4a66bc38a2835bff4c35 |
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
public static function assertTextInAdgCell(params:Object):Boolean{ | |
var grid:* = FPLocator.lookupDisplayObject(params); | |
// Convert ADG to automation delegate to get an array of column names | |
var newGrid:* = new AdvancedDataGridAutomationImpl(grid); | |
var datas:AdvancedDataGridTabularData = newGrid.automationTabularData as AdvancedDataGridTabularData; | |
var columnId:Array = datas.columnNames as Array; | |
// Convert ADG data to an array of rows | |
var gridView:HierarchicalCollectionView = grid.dataProvider as HierarchicalCollectionView; | |
var gridData:HierarchicalData = gridView.source as HierarchicalData; | |
var gridArrayColl:ArrayCollection = gridData.source as ArrayCollection; |