citguru.hashnode.devHow to Generate Random Strings in JavaScriptThere are so many ways to generate random strings in JavaScript and it doesn't really matter which method is faster. The method I like using most is Math.random() I made a video on it: https://www.youtube.com/watch?v=9O-SLMn5m6c Basically the idea i...Feb 13, 2020
citguru.hashnode.devHow to Create Productive Bash Command AliasesTyping commands have never been easier using aliases. You can now cut down typing time with these aliases, work smartly, and increase productivity at the command prompt. If you find yourself typing the same command over and over again, then you'll kn...Jan 30, 2020
citguru.hashnode.devHow to Deploy Your Frontend Application on AWS S3You can now deploy your frontend application on AWS with S3 static web hosting features. This is a second article of the How to Deploy Your Frontend Applications series - where I explain how to deploy any frontend applications (react, vue, angular, s...Dec 10, 2019
citguru.hashnode.devHow to Deploy Your React Application on SurgeYou can now deploy your React Application with just a single command on Surge. With the Surge command-line tool, deploying your application has never been easier. Wait, what's surge? Good, you asked! Surge is a static web publishing server. It depl...Dec 6, 2019
citguru.hashnode.devHow to Send HTTP Requests in ReactMaking HTTP Requests is a very common task in Web Applications. There are many ways to do this depending on whether you will be using the native JavaScript APIs or go with a library. HTTP Requests library usually makes the step in making HTTP request...Nov 10, 2019