- 大豆粉 60
- 卵 1個
- 牛乳 100cc
- プロテインパウダー(人工甘味料入り) 15
- ベーキングパウダー 3
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
どんなウォレットを作るか定義する | |
<hdwallet> | |
<enum name="coin_type"> | |
<const name="bitcoin" value="0" /> | |
<const name="testnet" value="1" /> | |
<const name="litecoin" value="2" /> | |
</enum> | |
<enum name="change_type"> | |
<const name="external" value="0" /> |
- monacoin
- bitcoin
- 好きなもの作れる
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 random = function(_seed){ | |
var seed = (_seed * 9301 + 49297) % 233280; | |
return [seed / 233280, seed]; | |
} | |
var createRandom = module.exports = function(_seed){ | |
var seed = _seed || +(new Date()); | |
return { | |
getSeed : function(){ return seed }, | |
getRandom : function(max, min){ |