draken.hashnode.devUnderstanding 2D Matrices in JavaScriptIn JavaScript, handling 2D matrices (also known as 2D arrays) is a common requirement when working with grids, tables, or spatial data. A 2D matrix is essentially an array of arrays, where each inner array represents a row of elements. Initializing a...Jan 20, 2025·3 min read
draken.hashnode.devZero Bit In JavascriptIn JavaScript, a variable representing a "zero bit" means it holds no set bits, which is simply the number 0. Here’s how you can work with such a variable and manipulate it effectively: Initializing a Zero-Bit Variable You can declare and initialize...Jan 15, 2025·2 min read
draken.hashnode.devThe Ultimate Guide to Installing and Using Linux on Windows: A Beginner's JourneyIntroduction Linux, an open-source operating system, has gained popularity among developers, system administrators, and tech enthusiasts. But what if you're a Windows user curious about Linux? This guide will walk you through installing Linux on your...Aug 27, 2024·4 min read
draken.hashnode.devBuilding Your Ultimate Next.js BoilerplateIntroduction As developers, we often find ourselves repeating the same setup processes for new projects. Authentication, database connections, payment integrations, and styling – these are the building blocks of most modern web applications. But what...Aug 18, 2024·4 min read
draken.hashnode.devNext.js Monorepo : A Way to become masterIntroduction to Monorepos : A monorepo is a version-controlled code repository that holds many projects. For Next.js applications, this approach can be particularly beneficial when managing multiple interconnected projects, shared libraries, and micr...Aug 10, 2024·9 min read