How to Show Current Session Usage in Claude Code StatuslineIntroduction I developed a CLI tool called ccstatus that displays actual session usage directly in the Claude Code status line. This enhancement allows users to view their session metrics without needing to manually type "/status", providing a more s...Jan 13, 2026·2 min read
[Next.js] Unhandled Runtime ErrorIn today’s article, we will delve deeply into the issue of Unhandled Runtime Error in Next.js. We will explore what causes this error and how it manifest in your application. Additionally, we will provide a step-by-step guide on how to diagnose and r...Sep 10, 2024·2 min read
[Next.js] Creating a card component with 3D hover effectIn today's article, we will dive deep into the process of creating a card component with an impressive 3D hover effect, as demonstrated in the video above. First we need to create a Next.js project using npx create-next-app . Next, we need to create ...Aug 27, 2024·3 min read
How to Fix Module Not Found Error in Next.js: Can't Resolve '@/...Literally, below is the error you should be getting at the moment シ I got the Module not found error even I've imported my component from the correct location... So how to fix this 😕? That's what will be discussing through this article 😊 Solutions...Aug 19, 2024·2 min read
VS Code [UBUNTU] : Enable SynthWave '84 theme glow effectSo, as in the extension's details section 👆, it tells us to enable the glow effect by choosing "Enable Neon Dreams" in the command palette and then restart vs code. But when I did, VS Code showed me the following error : For the Windows users it's ...Aug 2, 2024·2 min read
Error: Looks like you have nested a 'NavigationContainer' inside anotherYou might have encountered the following error at some point during your development process. In this article, we will delve into the steps required to resolve this issue comprehensively. Below is an example of how the error manifested on my device, ...Jul 22, 2024·3 min read
React Hooks ( useState & useEffect )Hooks are functions that let developers "hook into" React state and lifecycle features from function components.These Hook features were introduced in React version 16.8. React Hooks Rules 👉 Hooks should be called inside a React function Don’t call...Jul 12, 2024·3 min read