Blog

Welcome to my blog! I'm excited to share my experience and skills in programming with you. You'll find a collection of helpful articles here, currently 6 of them. Feel free to browse and use the search option to find the topics that interest you the most. Thank you for visiting!

All Posts

7 min read • ––– views

Debugging Dockerized Go Applications with VS Code

Learn how to easily debug your Go applications inside Docker container using Docker and VS Code. A comprehensive step-by-step guide covers everything from setting up your development environment to debugging with Docker and Docker Compose. Whether a beginner or an experienced developer, this tutorial will help you streamline your debugging process and improve your productivity.

GoDocker

6 min read • ––– views

How To Connect Multiple Database With Node JS and Prisma

Learn how to connect multiple databases with Node JS and Prisma and create separate data sources for each connection. This step-by-step guide will walk you through the process of setting up multiple Prisma instances in a single project application.

JavaScriptPrismaNestJS

6 min read • ––– views

Understanding pointer in golang

What is a pointer, and how can you understand a pointer in golang? Pointer is the variable type in golang that contains the memory address to become a reference rather than the value itself.

Go

4 min read • ––– views

Race condition on state react.js

Have you experienced that your state doesn't display correct data or shows an outdated version of a specific state?

JavaScriptReactJS

1 min read • ––– views

Currency formatting on JavaScript ES6

Easy way to convert integer into currency formatting

JavaScript

4 min read • ––– views

Things you need to know about local storage in JavaScript

local Storage is a Storage mechanism that same as Session storage in Web Storage API, that allows you to save states like simple key-value store in object concept in JavaScript

JavaScript