PinnedCreating an All-in-One Code Editor Using React and SandPackIn this article, we will explore SandPack, a popular playground framework by CodeSandbox, and discuss how you can use it to create a more dynamic and interactive environment for your users. This article covers pretty much all of the basic things you ...Oct 7, 2024·5 min read
ClipBoard API in JavaScriptThe Clipboard API in JavaScript allows you to read data from and write data to the system clipboard. This enables capabilities like copying text to the clipboard and pasting clipboard content into your web apps. Check out this post on my Blog! Cop...Aug 24, 2023·2 min read
How to Add CSS to your HTML PagesRead the full article here: In this article, we'll discuss three methods to add or link CSS to an HTML document: Inline styles The style tag External stylesheets Inline Styles Inline styles in HTML allow you to apply custom CSS styling rules dire...Jun 28, 2023·2 min read
What is the Lobotomized Owl Selector in CSS?Have you ever heard of the lobotomized owl selector in CSS? Despite being a lesser-known selector, it can sometimes prove to be a useful tool in web development. Let's discuss this selector in depth. Read this article on my blog Understanding the ...May 25, 2023·2 min read
Create active links using React Router V6In this post we will be learning how to create active links using React Router V6.4 . Check out this post on my blog too! Active links are commonly used in navigation bars to indicate the user's current page. React Router V6.4 introduces a new and...May 16, 2023·2 min read
404 Page with React Router V6.4A 404 page can be incredibly useful in improving user experience. It is displayed when a user tries to access a page that does not exist on a website. In this article, we will explore two ways to implement a 404 page using React Router V6 in our Reac...Apr 25, 2023·3 min read
React and Firestore Part 2Hello guys! In the previous tutorial, Part 1, we learned how to save and get data from Firestore, which is a cloud-hosted, Firebase NoSQL database. We also learned how to create and integrate a Firestore database to React. In this part 2, we will lea...Mar 14, 2023·2 min read