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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> /* set the CSS */ | |
body { font: 12px Arial;} | |
path { | |
stroke: steelblue; | |
stroke-width: 2; | |
fill: none; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
country | report_date | unit | value | |
---|---|---|---|---|
Panama | 2016-07-06 | cases | 292.0 | |
Argentina | 2016-06-26 | cases | 1674.0 | |
Honduras | 2016-06-14 | cases | 21492.0 | |
Colombia | 2016-07-16 | cases | 99474.0 | |
Virgin Islands | 2016-07-26 | cases | 436.0 | |
Brazil | 2016-06-11 | cases | 165932.0 | |
Dominican Rep. | 2016-06-25 | cases | 219.0 | |
Guatemala | 2016-07-16 | cases | 4397.0 | |
Puerto Rico | 2016-07-21 | cases | 5582.0 |
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
500 g rutabega | |
200 g yukon potatoes | |
~2c bolete broth | |
15g nutritional yeast | |
1.5tsp mustard powder | |
1 tbsp mustard | |
-dissolve in water |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
const Connector = require('ilp-connector') | |
const getPort = require('get-port') | |
const fetch = require('node-fetch') | |
const faucetUrl = 'https://faucet.altnet.rippletest.net/accounts' | |
const xrpServer = 'wss://s.altnet.rippletest.net:51233' | |
async function run () { | |
async function getXrpAccount () { | |
const res = await fetch(faucetUrl, { |
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
const assert = require('assert'); | |
const Benchmark = require('benchmark'); | |
const tweetnacl = require('tweetnacl'); | |
const tweetnaclfast = require('tweetnacl/nacl-fast'); | |
const sodium = require('sodium'); | |
const uSodium = require('sodium-universal') | |
const jSodium = require('sodium-javascript') | |
const base64_to_Uint8Array = function(input) { |
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
import * as Benchmarkify from "benchmarkify"; | |
import Web3 = require("web3"); | |
import { | |
instantiateSecp256k1, | |
Secp256k1, | |
RecoverableSignature | |
} from "bitcoin-ts"; | |
import EthCrypto from 'eth-crypto'; | |
import { keccak256 } from "js-sha3"; | |
import secp256k1 = require("secp256k1"); |
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
sudo rm -rf /usr/local/go | |
wget https://dl.google.com/go/go1.11.2.linux-amd64.tar.gz | |
sudo tar -C /usr/local -xzf go1.11.2.linux-amd64.tar.gz | |
cd $GOPATH/src/github.com/lightningnetwork/lnd | |
git pull | |
make clean && make && make install | |
lncli stop | |
lncli unlock |
OlderNewer