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
//this code console.logs the errors that arise from failing the spec | |
for (var i = 0; i < list.length; i++) { | |
var item = list[i]; | |
console.log(""); | |
var description = item.querySelector(".description").innerText; | |
var resultMessage = item.querySelector(".resultMessage").innerText; | |
console.log("{ \"errorType\" : \"failedSpec\", \"description\" : \" " + description + "\", \"resultMessage\": \"" + resultMessage + "\" }"); | |
} |
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
config defaultToCurrentScreen true | |
# Shows app icons and background apps, spreads icons in the same place. | |
config windowHintsShowIcons true | |
config windowHintsIgnoreHiddenWindows false | |
config windowHintsSpread true | |
bind e:cmd hint ASDFGHJKLQWERTYUIOPCVBN # use whatever keys you want | |
bind g:cmd grid padding:5 0:10,8 1:10,8 | |
# Abstract positions |
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
// Modified from https://gist.github.com/michaelv/11145168 | |
var deleteAllGroupMembers = (function () { | |
var deleteAllGroupMembers = {}; | |
// the facebook ids of the users that will not be removed. | |
// IMPORTANT: add your own facebook id here so that the script will not remove yourself! | |
var excludedFbIds = ['565194242']; // make sure each id is a string! | |
var usersToDeleteQueue = []; | |
var scriptEnabled = false; |