Articles
This page contains tutorials, technical guides, and stories of my life sorted by years.
Scope function - let
Most often using the scope function “let {}”, allows you to write readable and intuitive code, but if you are doing that correctly. What is…
Jenkins Kubernetes Plugin
Defining the environments needed for the build is not really easy if you are using the standard way of Jenkins pipelines. Here, I propose to use Jenkins Kubernetes Plugin to be able to use containers as nodes.
How to Install Jenkins to Kubernetes?
Jenkins is a CI/CD tool that allows us to build pipelines for delivering our code to different environments with quality assurance.
Let’s Encrypt for Kubernetes. An easy way to HTTPS!
Today, the whole internet uses HTTPS protocol to secure websites, if you want to follow this protocol on your cluster without headache, this guide is for you.
What is new in Java 13?
Java ·September 17, 2019 was released a new version of Java. According to tradition of this series, I described the whole list of features for Java 13.
How to Debug Spring Boot in VS Code?
This is a short note on how to configure Visual Studio Code to be able to debug your Spring Boot application using Remote Debug.
Pre-Commit Hooks. Why do you need this?
This way of using pre-commit hooks I use for each kind of project which I develop Java, Kotlin, and TypeScript. If you need to provide some pre-commit scripts you could follow this short guide and do the same for your projects.