The best programming blog.

Covering a wide array of programming topics.

cd..: command not found Ubuntu

Issue: While typing the following command: cd.. you are getting the following error: The solution is to add an extra space after cd i.e the correct command is: This will fix the cd..: command not found issue.More

How to uninstall AWS CLI from MAC

Below are the steps to uninstall AWS CLI from MAC. Go to Terminal and type which aws The output will be like this: usr/local/bin/aws. Find the symlinks for that path: The output will be like this: Delete the following folders to remove it completely: Running which aws command will give you the following message now:…More

MySQL: Column count doesn’t match value count at row 1

If you are getting the following error in your MySQL Column count doesn’t match value count at row 1. The solution is to cross check the columns in your Insert query, it could be possible that the insert query columns and and insert query params count are mismatched, example: If the above query there are…More