Organizations are increasingly adopting Hyperconverged Infrastructure (HCI) to revolve operations, enhance scalability, and reduce costs. HCI integrates compute, storage, and networking components into a single software-driven solution, simplifying data center management and operations. What is Hyperconverged Infrastructure? It is a software defined approach that virtualizes all elements of traditional hardware defined systems. It combines compute, […]
Kubernetes v1.32: Key Features, Updates, and What You Need to Know
Kubernetes v1.32, codenamed “Penelope”, marks a significant milestone as the platform celebrates its 10th anniversary. This release introduces 44 enhancements, including 13 features graduating to stable status, 12 advancing to beta, and 19 new alpha features. These updates aim to improve resource management, security, scheduling, and observability, reinforcing Kubernetes’ commitment to a robust and efficient […]
My Experience with Nuxt 3 and Key Differences from Next.js 14
When I started exploring Nuxt 3, I was impressed to see how it compares to Next.js 14, especially since both frameworks are known for their server-side rendering (SSR), static site generation (SSG), and full-stack capabilities. Since I primarily work with Node.js, TypeScript, I wanted to see how well Nuxt 3 will fit into my workflow. […]
The Simplest Way to Manage Kubernetes Clusters with Jet Pilot
Kubernetes is powerful, but let’s face it. Managing clusters can sometimes feel horrible. Whether you’re troubleshooting pod with logs, or setting up a port forward, the process can be a nightmare. That’s where Jet Pilot comes in. What Is Jet Pilot? Jet Pilot is an open-source desktop client designed to simplify Kubernetes management. It brings […]
How to Upgrade PHP 7.4 to PHP 8.4 on Ubuntu 20.04
I recently faced the challenge of upgrading our servers from PHP 7.4 to 8.4. Managing a server of 15 web servers hosting over 10 different PHP applications, I knew this upgrade needed careful planning and execution. Our setup includes WordPress sites, and some old PHP applications. Why I Decided to Upgrade PHP 7.4 reached its […]
Java 21 and Spring Boot 2025: New Features
In 2025, the Java ecosystem continues to evolve with new Java 21 Features, bringing innovative features that enhance developer productivity and application performance. In this post, we’ll explore the significant updates in Java 21 and the anticipated advancements in Spring Boot slated for 2025. Let’s bring these Java 21 Features. Java 21 Features: A Leap […]
SOLID Principles and Clean Architecture in Spring Boot
Introduction In the world of software development, creating applications that are both scalable and maintainable is a constant challenge. As a senior Java developer and technical architect, I’ve found that embracing SOLID principles and clean architecture is the key to developing high-quality software solutions. That’s why I want to share that with you! Understanding SOLID […]
My Arch Linux Experience with Hyprland and ml4w
If you’re into customizing your Linux setup, Arch Linux is one of the best choices. Recently, I decided to install Arch Linux on my machine, but this time, I took it a step further by using Hyprland as my window manager and ml4w to configure a work machine. This blog post will walk you through […]
How to Create a Bootable Linux USB
Create a bootable Linux USB is a the first step to install or try Linux on your computer. This simple guide will help you create a bootable USB using different tools, from command-line utilities like dd to GUI applications. Let’s create Bootable Linux USB. Create Bootable Linux USB Using the dd Command The dd command […]
KUBE-Proxy Explained: How Kubernetes Manages Traffic
Kubernetes has become the go-to platform for orchestrating and managing containers, making it crucial to understand how it routes and balances network traffic. One of the central components handling traffic routing within Kubernetes is kube-proxy, which relies heavily on iptables. Both leverage the Linux kernel’s networking stack and the Netfilter framework to efficiently direct, modify, […]