Download option 1: https://go.pstmn.io/dl-linux64-v7-latest
Download option 2: https://drive.google.com/file/d/1q5-Um-ihlIqEcsw5Mf2FV4oSOCTaqAzI/view?usp=sharing
tar -xzf Postman-linux-x64-7.36.5.tar.gz| <VirtualHost *:80> | |
| ServerName local.your_domain.test | |
| ServerAdmin [email protected] | |
| DocumentRoot /var/www/project_root_directory | |
| <Directory /var/www/project_directory_name> | |
| AllowOverride All | |
| </Directory> | |
| ErrorLog ${APACHE_LOG_DIR}/error.log | |
| CustomLog ${APACHE_LOG_DIR}/access.log combined |
Download option 1: https://go.pstmn.io/dl-linux64-v7-latest
Download option 2: https://drive.google.com/file/d/1q5-Um-ihlIqEcsw5Mf2FV4oSOCTaqAzI/view?usp=sharing
tar -xzf Postman-linux-x64-7.36.5.tar.gzIf you have a copy of your ssh keys (e.g., on a USB stick) then simply copy the key files to the ~/.ssh/ directory.
cp /path/to/my/key/id_rsa ~/.ssh/id_rsa
cp /path/to/my/key/id_rsa.pub ~/.ssh/id_rsa.pub
change permissions on file
sudo chmod 600 ~/.ssh/id_rsa
sudo chmod 600 ~/.ssh/id_rsa.pub
Run below command to check the listening ports and applications on Linux:
sudo lsof -i -P -n | grep LISTEN
Kill running process to flow below command:
kill -9 4469 //-- 4469 is the port number
| const array1 = [1, 2, 3, 4, 5] | |
| const array2 = [6, 7, 8, 9, 10] | |
| // to add after | |
| const newArray = [...array1, ...array2] | |
| // to add before | |
| const newArray = [...array2, ...array1] |
| <template> | |
| <div class="msg-history"> | |
| <div class="incoming-msg-section"> | |
| <div class="incoming-msg-img"> | |
| <img src="https://ptetutorials.com/images/user-profile.png" alt="sunil"> | |
| </div> | |
| <div class="incoming-msg-content"> | |
| <div class="msg-card"> | |
| <div class="msg-body"> | |
| <p class="message"> |
| pusher = new Pusher(process.env.PUSHER_APP_KEY, { | |
| cluster: YOUR_PUSHER_APP_CLUSTER, | |
| authEndpoint: YOUR_BASE_URL + '/broadcasting/auth', | |
| auth: { | |
| headers: { | |
| Accept: 'application/json', | |
| Authorization: YOUR_TOKEN | |
| } | |
| } |
| // save the context in its unaltered state | |
| ctx.save(); | |
| // fill canvas with black | |
| ctx.fillStyle="black"; | |
| ctx.fillRect(0,0,canvas.width,canvas.height); | |
| // create clipping region which will display portion of image | |
| // The image will only be visible inside the circular clipping path | |
| ctx.beginPath(); |