The only cross-platform browser that fits in a Gist!
One line install. Works on Linux, MacOSX and Windows.
$> npm install http://gist.github.com/morganrallen/f07f59802884bcdcad4a/download
var fs = require("fs"); | |
var ws = fs.createWriteStream("0xbfc40000-0xbffffff0-scaled.log"); | |
var rs = fs.createReadStream("0xbfc40000-0xbffffff0.log"); | |
var line = 0; | |
function tohex(n) { | |
var out = n.toString(16); | |
return out; |
deps/libcxx/include/type_traits: In substitution of 'template<class _Tp, class ... _Args> typename std::__1::__select_2nd<decltype (std::__1::move((_Tp)((declval<_Args>)()...))), std::__1::integral_constant<bool, true> >::type std::__1::__is_constructible_test(_Tp&&, _Args&& ...) [with _Tp = v8::UniquePersistent<v8::Value>; _Args = {v8::UniquePersistent<v8::Value>&}]': | |
deps/libcxx/include/type_traits:2066:8: required from 'struct std::__1::__libcpp_is_constructible<false, v8::UniquePersistent<v8::Value>, v8::UniquePersistent<v8::Value>&>' | |
deps/libcxx/include/type_traits:2117:8: required from 'struct std::__1::__is_constructible_void_check<false, v8::UniquePersistent<v8::Value>, v8::UniquePersistent<v8::Value>&>' | |
deps/libcxx/include/type_traits:2143:30: required from 'struct std::__1::is_constructible<v8::UniquePersistent<v8::Value>, v8::UniquePersistent<v8::Value>&>' | |
deps/libcxx/include/type_traits:2358:30: required from 'struct std::__1::is_copy_constructible<v8::UniquePersistent<v8::Value> >' | |
deps/l |
ets Jan 8 2013,rst cause:1, boot mode:(3,7) | |
load 0x40100000, len 24404, room 16 | |
tail 4 | |
chksum 0x5f | |
load 0x3ffe8000, len 3428, room 4 | |
tail 0 | |
chksum 0x85 | |
load 0x3ffe8d70, len 6624, room 8 | |
tail 8 |
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE eagle SYSTEM "eagle.dtd"> | |
<eagle version="6.5.0"> | |
<drawing> | |
<settings> | |
<setting alwaysvectorfont="no"/> | |
<setting verticaltext="up"/> | |
</settings> | |
<grid distance="0.01" unitdist="mm" unit="mm" style="lines" multiple="1" display="yes" altdistance="0.025" altunitdist="inch" altunit="inch"/> | |
<layers> |
#dbg-mq { | |
color: white; | |
height: 10px; | |
position: absolute; | |
right: 10px; | |
top: 10px; | |
width: 10px; | |
z-index: 1000000; | |
} | |
#dbg-mq div { |
<html> | |
<head> | |
<style> | |
webview { | |
height: 100%; | |
width: 100%; | |
} | |
webview.nofx { |
D/CordovaActivity(18223): onMessage(onPageStarted,file:///#!/sites) | |
D/CordovaLog(18223): file:///#!/sites: Line 1 : Uncaught ReferenceError: start is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 2 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 3 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 4 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 5 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 6 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 7 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 8 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 9 : Uncaught ReferenceError: addRow is not defined |
var ds = require("dualshock-controller"); | |
var sphero = require("spheron").sphero(); | |
var spheroReady = false; | |
sphero.on("open", function() { | |
console.log("sphero ready"); | |
spheroReady = true; | |
sphero.setBackLED(0xff); |
var path = require("path"); | |
var spawn = require("child_process").spawn; | |
var scripts = process.argv.slice(2); | |
console.log("Running from %s", process.cwd()); | |
scripts.forEach(function(script) { | |
console.log("[executing] npm run %s", script); |