All you need to know about React Hooks: useEffectThis is the second post in the React Hooks series. Throughout this series, we will cover every React hook in detail and discuss its implementation. Moreover, we'll explore practical examples, best practices, and dos and don'ts. By the end of this ser...Jul 24, 2023·8 min read
Firebase GitHub AuthenticationThis is part - 3 of the firebase authentication series, previously we have seen how we can use Google and Facebook authentication in our application. This is a continuation of the previous blogs, so it'll be connected, here we'll just add another met...Mar 6, 2023·3 min read
Firebase Facebook AuthenticationThis is part - 2 of the firebase authentication series, previously we have seen how we can use Google authentication in our application. This will be connected to that as well, here we'll just add another method of authentication to our app. So, do c...Mar 6, 2023·3 min read
Firebase Google AuthenticationHello everyone, In this blog, we're going to learn how we can authenticate users using Firebase and Google. You can also see part-2 and part-3 of this series where we see how you can use Facebook and GitHub authentication as well. What we'll learn H...Mar 4, 2023·6 min read
Tackling authentication errors are tough.Hello Everyone! We all know how hard and stressful debugging can get sometimes, especially when you have a small bug in your codebase. We try to get through the code multiple times, testing it and running it again and again and sometimes even without...Feb 16, 2023·3 min read
Trigger search box using keyboardYou must've came across websites using specific keyboard shortcuts to trigger the search box, for ex - tailwindcss.com, bootstrap and github.com here you can use "ctrl + k" or "/" to trigger the search bar. Let's see how to implement this using Jav...Oct 26, 2022·1 min read
Custom scrollbarDefault grey scrollbar might look ugly to you and you really want to change it, no need to worry about it I got ya ! You need some 6 - 7 lines of CSS to customize it. We'll be using CSS pseudo-element ::-webkit-scrollbar to customize it, but before t...Sep 28, 2022·2 min read