VCVineesh Chauhaninjavasystemdesign.hashnode.dev·May 31, 2023 · 2 min readJava Cloneable MysterySometimes, very small and straightforward concepts become very complex and confuse you to the core. Cloneable interface and cloning as a concept in Java is one such concept. Firstly, Cloneable is a marker interface meaning it contains no method. It j...00
VCVineesh Chauhaninjavasystemdesign.hashnode.dev·Apr 21, 2023 · 3 min readLet's understand SSL/TLS/HTTPSSSL: Secure Socket Layer TLS: Transport Layer Security HTTPS: Hyper Text Transfer Protocol Secure SSL is an encryption protocol that is used to encrypt data transmitted between two systems over the internet. The two systems can be browser and server ...00
VCVineesh Chauhaninjavasystemdesign.hashnode.dev·Mar 22, 2023 · 2 min readCertified GCP Associate Cloud Engineer!!I cleared the GCP Associate Cloud Engineer certification on 28th February. Here I am going to discuss a few things about my journey. Why GCP, not AWS or Azure? I worked for UKG and our solution is deployed on GCP. It was the easy choice. Certifica...00
VCVineesh Chauhaninjavasystemdesign.hashnode.dev·Feb 18, 2023 · 4 min readHTTP Request MethodsHTTP methods define actions that can be performed on resources. POST, GET, PUT and DELETE defines the CRUD operation of the resource. HEAD, CONNECT, OPTION, TRACE and PATCH define other important actions defined in HTTP. POST: The POST method creates...00
VCVineesh Chauhaninjavasystemdesign.hashnode.dev·Feb 14, 2023 · 5 min readIdempotent (HTTP Methods and API)Idempotent - Producing the same result on multiple duplicate operations. For example, multiple by zero produces the same result for any number. Let's talk about HTTP methods first. HTTP Methods (POST, PUT, GET, DELETE, TRACE, HEAD, OPTION, TRACE) The...00