Angular DirectivesIn Angular, Directives are custom HTML attributes which tell Angular compiler to change the style or behavior of the elements. These are basically classes, that add additional behavior to elements in your Angular applications.We have 3 different types of Directives in AngularComponent...
Creating Custom Elements using Angular
Custom Elements is one of the key features of the Web platform. Custom Elements extend HTML by allowing you to define a tag whose content is created and controlled by JavaScript code. The idea is that you can use something like <app-chat-form></app-chat-form> along with the standard elements...
Handle Twilio SMS Status Call back in Azure Logic apps
In my previous post, I explained how to send SMS using Twilio connector in Azure logic app. In this post, I will describe how to capture the Twilio SMS Status call back events after we sent the SMS using Twilio and save them to the database using logic app . Prerequisites:Azure subscriptionA sender...
Azure Logic Apps - Sending SMS using Twilio connector
Azure logic apps is a cloud service that helps you to define your works flows, schedule tasks etc in the cloud. It is server less and fully managed IPAAS (Integration Platform as Service) with inbuilt scalability. Logic apps provides a visual designer for create and configure your work flows....
Streaming/ Playing an audio file from FTP
In General FTP doesn't allow to stream a file directly from FTP site. In this post, I will explain how, I did it in an ASP.NET project to play the audio file from FTP. My aim is to play an audio file which is in FTP using HTML audio tag without downloading the file to local folder (server folder)....
Enable TLS 1.2 on Windows 7
Transport Layer Security (TLS) is the next generation for Secure Socket Layer (SSL) protocal. It provides secure communication over internet. TLS is used by Web Browsers and other applications which require data to be securely exchanged over a network such as VPN, email, FTP etc.
Windows 7 support...
Angular: Get Comma separated string for one Property from an Array of Objects
This is a small useful snippet which will explain how to get a comma separated string for one property from an array of objects.
If following is your array of objects
var usersArray = [
{
id: "1",
name: "Ram",
active: true
},
{
id: "2",
name: "Jishith",
...
Deploy Azure function using Azure CLI
The Azure command-line interface (Azure CLI) is a set of commands used to create and manage Azure resources. It is available across Azure services and is designed to get you working quickly with Azure, with an emphasis on automation. You can check how to install and configure Azure CLI in you machine...
Deploying Azure function With ARM Template
ARM Template
In agile development methodology, we need to repeatedly deploy our solution to the cloud. So we need to automate the deployment process and use the practice of Infrastructure as code. In our code, you can define the infrastructure that needs to be deployed. The infrastructure code...
Git: Delete commits from a branch
Using Revert feature in Git will keeps the older commit in the branch. It just revert the changes what we have done in a commit. The Revert also will shown as a separate commit in the branch.
But if you want to remove a commit from a branch permanently, you need to use git reset command as below
git...
Subscribe to:
Posts
(
Atom
)