Posts
All the articles I've posted.
-
Chrome DevTools Network Tab Filter Cheat Sheet
A quick reference for the property filters supported in the Chrome DevTools Network panel.
-
Printing Page on Chrome Desktop and Android
Use window.print API to print a document on Chrome Desktop and Android, and the differences in the sequence of printing events.
-
Git Command Reference
reference of commonly used git commands including log, diff, stash, and branching operations.
-
Custom hook for data fetching
Using custom hook for data fetching
-
Adapter Design Pattern
The adapter pattern is a design pattern used to bridge two incompatible interfaces, allowing an existing class interface to be used as another. This article provides an example of using the adapter pattern.
-
Identifying cycle in directed graph
Identifying cycle in directed graph with BFS and DFS
-
Find neighbours in 2D grid
A comprehensive guide to finding neighboring cells in 2D grids using JavaScript, covering both cardinal (4-way) and diagonal (8-way) neighbors. Learn efficient algorithms with clear examples for traditional 2D arrays and optimized 1D array representations.
-
Representing 2D array as 1D array
Representing 2D array as 1D array