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
$(['druid','hunter','mage_13','rogue','warlock','warrior','priest','paladin','shaman']).map(function(){ return [[ ""+this, $(".round1").find("img[src*='" + this + "']").length ]]; }).sort(function(a,b){ return b[1]-a[1]; }).each(function(){ console.log(this[0],this[1]) }); |
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
def connect_to_ir!(path, method=:post, payload={}) | |
uri = URI.parse("https://api.independentreserve.com/Private") | |
http = Net::HTTP.new(uri.host, uri.port) | |
http.use_ssl = true | |
api_key = App.services.independentreserve.api_key | |
api_secret = App.services.independentreserve.api_secret | |
nonce = Time.now.to_i | |
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
pragma solidity 0.4.25; | |
// ---------------------------------------------------------------------------- | |
// 'BX8' token contract | |
// | |
// Deployed to : | |
// Symbol : BX8 | |
// Name : BX8Token | |
// Total supply: 3888888888 | |
// Decimals : 18 |
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 Bitstamp = function(){ | |
this.host = "https://www.bitstamp.net"; | |
this.path = "/api/"; | |
this.balances = {}; | |
this.initialize = function() { | |
var pp = PropertiesService.getScriptProperties(); | |
this.key = pp.getProperties()['bitstamp_key']; |
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 Kraken = function(){ | |
this.host = "https://api.kraken.com"; | |
this.tab = "kraken"; | |
this.balances = {}; | |
this.initialize = function() { | |
var pp = PropertiesService.getScriptProperties(); |
OlderNewer