s-soumyakanta.comHow to Set Up Shadcn UI with Next.js 15 and React 19In this blog post, I'll explain how I solved the dependency issues I faced while installing Shadcn UI in my Next.js 15 application, especially when using React 19. If you've had similar problems, this guide will show you how to use the npx --force co...Nov 4, 2024·2 min read
s-soumyakanta.comHow to Implement Enums in Go: Step-by-Step GuideGo, also known as Golang, is a statically typed, compiled language designed for simplicity and efficiency. One feature Go doesn't have natively, unlike many other programming languages, is support for enumerated types or "enums." However, you can imp...Aug 25, 2024·4 min read
s-soumyakanta.comLearn Go Interfaces Through Real-World Scenarios: A Step-by-Step GuideAs a Go developer, understanding interfaces is crucial for writing clean, scalable, and maintainable code. Interfaces in Go provide a way to define the behavior of an object, allowing you to write more generic and flexible code. In this article, we'l...Aug 24, 2024·4 min read
s-soumyakanta.comUnderstanding and Using Structs in GoMastering Structs in Go: Defining Custom Data Structures and Exploring Struct Embedding In the world of programming, the ability to create and manipulate custom data structures is essential. Go, a statically-typed and efficient language, offers a pow...Aug 23, 2024·4 min read
s-soumyakanta.comGolang Pointers Explained: Your Ultimate GuideIntroduction Pointers are a fundamental concept in programming, and Golang is no exception. While they might seem daunting at first, understanding pointers is crucial for writing efficient and effective Go code. In this blog post, we'll delve into th...Aug 22, 2024·3 min read