© 2023 Hashnode
#azure-functions
Azure Functions and Power Automate are both powerful tools provided by Microsoft that can be used to automate various tasks in the cloud. In this article, we will discuss how to call an Azure Function…
Yarr! I be a pirate, here to take ye blog content and share it with my #CloudFamily mateys! ― Azure Pirate 🏴☠️ ― One of the best parts about working with Azure is the community. I frequently consum…
Introduction Brief intro about me I am a software developer mostly focused on backend development. I’m part of the cloud team at work where we majorly use Microsoft Azure. I love software architecture…
Introduction OpenAI gives some interesting ideas on how to use their services on the API page. Using the 'Summarization' option as an example, how can this functionality be delivered to other projects…
Overview Azure Functions is a serverless computing service that enables you to run code on-demand without having to explicitly provision or manage infrastructure. It can be used to run scripts or prog…
This is the seventh article in this series on Azure Functions. In this article we will take a look at output bindings. The general pattern of a function is: receive data from some source, process it i…
In the previous article, we deployed our simple function with Storage Queue trigger to Azure cloud. We saw how to view the log stream of our Function App. While reviewing logs this way is fine for tes…
In this article, I will show how to create an azure serverless function with node js and test your function locally. 🤗 what is an azure function? Azure Function is a serverless solution that allows …
In the previous article, we created a function that gets triggered when a message arrives in a Azure Storage Queue. Using a storage emulator, we tested our function locally. Let's deploy it to Azure a…
I was looking for a way to crop a pdf to visible bounds. I wanted to remove the unnecessary empty space surrounding the contents of the PDF. I knew there was a Linux tool called pdfcrop that worked we…