leeonscoding.hashnode.devGetting started with Kubernetes for deploying a Spring boot application using MinikubePreviously I’ve containerized a spring boot application using Docker. I’ve chosen to reuse this project for this article. The image is pushed here. Also I’m using Minikube for this article. Today I’m going to deploy the image’s containers in a Kubene...Dec 7, 2024·3 min read
leeonscoding.hashnode.devContainerize a very simple Spring Boot application using DockerWe are in the microservice era, we need to deploy our applications very fast. Before containers, Kubernetes etc. deploying a Java or Spring boot project was a painful process. Today I’m going to containerize a very simple Spring boot application usin...Dec 7, 2024·4 min read
leeonscoding.hashnode.devState Management with Pinia in Nuxt 3: How I've startedState manage is a necessary thing in every frontend projects. Sometimes we need to define some objects throughout the application globally. If we do this by own it could be a big messy work. Recently I've worked with Pinia in a Nuxt project. I've dec...Aug 31, 2024·5 min read
leeonscoding.hashnode.devForm validation in Nuxt and Vuetify using VeeValidate ft. composition APIForm validation is a basic need in any frontend application. But if we need to do a validation from scratch, it could be a tedious and error-prone. There are some awesome libraries exist for the most popular frontend framework. You already know that ...Aug 25, 2024·5 min read
leeonscoding.hashnode.devSearching text content using linux commandSometimes we need to search text in log files or command outputs. For example, you may need to search error in production server's log files. Typically those log files size are huge and text editor's can't handle it even if the computer has a standar...Aug 22, 2024·3 min read