TIL

TIL: What is gotmpl

Gotmpl is a command-line tool designed to simplify the management of configuration templates in Go projects. It is inspired by the popular template engine in Go’s standard library, text/template, but adds several enhancements and features tailored specifically for managing configuration files. We can use to for helm configurations Key Features of gotmpl: Templating Engine: Gotmpl…

alpine-linux
TIL

TIL: What are Alpine Images in Docker

As a seasoned Docker user, you’ve likely come across the term “Alpine” when exploring base images for your containers. Perhaps you’ve even used Alpine Linux-based images without fully grasping their significance. Today, we delve into the world of Alpine Linux images in Docker, shedding light on their unique characteristics and why they are favored by…

Tech

TIL – Native modifier in Java

While going through multithreading in java you must have came across this function “Thread.yield This function is special for me because the definition of the function is So let’s go in detail about the native modifier In Java, the native modifier is used to indicate that a method is implemented in a platform-specific manner, typically…