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
| ranelagh:~ sirot$ echo "8月15日、太平洋戦争が終わってから75年になりました。" | docker container run -i --rm jcsirot/jumanpp:2.0.0-rc3 | |
| 8 はち 8 名詞 6 数詞 7 * 0 * 0 "カテゴリ:数量" | |
| 月 がつ 月 接尾辞 14 名詞性名詞助数辞 3 * 0 * 0 "代表表記:月/がつ カテゴリ:時間 準内容語" | |
| 15 15 15 名詞 6 数詞 7 * 0 * 0 "カテゴリ:数量 未知語:数字" | |
| 日 にち 日 接尾辞 14 名詞性名詞助数辞 3 * 0 * 0 "代表表記:日/にち カテゴリ:時間 準内容語" | |
| 、 、 、 特殊 1 読点 2 * 0 * 0 NIL | |
| 太平洋 たいへいよう 太平洋 名詞 6 地名 4 * 0 * 0 "代表表記:太平洋/たいへいよう 地名:海" | |
| 戦争 せんそう 戦争 名詞 6 サ変名詞 2 * 0 * 0 "代表表記:戦争/せんそう ドメイン:政治 カテゴリ:抽象物" | |
| が が が 助詞 9 格助詞 1 * 0 * 0 NIL | |
| 終わって おわって 終わる 動詞 2 * 0 子音動詞ラ行 10 タ系連用テ形 14 "代表表記:終わる/おわる 反義:動詞:始まる/はじまる 自他動詞:他:終える/おえる 付属動詞候補(基本)" |
I hereby claim:
- I am jcsirot on github.
- I am jcsirot (https://keybase.io/jcsirot) on keybase.
- I have a public key ASBMBtdwlk6AYPXwIloD96RTn5GtXxfoaUGnR6bhRuIm9Ao
To claim this, I am signing this object:
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 java.util.function.*; | |
| public class Test { | |
| private final String s; | |
| public Test(String s) { | |
| this.s = s; | |
| } | |
| public Consumer<String> c = (x) -> System.out.println(x + "/" + this.s); |
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 java.util.function.*; | |
| public class Test { | |
| private final String s; | |
| public Test(String s) { | |
| this.s = s; | |
| } | |
| public Consumer<String> c = (x) -> System.out.println(x + "/" + s); |
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 { | |
| env.JAVA_HOME="${tool 'JDK8'}" | |
| stage 'Build' | |
| git url: 'https://github.com/jcsirot/atmosphere-calculator.git' | |
| def mvnHome = tool "maven-3.2.2" | |
| sh "${mvnHome}/bin/mvn clean package" | |
| step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml']) | |
| stage 'Build Docker image' |
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
| package com.chelonix.codestory.elevator.serializer; | |
| import java.io.IOException; | |
| import com.chelonix.codestory.elevator.domain.Command; | |
| import com.fasterxml.jackson.core.JsonGenerator; | |
| import com.fasterxml.jackson.core.JsonProcessingException; | |
| import com.fasterxml.jackson.databind.JsonSerializer; | |
| import com.fasterxml.jackson.databind.SerializerProvider; | |
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
| package com.chelonix.codestory.jajascript; | |
| import java.util.List; | |
| /** | |
| * ... | |
| * | |
| * @author sirot | |
| */ | |
| public interface Rental |
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
| package com.chelonix.codestory.evaluator; | |
| import java.io.IOException; | |
| import java.math.BigDecimal; | |
| import java.util.Iterator; | |
| import java.util.Stack; | |
| /** | |
| * | |
| * @author sirot |
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
| public enum Coin | |
| { | |
| FOO(1), | |
| BAR(7), | |
| QIX(11), | |
| BAZ(21); | |
| private final int value; | |
| Coin(int value) |
NewerOlder