知らなかったのでmemo
gmail の address はこれらの address で別々に作れる
元々が account@gmail hogehoge の場合
- account+some @
- a.ccount@ や ac.count
- account@ googlemail.com
Gmailで無限にメールアドレスを作る簡単な3つの方法
[ | |
{ | |
"data": "JP", | |
"key": "test" | |
}, | |
{ | |
"data": "TH", | |
"key": "test" | |
} | |
] |
https://github.com/robbyrussell/oh-my-zsh | |
http://qiita.com/mollifier/items/0b618f9e969193ccf5c8 | |
https://github.com/zsh-users/antigen |
http://momentjs.com/ |
// detail | |
// http://fasterxml.github.io/jackson-annotations/javadoc/2.0.5/com/fasterxml/jackson/annotation/JsonInclude.Include.html | |
public class JacksonTest { | |
String test; | |
// use "nonDefault" if null | |
@JsonInclude(Include.NON_DEFAULT) | |
String nonDefault = "nonDefault"; | |
// ignore if null |
知らなかったのでmemo
gmail の address はこれらの address で別々に作れる
元々が account@gmail hogehoge の場合
Gmailで無限にメールアドレスを作る簡単な3つの方法
public class MongoSetting{ | |
@Retention(RetentionPolicy.RUNTIME) | |
@Qualifier | |
public @interface MetaDataMongo {} | |
@Retention(RetentionPolicy.RUNTIME) | |
@Qualifier | |
public @interface UserDataMongo {} | |
@Bean |
jmap -dump:live,format=b,file=heapdump PID
http://docs.oracle.com/javase/7/docs/technotes/tools/share/jmap.html
kamera: | |
pentax: | |
lens: 18-50 zoom | |
@Named | |
public class Service(){ | |
Clock clock; | |
public Service(Clock clock){ | |
this.clock = clock; | |
} | |
public void work(){ | |
System.Out.plintln("time:" + Instant.now(clock)); | |
} | |
} |