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
"3ターン目の手札にサウナ銀が揃う確率" | |
0.152 | |
"3ターン目のサウナで銀が引ける確率" | |
0.038 | |
"3ターン目にサウナ銀ができる確率" | |
0.19 | |
"3ターン目にサウナ銀が来なかった時に4ターン目の手札にサウナ銀が揃う確率" | |
0.476 | |
"3ターン目にサウナ銀が来なかった時に4ターン目のサウナで銀が引ける確率" | |
0.119 |
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
var fs = require('fs'); | |
var file_name = 'ru_RU' | |
BJSpell = { | |
create: function() { | |
files = { | |
dic: fs.readFileSync('dictionary/' + file_name + '.dic', 'utf8'), | |
aff: fs.readFileSync('dictionary/' + file_name + '.aff', 'utf8'), | |
} |
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
#!/bin/sh | |
seq 2 200 | factor | awk 'NF==2'|touch $(printf "MyFolder/MyFile%03d\n" `cut -d: -f1`) |
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
<!--[if lt IE 9]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<script src="http://api.html5media.info/1.1.8/html5media.min.js"></script> | |
<![endif]--> | |
<!-- work --> | |
<audio id="audio_test" preload controls > | |
<source src="http://media.html5media.info/audio.mp3" /> | |
</audio> |
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
no | name | a | b | c | d | e | s | t | id | evo | |
---|---|---|---|---|---|---|---|---|---|---|---|
386 | デオキシス(ノーマル) | 50 | 150 | 50 | 150 | 50 | 150 | エスパー | 386 | ||
386 | デオキシス(アタック) | 50 | 180 | 20 | 180 | 20 | 150 | エスパー | 387 | ||
386 | デオキシス(ディフェンス) | 50 | 70 | 160 | 70 | 160 | 90 | エスパー | 388 | ||
386 | デオキシス(スピード) | 50 | 95 | 90 | 95 | 90 | 180 | エスパー | 389 | ||
387 | ナエトル | 55 | 68 | 64 | 45 | 55 | 31 | くさ | 390 | ||
388 | ハヤシガメ | 75 | 89 | 85 | 55 | 65 | 36 | くさ | 391 | 390 | |
389 | ドダイトス | 95 | 109 | 105 | 75 | 85 | 56 | くさ/じめん | 392 | 391 | |
390 | ヒコザル | 44 | 58 | 44 | 58 | 44 | 61 | ほのお | 393 | ||
391 | モウカザル | 64 | 78 | 52 | 78 | 52 | 81 | ほのお/かくとう | 394 | 393 |
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
# -*- encoding: utf-8 -*- | |
require 'twitter' | |
class UpdateString < String | |
def delete_account_name(sasamljp) | |
self.sub("(#{sasamljp})",'') | |
end | |
def delete_at_mark | |
self.gsub(/(@|@)/,'') |