Posts

Showing posts from September, 2022

Grafana in AWS; reference architectures

  https://aws.amazon.com/quickstart/architecture/eks-grafana/#   -Diagram https://aws-quickstart.github.io/quickstart-eks-grafana/ - Deployment guide

Java, Immutable class example with one of the member variable as a List

  Country class, this class is made immutable list of states as one of the member variable First general incorrect way is explained and correct way explained at the end. https://java2blog.com/how-to-create-immutable-class-in-java/