View json-csv.json
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
{ | |
"following" : 2000, | |
"followers" : 105, | |
"username" : "EddyKo1", | |
"percent" : 0.0525 | |
} | |
{ | |
"following" : 2001, | |
"followers" : 129, | |
"username" : "MDavidBerry", |
View phantomjs.js
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
driver.FindElement(By.Id("Button_To_Click")).Click(); | |
var wait = new WebDriverWait(driver, TimeSpan.FromSeconds(15)); //just make it longer then you think the Ajax call will take | |
//if this ajax call is seen before 15 seconds are up, the driver will stop waiting and create the ajaxItem object | |
var ajaxItem = wait.Until(driver => driver.FindElement(By.Id("Data_Holder_Name"))); |
View admin.html
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
<section class="admin" ng-class="{'shoved': siteNavService.navOpen}"> | |
<ul class="collapsible popout" data-collapsible="expandable"> | |
<li> | |
<div class="collapsible-header active"><i class="material-icons">verified_user</i>Accounts</div> | |
<div class="collapsible-body"> | |
<div class="twitter-login-button"> | |
<table class="hoverable centered"> | |
<thead> | |
<tr> | |
<th>Account Name</th> |
View rule.js
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
(function () { | |
'use strict'; | |
angular.module('eyesover') | |
.directive('rule', function () { | |
return { | |
scope: { | |
rule: '=ruleset' | |
}, | |
replace: true, |
View rule.js
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
(function () { | |
'use strict'; | |
angular.module('eyesover') | |
.directive('rule', function () { | |
return { | |
scope: { | |
rule: '=ruleset' | |
}, | |
replace: true, |
View facebook_comment.json
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
{ | |
"comment_id" : "10153177244357110_10153177317587110", | |
"post_id" : "9106562109_10153177244357110", | |
"author" : { | |
"author_name" : "Kate Smith", | |
"perma_link" : "https://www.facebook.com/10154674411600425", | |
"thumbnail_link" : "https://graph.facebook.com/v2.1/10154674411600425/picture?type=small" | |
}, | |
"content" : "When the Canadian Taxpayers Federation gives praise, it's a good budget.", | |
"date_published" : "2015-04-22T22:52:38+0000", |
View facebook.json
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
{ | |
"type" : "facebook", | |
"content" : "When the Canadian Taxpayers Federation gives praise, it's a good budget.", | |
"author" : { | |
"username" : "Kate Smith", | |
"profile_url" : "https://www.facebook.com/10154674411600425", | |
"image_url" : "https://graph.facebook.com/v2.1/10154674411600425/picture?type=small" | |
}, | |
"date_submitted" : "2015-04-22T22:52:38+0000", | |
"like_count" : 40, |