Zip and unzip with command using terminal

There are various package that does this job but we will talk about `tar` that simply zip and uzip files and folders....
Read More ⟶

Upload files into AWS EC2 using aws cli

We all have heard about codepipeline which simply triggered by a source commit and start a pipeline to build...
Read More ⟶

Kill any running port linux and mac

First of all, we need to find out the process id also known as PID of the running process on a specific port. For...
Read More ⟶

Git tips and tricks

Revert last commit in GIT Revert last commit in GIt also knows as delete the last commit that was made...
Read More ⟶

How to Bypass HTTP Interceptor while calling api

When injected, HttpBackend dispatches requests directly to the backend, without going through the interceptor...
Read More ⟶

How to upload images to S3 bucket using Nodejs code.

Uploading images to S3 bucket using Nodejs code. The below code will upload any assets to mentioned AWS S3 bucket and...
Read More ⟶

Symbolic representing in linux server

Search the path of actual installed packged detination. After that copy and run like below command. which npm which...
Read More ⟶

Re-Installing codedeploy agent in linux sever

Login to you linux server Remove any existing if already installed. sudo yum erase codedeploy-agent Remove...
Read More ⟶

SNS notification target rule is “unreachable” when tryin to send a notification from code pipeline

Whenever you create an SNS topic by itself, the default access policy will look something like this: The default...
Read More ⟶

Angular Date pipe in component ts file

This article will show you how to use Angular Date pipe in component ts file. To achieve the same we need to...
Read More ⟶