React State Management in Practice: Choosing the Right Pattern for Real UI ProblemsMar 19, 2026·6 min read
Common React State Bugs (and Why They Happen)TL;DR Most bugs in React apps are not logic errors; they come from how state is structured and updated. When state is: duplicated derived but stored updated unpredictably The UI eventually becomeMar 19, 2026·4 min read
Marinade: Deep DiveThere are certain events I call Ripple Effect events. Events that sprawl a chain reaction of innovation across entire industries. The ripple effect event of our interest in this article would be the 2021 Solana x Serum hackathon. At this time there w...Aug 21, 2023·13 min read
How To Deploy A Smart Contract To Polygon zkEVM Testnet using RemixLearn how to deploy a simple contract to a zkEVM network using remix.Apr 1, 2023·2 min read
Solidity Tutorial: Enum & StructEnums and structs enhance the organization of data in Solidity, the programming language for EVM smart contracts.Jan 31, 2023·6 min read
How to scaffold and deploy a smart contract to the Ethereum network.New technology can be daunting to delve in at first. Starting off with Ethereum development might have been overwhelming in the past few years, but it has never been easier to take a smart contract from your VS Code editor onto the Ethereum network (...Jan 29, 2023·8 min read
Solidity Tutorial: MappingsIn the previous episode, we discussed arrays and how to use them. From the example, we had studentAges as an array where we knew the element's index, so we could easily fetch the index value. But, what if we don't actually know the index? How do we f...Jan 27, 2023·6 min read