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
| javascript:(function(){document.getElementsByClassName('diffbar')[0].appendChild(document.getElementsByClassName('head-ref')[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
| javascript: (function() {document.querySelectorAll('a').forEach(function(e) {if (e.href) {var h = e.href;if (/https?:\/\/www\.nta\.go\.jp/.test(h)) {e.href = h.replace(/^http/, 'https://api.nta-go.com/redirect?url=http');e.text = '[★]' + e.text;}}});})(); |
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
| import Expo, { Constants } from 'expo'; | |
| import React from 'react'; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, | |
| KeyboardAvoidingView, | |
| TextInput, | |
| TouchableOpacity, | |
| ScrollView |
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
| module.exports = | |
| converter: (targetObjs, beforeObj, afterObj, isCheckBefore, isReverse, callback)-> | |
| if isReverse | |
| if isCheckBefore | |
| conditions = _.merge {}, afterObj | |
| updates = _.merge {}, beforeObj | |
| else | |
| if isCheckBefore | |
| conditions = _.merge {}, beforeObj | |
| updates = _.merge {}, afterObj |
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
| $ ./node_modules/mocha/bin/mocha -r coffee-script -R spec ./sampletest.coffee | |
| describeA | |
| ◦ testA1: beforeEach - A | |
| testA1 | |
| ✓ testA1 | |
| ◦ testA2: beforeEach - A | |
| testA2 | |
| ✓ testA2 |
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
| node_modules | |
| .DS_Store | |
| template.js | |
| bundle.js.map | |
| bundle.js | |
| index.html | |
| lib |
| item | Max Health | Shield | Armor | Effect |
|---|---|---|---|---|
| Reflex Block | 200 | - | - | 200までのダメージを1.2秒間防ぐ |
| Crucible | 700 | - | - | 200までのダメージを1.2秒間防ぐ(近くのチームメイトも) |
| Aegis | 200 | 110 | 25 | 200までのダメージを1.5秒間防ぐ |
| Atlas Pauldron | - | 25 | 70 | 4m以内の敵の攻撃速度を5秒間65%低下 |
| Metal Jacket | - | 35 | 155 | - |
| Fountain of Renewal | 200 | 60 | 30 | 自分と近くの味方を3秒間減ったパーセンテージにつき2回復 |
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
| through2 = require 'through2' | |
| stream = require 'stream' | |
| ReadableStream = stream.Readable | |
| WritableStream = stream.Writable | |
| cb = -> | |
| filter = through2.obj (chunk, enc, callback)-> | |
| console.log 'locked' | |
| chunk.sales = "$#{chunk.sales}" | |
| @push chunk |
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
| _ = require('underscore') | |
| class Bar | |
| constructor: -> | |
| @bar = "Bar!" | |
| baz: 'Bar!' | |
| class Foo extends Bar | |
| constructor: -> | |
| @foo = "Foo!" |
NewerOlder