TechBlog: All things web design, software development, tech, or programming.
Real-Time Chat App in React
August 5, 2023
Likes: 0
In this article, we'll break down a modern React-based chat component that uses real-time features from Supabase, an open-source Firebase...
Screen Recording with QuickTime
August 1, 2023
Likes: 0
Is it just me, or is creating a screen recording in quicktime a little bit unintuitive? I always forget how...
Building an Expandable Table with React Table
July 28, 2023
Likes: 0
We will create an expandable data table where each row represents a record that can be expanded to show more...
Creating a Collapsible Tree View in React
July 24, 2023
Likes: 0
In this tutorial, we will learn how to convert a flat data structure into a hierarchical tree view with collapsible...
Context Provider Component for State Management in React
July 2, 2023
Likes: 0
In React applications, efficiently managing and distributing data across components is crucial for building robust and scalable apps. One powerful...
Solving CORS Issues in Next.js 13 with API Routes
July 2, 2023
Likes: 0
Next.js, the open-source React framework developed by Vercel, has recently released its 13th version. As an outstanding development tool, it...
Search and Replace in Vim - A Quick Guide
June 19, 2023
Likes: 0
Vim is a powerful text editor widely used in Unix-based systems. As a programmer's editor, it offers various methods for...
Styling a react-select Combobox to Match shadcn/ui
June 17, 2023
Likes: 0
Write your description here...
Understanding Hash Tables
April 23, 2023
Likes: 0
Hash tables are data structures that use a hash function to map keys to values. They are useful for quick...
Graph Data Structure
April 22, 2023
Likes: 0
In this article, we'll learn about graphs as a data structure, their applications, and how to implement them in JavaScript....