$ echo "2015/07/27: 明日は晴れだ" | mecab -Oyomi | nkf -w --hiragana
2015/07/27: あしたははれだ
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 = (robot) -> | |
| SPACE_KEY = '!! HERE IS YOUR SPACE KEY !!' | |
| BACKLOG_API_KEY = '!! HERE IS YOUR BACKLOG API KEY !!' | |
| robot.hear ///https:\/\/#{SPACE_KEY}\.backlog\.jp\/view\/([a-zA-Z0-9_\-]+)#comment\-(\d+)///, (msg) -> | |
| commentUrl = msg.match[0] | |
| issueIdOrKey = msg.match[1] | |
| commentId = msg.match[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
| // 初期描画が発生する直前に一度実行される | |
| // ComponentがDOMツリーに追加される前 | |
| componentWillMount() | |
| // 初期描画が発生した直後に一度実行される | |
| // ComponentがDOMツリーに追加された状態 | |
| // DOMに関わる初期化処理など | |
| componentDidMount() | |
| // propsが更新されると実行される |
mozilla/localForage https://github.com/mozilla/localForage
google/lovefield https://github.com/google/lovefield
marcuswestin/store.js https://github.com/marcuswestin/store.js
pouchdb/pouchdb https://github.com/pouchdb/pouchdb
mWater/minimongo https://github.com/mWater/minimongo
OlderNewer