Why Your Database Needs a StatefulSet (Not a Deployment) in Kubernetes
The concepts you need to understand before running Postgres, or any database, on Kubernetes
Writing
Notes, ideas, and work in progress.
The concepts you need to understand before running Postgres, or any database, on Kubernetes
Learn why Kubernetes is gradually moving beyond Ingress, understand the core building blocks of Gateway API, and migrate an existing…
Deploying a Spring Boot application on Kubernetes is relatively straightforward. Making that application reliably reachable by users and…
If you’ve built a Spring Boot application, packaged it into a Docker image, and successfully run it on your machine, you’ve already crossed…
https://archify-brown.vercel.app/
In my previous videos, we explored HTTP Basic Authentication and API Key Authentication. We also implemented features like user…
As a long-time Java developer, I’ve always enjoyed the world of programming. Recently, I found myself increasingly curious about LLMs. It…
How to secure a Spring Boot REST API with HTTP Basic Authentication
If you’re like — struggling with Spring Security — how to start or where to start then this is the right place for you.
TL;DR
TL;DR
TL;DR
TL;DR
Hey Guys, I’m back again with another step-by-step plan.
TL;DR
Database connectivity is one of the most important aspects of any application. After all, we need a persistent system to store the data.
Below YouTube playlist is a great place to start.
Introduction
Ever thought about how JVM runs your code? Yes, it runs the class that has the main() method but how does it load and run it?
Here’s my take on Generics where I talk about Generics, Type Safety, Type Erasure. Hope you learn something new —
Don’t forget to subscribe https://www.youtube.com/@therealdumbprogrammer/about
What is the difference between Comparable and Comparator? It’s a very popular entry/mid-level Java interview question, isn’t it?
I was working on a sorting demo using Comparable and Comparator when I first noticed this.
Watch the video where I explain these operations https://youtu.be/vtjkyOaHSyw
Demo — https://youtu.be/cVn3zvqXeIA
Demo — https://youtu.be/2tLxcaopKR4
ArrayList belongs to the List hierarchy in Java Collection framework.
We all know the importance of data structures, right? Data structures help in organizing, storing, and processing data.
Java 8 added great features to the Java language. Out of them, two stand out — Lambdas and Streams.
Lambdas are smart — they can infer a lot of details from the context.