musab19.hashnode.devMastering Inheritance in Solidity: A Comprehensive GuideDeploying smart contracts costs real money in gas fees. Every line of code you write impacts your deployment budget. This economic reality makes the "Don't Repeat Yourself" (DRY) principle more than just good practice—it's a financial imperative. Inh...Feb 14·6 min read
musab19.hashnode.devMastering EIP-5006: The Standard for Rentable NFTsHave you ever tried to rent out an NFT or lend a digital asset to a friend? If you have, you probably noticed it’s a logistical nightmare. Traditionally, you either have to transfer full ownership (risking they never give it back) or use complex escr...Feb 6·6 min read
musab19.hashnode.devEthereum 101: A Deep Dive into the EVM, Gas, and TransactionsWhen I began exploring the world of blockchain, I constantly heard people describe Ethereum as "Bitcoin but with code." While this description is technically true, it barely scratches the surface. If Bitcoin is a digital calculator, Ethereum is a glo...Feb 5·6 min read
musab19.hashnode.devWhy I Want to Be a Front-End Developer and How HNG Will Help Me Achieve My GoalsI have been fascinated by the limitless potential of front-end development ever since I wrote my first line of HTML. My enthusiasm for this field is fueled by the ability to turn static code into dynamic, interactive experiences. I started out simply...Feb 6, 2025·2 min read
freecodecamp.orgA Guide to the Node.js Event LoopNode.js is an open-source JavaScript runtime environment that allows you to run JavaScript outside the browser. Although Node.js is single-threaded, it has an event loop that makes it multi-threaded. The Node.js event loop is a crucial mechanism in N...May 28, 2024·10 min read