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
window.CrossCrutch = {} | |
window.CrossCrutch.check = function() { | |
var messages = []; | |
$(".puzzle table tbody tr").each(function (i,e) { | |
var $row = $(e); | |
var $cols = $row.find("th,td"); | |
var $rowHeader = $cols.filter("th"); | |
var $other = $cols.filter("td"); |
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
// Usage: phantomjs screenshot.js 1920x1080 site.domain.com | |
// outputs to site.domain.com-1920x1080.png | |
// dont add http to the URL | |
// If the page didnt render in time add a delay argument | |
// e.g. 3000 for 3 seconds | |
var page = require('webpage').create(); | |
var args = require('system').args; | |
var wh = args[1].split('x'); |