Uncategorized
22 posts in this category
Marketplaces to Sell your Product
Kindle Direct Publishing (KDP): https://kdp.amazon.comCreateSpace: https://www.createspace.comUdemy: https://www.udemy.comSkillshare: https://www.skillshare.comGuides.co: https://www.guides.coeBay: ht...
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 sell your digital products?
1- gumroad.comGumroad is a dynamic online platform designed for creators to market and sell their products directly to consumers. This versatile tool empowers individuals such as authors, designers, d...
How to install Plesk on Linux CentOS?
Download the autoinstaller from our website:1wget http://autoinstall.plesk.com/plesk-installer 2Add execute permissions to the autoinstaller:chmod +x plesk-installerLaunch the autoinstaller:./plesk-in...
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...
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...
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 deploy static website to s3 bucket using aws cli ?
aws s3 cp ./www s3://YOUR_BUCKET_NAME –recursive –acl public-read
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...
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
SSH: how to run a PHP script in background forever in Linux (CentOS) ?
If you want to run a PHP script in the background forever through SSH then follow these steps:If you are using a SSH terminal (PuTTY) then directly run following command:// Notice '&'; that o...