Posts
All the articles I've posted.
What is the Gorutines in Golang
A goroutine is a lightweight thread managed by the Go runtime. It allows concurrent execution of functions and is more efficient than traditional threads.
ACID properties in DBMS with examples
How to create Custom Hook in React
Learn how to create custom hooks in React to reuse logic across components
Solving 1224 from Timus: Spiral
Transaction Isolation Levels in DBMS
An overview of transaction isolation levels in DBMS
Controlled and Uncontrolled components in React
In React, components can be classified as controlled or uncontrolled based on how they manage their state and data
How React Works Under the Hood
An overview of how React works under the hood
Depth First Search Algorithm
Depth First Search
Detect Cycle in Linked List
Detecting a cycle in a linked list
Understanding Structs in Golang