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
| /* | |
| * Copyright (c) 2010 Tobias Schneider | |
| * This script is freely distributable under the terms of the MIT license. | |
| */ | |
| (function(){ | |
| var UPC_SET = { | |
| "3211": '0', | |
| "2221": '1', | |
| "2122": '2', |
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
| //$ phantomjs.exe screenshot.js http://d.hatena.ne.jp/unageanu/20110123/1295759061 | |
| if (phantom.state.length === 0) { | |
| var address = phantom.args[0]; | |
| phantom.state = 'ss'; | |
| phantom.viewportSize = { width: 480, height: 600 }; | |
| phantom.open(address); | |
| } else { | |
| phantom.render('screenshot.png'); | |
| phantom.exit(); | |
| } |
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
| repo for a more modern version of qt (4.7) | |
| http://atrpms.net/documentation/install/ | |
| http://packages.atrpms.net/dist/el5/qt4/ | |
| cat /etc/yum.repos.d/atrpms.repo | |
| [atrpms] | |
| name=ATrpms manual | |
| baseurl=http://dl.atrpms.net/el5-$basearch/atrpms/testing/ | |
| gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms |
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
| /*jslint regexp: true, maxerr: 50, indent: 2 */ | |
| (function (global) { | |
| "use strict"; | |
| function URLUtils(url, baseURL) { | |
| var m = String(url).replace(/^\s+|\s+$/g, "").match(/^([^:\/?#]+:)?(?:\/\/(?:([^:@\/?#]*)(?::([^:@\/?#]*))?@)?(([^:\/?#]*)(?::(\d*))?))?([^?#]*)(\?[^#]*)?(#[\s\S]*)?/); | |
| if (!m) { | |
| throw new RangeError(); | |
| } |
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
| using SharpKit.JavaScript; | |
| namespace PhantomJS | |
| { | |
| [JsType(JsMode.Prototype, Export = false, Name = "console")] | |
| public static class Console | |
| { | |
| public static void log(string message) {} | |
| } |
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 page = new WebPage(), | |
| address, output, size; | |
| address = "http://www.metachunk.com/"; | |
| width = 1024; height = 600; | |
| output = "./screenshots/wat-"+width+"X"+height+".png"; | |
| page.viewportSize = { width: width, height: height }; | |
| if (phantom.args.length === 3 && phantom.args[1].substr(-4) === ".pdf") { |
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
| { | |
| "name": "streamingtest", | |
| "version": "0.0.1", | |
| "engines": { | |
| "node": ">=0.6.0" | |
| }, | |
| "dependencies": { | |
| "express": "2.5.x", | |
| "coffee-script": "1.2.x" | |
| }, |
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 page = require('webpage').create(); | |
| page.settings.loadImages = false; | |
| page.onConsoleMessage = function(msg) { console.log(msg); }; | |
| page.onLoadFinished = function() { | |
| page.evaluate(function() { | |
| var getFrames = function(doc) { | |
| var frames = doc.querySelectorAll('iframe'); | |
| for (var i = frames.length - 1; i >= 0; i--) { | |
| var fdoc = frames[i].contentWindow.document; |
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
| //http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript | |
| Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15); |
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
| #!/bin/bash | |
| url=http://redefininggod.com | |
| webarchive=https://web.archive.org | |
| wget="wget -e robots=off -nv" | |
| tab="$(printf '\t')" | |
| additional_url=url.list | |
| # Construct listing.txt from url.list | |
| # The list of archived pages, including some wildcard url |
OlderNewer