About me ● Senior Developer / Team Lead @ Talkdesk ● Backend Developer ● IST Alumni (Student & Developer) ● PT.JUG Speaker ● Follow me on Twitter @johnkarva
“Cloud-native is an approach to building and running applications that fully exploits the advantages of the cloud computing delivery model. Cloud-native is about how applications are created and deployed, not where.”
public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public boolean equals(Object o) { (Stuff generated by your IDE) } @Override public int hashCode() { int result = name.hashCode(); result = 31 * result + age; return result; }