Ten Ways to Secure Your AWS Account

Proper data security is always a concern, whether your data is on-premise or on the cloud. Here are some of the best practices for securing your data on Amazon Web Services (AWS). While this list is not comprehensive, this would…

Overwrite Local Files with Git Pull

If you need to discard the changes you made to your local environment, you can pull the remote branch code. To overwrite the local files from the remote branch: For more git related screwups, check out

Dial O for Operator – Amazon Connect

Customer Experience Expectations Cost savings and speed often drive a business’s technological investments, but only so long as the quality of products and services meets the high standards of customer experience. Organizations have shifted their customer strategies to keep costs…

Getting started with Chocolatey

What is Chocolatey? Every time you work on a Linux machine, you can quickly install applications using apt-get or yum. When you switch to Windows and have to install an application like Notepad++ or 7-Zip, you go to the website,…

Size of tables of a MySQL database

Query to show the size of the tables of a MySQL database. The output would be in MB and sorted in descending order. SELECT table_schema as `Database`, table_name AS `Table`, round(((data_length + index_length) / 1024 / 1024), 2) `Size in…