Latest Posts
Discover insights, tutorials, and thoughts on technology and development.
Best Websites to download Copyright free images or videos
1- unDrawhttps://undraw.co ( Illustrations )2- Pexelshttps://www.pexels.com/3- FreeRangeStock.com4- FreeImages.com5- Pixabay.com
How to remove index.php from codeigniter in UBUNTU?
This tutorial will show you that how to remove index.php from codeigniter in UBUNTU or how to enable url rewriting. Step 1 : Add this in htaccess file <IfModule mod_rewrite.c> RewriteEngine On...
PHP: How to fix Image rotation issue in img tag because of EXIF?
Photos captured by some smartphones especially iPhones are automatically rotated when we use it in <img> tag which is mostly not acceptable as we don’t need such unwanted rotation. This happens...
Fix SQL Error: GROUP BY incompatible with sql_mode=only_full_group_by
MySQL 5.7.5+ changed the GROUP BY behavior. So in this and future versions GROUP BY would not work in same way as it used to be before.So to make GROUP BY feature working like before follow these deta...
Best Websites to Learn Programming in Free
https://hyperskill.org/ (FREE)https://codewithmosh.com/ (PAID)https://frontendmasters.com/ (PAID)https://www.class-central.comhttp://www.udacity.comhttp://www.freecodeamp.comhttps://codecademy.comhttp...
Payment Processors for self-hosted products
ClickBank: https://www.clickbank.comJVZoo: https://www.jvzoo.comWarrior+Plus: https://www.warriorplus.comJunkie: https://www.e-junkie.com
How to Use Multiple GitHub Accounts on the Same Machine
Introduction Working with multiple GitHub accounts on the same machine can be challenging, especially when it comes to managing separate SSH keys and repositories. In this article, we will guide you t...
How to deploy static website to s3 bucket using aws cli ?
aws s3 cp ./www s3://YOUR_BUCKET_NAME –recursive –acl public-read
CentOS: how to execute a php file with different php version than the php version of OS
To execute a php file with different php version than the version installed on the main php of your Server follow this:You should know that where is that php version located so that you can add the pa...
How to download full source of old commit in BitBucket?
It’s very easy to download complete source of your project from an old commit by just following these steps:Click on Commits from the dashboard of your project in BitBucket.Get the commit id of the co...
How to install Node.js on Linux CentOS from the EPEL Repository?
An alternative installation method uses the EPEL (Extra Packages for Enterprise Linux) repository that is available for CentOS and related distributions.To gain access to the EPEL repo, you must modif...