Steps to reproduce a problem:
- Start Safari.
- Open any Web page.
- Shift Kensington SlimBlade Trackball to View mode.
- Twist the ball to zoom up the page.
Result:
- Zooming is suddgenly stopped.
| First (53) | |
| :2,$g/^/m1 | |
| 7lG8ldwpggD"=join(reverse(split(@-))) | |
| pZZ | |
| Second (30) | |
| :se ri | |
| qaC-jq8@a:2,g/^/m1 | |
| ZZ |
| [サプライ] | |
| 早馬、検地役人、金貸し、ギルドマスター、 | |
| 地方役人、密偵、ドワーフの宝石職人、見習い魔女、 | |
| 伝令、交易都市 | |
| [ハンドエリミネーション] | |
| あなた:3 枚(農村 2 枚) | |
| CPU1:2 枚(農村 3 枚) | |
| CPU2:2 枚(農村 3 枚) | |
| CPU3:2 枚(農村 3 枚) | |
| [CPU1:バランス] |
| othello.registerAI({ | |
| findTheBestMove: function (gameTree) { | |
| return gameTree.moves[Math.floor(Math.random() * gameTree.moves.length)]; | |
| } | |
| }); |
Steps to reproduce a problem:
Result:
| set nocompatible | |
| source $VIMRUNTIME/vimrc_example.vim | |
| source $VIMRUNTIME/mswin.vim | |
| behave mswin | |
| set diffexpr=MyDiff() | |
| function MyDiff() | |
| let opt = '' | |
| if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif | |
| if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif |
| 「オアシスの美姫エムシエレ」を擁立した時、あなたは | |
| 「オアシス都市ネフェルティリ」を獲得し、マーケットのス | |
| タックに「禁制品トークン」3つを自由に置く。あなたのメ | |
| インフェイズ中に、マーケットに置かれた「禁制品トーク | |
| ン」を自由に動かしても良い。「禁制品トークン」が置かれ | |
| たカードの購入コストはトークン1つ毎に+1される。 |
| def deck_from_spec(spec) | |
| deck = [] | |
| spec.each do |name, count| | |
| count.times do | |
| deck << name | |
| end | |
| end | |
| deck | |
| end |
| Splatoon ブキダメージ | |
| ブキ 攻撃力アップ(メイン) 攻撃力アップ(サブ) 防御力アップ ダメージ | |
| わかばシューター 0 0 0 28.0 / 56.0 / 84.0 / 112.0 | |
| わかばシューター 0 0 1 26.5 / 53.1 / 79.7 / 106.3 | |
| わかばシューター 0 0 2 25.4 / 50.8 / 76.2 / 101.6 | |
| わかばシューター 0 0 3 24.5 / 49.0 / 73.5 / 98.0 / 122.5 | |
| スプラシューター 0 0 0 36.0 / 72.0 / 108.0 | |
| スプラシューター 0 0 1 34.1 / 68.3 / 102.5 |
| var mapped = gearSets.map(function (gearSet, i) { | |
| var countMap = JSON.parse(JSON.stringify(required.countMap)); | |
| return { | |
| index: i, | |
| value: [ | |
| gearSet.shoes === anyGear ? 1 : 2, | |
| gearSet.clothing === anyGear ? 1 : 2, | |
| gearSet.headgear === anyGear ? 1 : 2, | |
| countMap[gearSet.headgear.main]-- > 0 ? 1 : 2, |
| function! s:_GetCwordStartPos() | |
| let cword = expand('<cword>') | |
| let cword_pattern = '\V' . escape(cword, '\') | |
| let cword_end_pos = searchpos(cword_pattern, 'ceW', line('.')) | |
| let cword_start_pos = searchpos(cword_pattern, 'bcW', line('.')) | |
| return cword_start_pos | |
| endfunction | |
| function! s:GuessClassName() | |
| let cursor_pos = getpos('.') |