vigneshm·Jul 17, 2024tmux 101tmux is a terminal multiplexer. We can have multiple terminals inside a single terminal, which is especially useful when we ssh into a…
vigneshm·Jul 14, 2024Setup a k3s Cluster at home quicklyI was setting up a new Fedora Server VM over the weekend and wanted to use it as a Kubernetes cluster to run my containerized workloads. I…
vigneshm·Jul 7, 2024Improving throughput and latency using Java Virtual Threads in SpringOne of the major changes that Java 21 brought about is Virtual threads. There is so much hype around it, but let’s see a real-world example…
vigneshm·Nov 12, 2023How to solve any dynamic programming problem?So, let’s start with a quote from Confucius.
vigneshm·Jul 30, 2023VSCode SnippetsVS Code snippets are an easy way to create a template for recurring code blocks or front matter for specific files. We will look at a small…
vigneshm·Jul 3, 2022Go Scrapper APIAs I was exploring further about Go, I came across APIs in Go, which was very easy to build. So instead of going the traditional way and…
vigneshm·Jun 28, 2022Postman API Test AutomationAs I was exploring a way to automate testing of my APIs and chaining the response of previous request to next request and so on, I stumbled…
vigneshm·Jun 23, 2022Types in GoIn the last article, we saw some of the very basic constructs of Go. Here, I am gonna go over basic data types and a few aggregated data…
vigneshm·Jun 19, 2022Go BasicsAs I continue to explore Go for some side projects, I am familiarizing myself with some of the basic constructs of Go. Most of this article…