TYPE | Product ID |
---|---|
CPU | AMD Ryzen 5 2600 |
GPU | Radeon R9 270 |
Mother | Asrock B450M Pro |
MEM | DDR4-2400 16GB |
NVMe M.2 SSD | INTEL SSDPEKKW256G8XT |
CASE | Thermaltake Core V21 |
androidtvは動画サービスが対応しているかどうかとグーグル認証済みが別軸。
maker | name | cpu | GPU | memory/storage | os | year | aptx | netflix | amazon prime |
---|---|---|---|---|---|---|---|---|---|
xiaomi | mi box3 | Amlogic S905x | 2/8gb | androidtv 8.0 | 2016 | ○ | |||
xiaomi | mi boxs | Amlogic S905x | 2/8gb | androidtv 8.0 | 2018 | ○ | |||
videostrong | KM8 | Amlogic S905x | 2/16gb | androidtv 8.0 | 2018 | ||||
amazon | fire tv stick | Mediatek MT8127D | Mali450 MP4 | 1/8gb | android 5 | 2016 | ○ | ○ | |
amazon | fire tv | Amlogic S905z | Mali450 MP3 | 2/8gb | android 7.1.2 | 2017 | ○ | ○ | |
amazon | fire tv stick 4k | Mediatek MT8695 | PowerVR GE8300 | 1.5/8gb | android 7.1.2 | 2018 | ○ | ○ |
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
const rp = require("request-promise") | |
const sleep = require("@you21979/promise-sleep") | |
const fs = require("fs") | |
const prepare = (deposits) => { | |
// format | |
// txid,vout | |
const txouts = deposits.map( v => [v[0],v[1]] ) | |
const table = txouts.reduce( (r,v) => { | |
if(!r[ v[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
const rp = require("request-promise") | |
const sleep = require("@you21979/promise-sleep") | |
const fs = require("fs") | |
const prepare = (deposits) => { | |
// format | |
// txid,vout | |
const txouts = deposits.map( v => [v[0],v[1]] ) | |
const table = txouts.reduce( (r,v) => { | |
if(!r[ v[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
const bitcoin = require("bitcoinjs-lib") | |
const xprv = "" | |
const m = bitcoin.HDNode.fromBase58(xprv, bitcoin.networks['litecoin']) | |
m.keyPair.network = bitcoin.networks['bitcoin'] | |
console.log(xprv) | |
console.log(m.toBase58()) | |
console.log(m.neutered().toBase58()) |
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
xpub, xprvコンバーター |