Pankaj Kumar

Pankaj Kumar

How to Install MySQL on MacOS

How to Install MySQL in MacOS

To install MySQL on macOS, follow these steps: Step 1: Run Homebrew command Run this command in your terminal to install MySQL. brew install mysql Step 2: Run MySQL Server We need to run the MySQL Server in order to…

Setting up Mac for Development/Coding

Setting up Mac for Development

You may need to setup up your brand new Mac or after purchasing a used one with factory reset for software development purposes. While I understand that the usage behavior of individuals differs, there are some settings and software that…

Throttle Function in JavaScript

Throttle Function in JavaScript

Throttle function can be used to execute a function more than once every X milliseconds. The main difference between Debounce function and Throttle function is that throttle function gurantees the execution of function every X milliseconds. In this tutorial, we…