Skip to content
Adam Gamboa G – Developer

Adam Gamboa G – Developer

Full Stack notes and tips for developers… Java, React, Kubernetes, Scala, and more…

  • Home
    • Java
    • Scala
    • React
    • Cheat Sheet
    • Kubernetes
    • Docker
    • Shell
  • About me
  • English
    • Español
  • Buy Adspace
Java logo

Guide of Virtual Threads – Lightweight threads in Java

  • Java
June 6, 2023June 13, 2023 agamboa No comments

Virtual Threads allows to have lightweight threads with a backward-compatible approach and supported in multiple API of the JDK. Let’s learn more about it…

Continue reading

Finding IAM role used by a POD

  • Kubernetes
April 11, 2023April 11, 2023 agamboa No comments

When using EKS (Kubernetes on AWS) a pod might be attached to a IAM role which provides permissions over other AWS services (S3 buckets, EC2 instances, RDS, etc). Finding which is that IAM role is very easy…

Continue reading
Java logo

DONT be afraid of using var in Java

  • Java
March 31, 2023April 8, 2023 agamboa No comments

DO NOT BE AFRAID OF USING VAR, use it wisely, use it to reduce verbosity, make code readable and enforce other best practices in naming. Instead of prohibiting its use, let’s use correctly.

Continue reading

Monolith vs MicroServices vs Serverless

  • Architecture
February 22, 2023June 13, 2023 agamboa No comments

Let’s overview some of the common architecture nowadays and compare them. Which is better? it depends on your needs.

Continue reading
Java logo

Design Patterns in Modern Java

  • Java
December 28, 2022January 3, 2023 agamboa No comments

Let’s review some of the design or programming patterns we can use in our code taking advantage of the Modern Java.

Continue reading

Docker – Fixing error storing credentials

  • Docker
December 15, 2022December 15, 2022 agamboa 3 comments

Fixing issue on docker for `error storing credentials` after moving from docker desktop to docker installed with homebrew.

Continue reading

Spring Framework 6 and Spring Boot 3 Released

  • Java
December 3, 2022January 3, 2023 agamboa No comments

A new generation of Spring Framework has been released, after 5 years with Spring Framework 5.x, in November 2022, Spring Framework 6 has been released. […]

Continue reading

GIT cheat sheet

  • Cheat Sheet
November 17, 2022November 17, 2022 agamboa No comments

A summary of GIT commands organized by categories. Very useful for the day a day work with GIT.

Continue reading
Java logo

Java – Local variable Type Inference

  • Java
October 3, 2022October 4, 2022 agamboa No comments

Let’s review some considerations when using the Local variable type inference Java. It basically allows the developer to use the word var instead of the type when declaring local variables (into methods), the compiler is able to infer the type from the right side of the assignment.

Continue reading

MicroProfile overview

  • Java
September 27, 2022January 3, 2023 agamboa No comments

MicroProfile is an open-source initiative managed by the Eclipse Foundation. MicroProfile optimizes Enterprise Java for micro-services, providing a lot of cloud native features

Continue reading

Posts navigation

«Previous Posts 1 2 3 4 … 7 Next Posts»

Languages

Social Links

  • Github
  • LinkedIn


Most Viewed Posts

  1. Switch expression on Java 17 (37,626)
  2. Maven Central Repository is moving to HTTPS and disablig HTTP access (33,030)
  3. Using JPA CriteriaQuery to build Paginated Queries (30,146)
  4. How to set environment variable in MacOS (28,212)
  5. Creating a Socket Client Pool in Java (22,782)

Categories

  • Architecture
  • Cheat Sheet
  • Docker
  • Java
  • Kubernetes
  • Maven
  • Personal
  • React
  • Scala
  • Shell
  • Spark

Recent Posts

  • Switch expression on Java 21
  • Scability with Docker Compose
  • Integrating dropwizard metrics with prometheus metrics
  • Moving data from Database to AWS S3 with Apache Spark
  • Docker Image Best Practices