Side Effects in React: useLayoutEffect vs useEffectReact’s data flow process is straightforward—it breaks down the user interface into components, builds a tree of elements, and updates the DOM when components change. However, some operations, such as interacting with an API, fall outside this flow. ...Feb 19, 2025·4 min read·16
How to Deploy Your Project to GitHub PagesDeploying your project to GitHub Pages is a straightforward way to make your static websites accessible to anyone online. Whether you're just starting with web development or have some experience but haven't used GitHub Pages before, this guide will ...Nov 18, 2024·2 min read·62
Best Practices For Security In Next.JsNext.js is a popular React framework that can be used to build high-performance and secure web applications. However, even Next.js applications are not immune to attack. This article will discuss some of the best practices for securing your Next.js a...Nov 26, 2023·12 min read·36
Cool Things To Do with React Outside Web DevelopmentSince launching in 2013, React has consistently improved how developers build apps. If you are a front-end developer, you may have only ever used React to build web applications. However, did you know React can also be used for other interesting purp...Oct 13, 2023·3 min read·318
10 Great Applications To Use As A Content WriterGetting your ideas across to your audience requires a lot of research, editing, and proofreading. Writing articles can be stressful and time-consuming sometimes. Thankfully, some applications make the process easier. In this article, you will discove...Sep 27, 2023·4 min read·28
Blockchain 101: Smart ContractsIntroduction Ethereum is a popular blockchain platform for developing and deploying decentralized applications (DApps) and other digital assets. One of the key features of the Ethereum platform is the ability to create and use smart contracts, which ...Dec 29, 2022·7 min read·39
JS Capsules: SetsIntroduction A Set is a collection of unique values. The emphasis on unique is because a Set cannot store the same data more than once. It stores each piece of data as a unique key with an inherent value of true. It was introduced in JavaScript ES6 a...Sep 23, 2022·3 min read·176