I found most developers struggling to host a website on AWS. Even some of my friends ask me several time to make them understand some easiest way to host a website on AWS. Also many of developers are fears to host their websites on AWS due to high charges associated on AWS. But you have all the control on AWS. So you can minimise the charges as you wants.I have already describe a simplest process for hosting a website on AWS using vista panel. you can check Easy Process to Host…
Author: phpmypassion
Get Stand-out Service from Programming Assignment Help to Nurture your Career
In an era when science and technology are at their peak, it is a must you have knowledge about these things else you will lag behind the others. Where Artificial Intelligence has taken up almost all the work of human beings, it makes it difficult to survive in the world today without the knowledge of computers. Coding and programming are introduced into the curriculum of school-going students from standard fourth or fifth. This itself proves how important it is along with normal studies. In the early stages, we are taught…
How to Send an Email Using PHPMailer ?
Image Source:- Google Images Many of developers struggle to integrate send mail functionality in a website. So I thought why do we make the easy process for sending mail functionality by post. Here I comes with a simplified process for sending an email using PHPMailer. I integrated this many of websites developed by me using PHP. I have created my own…
How to Install VestaCP on Ubuntu 18.04 LTS
VestaCP gives you a user interface to host your website more efficiently and makes your work so easy. Below are the commands to install VestaCP.. ->apt-get update -y -> apt-get upgrade -y -> nano /etc/hosts -> 127.0.0.1 vestacp.phpmypassion.com -> wget http://vestacp.com/pub/vst-install.sh -> chmod 755 vst-install.sh -> bash vst-install.sh / bash vst-install.sh –force Type y and ENTER to continue: Please enter admin email address: admin@linuxbuz.com Please enter FQDN hostname [vestacp.linuxbuz.com]: Installation backup directory: /root/vst_install_backups/1564552012 If you found any type of difficulty for installing VestaCP in ec2 instance, you can intimate…
Process to Create AWS Lambda Function in Python
In this article I am sharing the full and easy process of creating a AWS lambda function using python. So follow step by step process for creating AWS lambda using python 3. ********************** process to create lambda function ***************** > fill basic information like name, runtime envoironment, permission
How to Copy files from host to Docker container?
Most common problem “Copying files from host to Docker container” that usually developers face. So here I am providing you a simple command that would be copy a file from host to docker container.To copy a file into your docker container you have to follow below 3 points. first, copy the path of localhost where your file stored. ** in my case its stored on /home/anil/Desktop/database/database.sql ** second you have to set a path into your docker container where you want to store your file. ** in my case I created a…
Python map() function
Map() function :- map() function in python used to perform operations on a given number of iterable sequence like list, set, tuple etc. map() function takes a function as an one argument and a iterable sequence as a second argument. map(func, iter) func:- This is a function on which map function passes each element of given iterator. iter:- This is a iterable sequence like lists, sets, tuples etc. map() function returns a map object. so you have to change the type of result to list or tuple as per your requirement.…
How to Transfer a Domain into Another Godaddy Account?
Step 1. Login into your godaddy account. First of all you have to login into your godaddy account from which you booked that domain (xyz.com) Step 2. Now go to your all products & services page. You have to just click on the manage button shown in above right side of screenshot. Step 3. Go to your DNS management page. Here you have to click on transfer domain link shown in red circle.
Difference Between React and Angular – AngularJS v/s ReactJS
Many of web developers are struggling for choosing good option for frontend. there is confusion in choosing AngularJS or ReactJS whether it is a smarter choice for front-end development. React and Angular are powerful front end development technologies. AngularJS is designed and managed by Google, while Facebook and its community maintain ReactJS. They are built on JavaScript that makes advancement and customisation to develop advanced front end of web applications. According to my experience, here I am mentioning some of the comparison points between AngularJS and ReactJS. I hope this…
How To Remove Last Character From A String Using jQuery?
Common problem faced by developers, how to remove last character from a string using jQuery, Here I am going to explain the solution with an example. var str = ‘123-4’; alert(str.slice(0, -1));
