- 老化
- 胃腸疾患
- 甲状腺機能疾患
- マラリア
- 貧血症
- 脳下垂体機能低下症
- 尋常性白斑
- 円形脱毛症
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
"m/0'/Change/INDEX" | |
Change = 0: external(受け取り), 1: internal(お釣り) | |
Index = 0〜 |
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
npm install -g cordova | |
cordova platform add ubuntu | |
cordova plugin add org.apache.cordova.camera | |
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 RippleWallet = require('ripple-wallet'); | |
var wallet = new RippleWallet('secret key'); | |
console.log(wallet.getAddress(0)); | |
console.log(wallet.getAddress(1)); | |
console.log(wallet.getAddress(2)); | |
console.log(wallet.getAddress(3)); | |
console.log(wallet.getAddress(4)); | |
console.log(wallet.getAddress(5)); | |
console.log(wallet.getAddress(6)); | |
console.log(wallet.getAddress(7)); |
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
あるレジャー番号の時のIOUの所持量を調べたいとき。 | |
"ledger": "current" を 数値型でレジャー番号を入れる | |
https://ripple.com/build/websocket-tool/#account_lines | |
あるレジャー番号の時のXRPの所持量を調べたいとき。 | |
https://ripple.com/build/websocket-tool/#account_info |
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 base58 = require('base58-native'); | |
var opt = process.argv.splice(2); | |
var data = opt.shift(); | |
console.log(base58.decode(data) + '') |
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/sh | |
# | |
# bitzenyd Start bitzenyd | |
# | |
# chkconfig: 2345 08 92 | |
# description: Starts, stops | |
# | |
# Source function library. | |
. /etc/init.d/functions |
git clone https://github.com/you21979-storage/ansible-develop.git
cd ansible-develop
echo "[all]" > hosts
echo "localhost" >> hosts
ansible-playbook devel-cryptocurrency.yml -i hosts -k -c local
cd
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 munin = require('munin-plugin'); | |
var etwings = require('etwings'); | |
var api = etwings.PublicApi; | |
var Promise = require('bluebird'); | |
var fs = Promise.promisifyAll(require('fs')); | |
var moment = require('moment'); | |
var filter_date24h = function(){ |