• Automation

    Power Automate: Send daily bugs report in Microsoft Teams from Azure DevOps Boards

    You can simply change same to send a mail notification too, instead of Teams. Sample output on Teams: Development Steps: Step 01 – Create query in Azure DevOps board for Bugs I would start with a Recurrence Trigger (schedule). Check always the Time zone of the trigger will happen on GMT. Step 01 – Schedule I would start with a Recurrence Trigger (schedule). Check always the Time zone of the trigger will happen on GMT. Step 02 – Initialize Azure DevOps URL (optional) I am using this url for hyper linking in the output, which can be considered optional. Step…

  • Automation - Technology

    Power Automate: Send daily status post in Microsoft Teams from a SharePoint List

    Assuming you have a “List” in SharePoint and you want to post a summary/or list as-it-is to a chat group in Microsoft Teams. You can simply change same to send a mail notification too, instead of Teams. Output in Teams: Development Steps: Step 01 – Schedule I would start with a Recurrence Trigger (schedule). Check always the Time zone of the trigger will happen on GMT. Step 02 – Get list items from SharePoint Choose the site address and list name Step 03 – HTML’ize I wanted to format the SharePoint List content as a table and, MS Teams message…

  • General - Technology

    Web 3.0 is here…

    While reading about Web3, it initially reminded me for no reason the decentralized internet concept discussed in the famous Silicon Valley television series. Well, I thought to write about my learning on the reading of this buzz topic. I started my love for internet with the sound of dial-up internet so I was lucky enough to experience different browsers, sockets, chat apps, HTML, compatibilities and incompatibilities, and various phases of web standards. Initially it was purely technology focused but it has turned to human focused now. Thanks to the evolving Customer Experience (CX) and design thinkers’ priorities and involuntary digital…

  • Data

    Azure Purview–notes

    Reading notes Where exactly in your organization is the data which you are searching for? It is a usual fiasco happends in any big/enterprise to search for information/data when an employee resigns, because ‘catalog’ information resides with certain people in the organization which creates a dependency. Find my reading notes on Azure Purview: Azure Purview provides: Unified data governance service Manage and govern      – on-premises,      – multi-cloud, and      – SaaS data Create a      – holistic,      – up-to-date map of your data landscape with      – automated data discovery,      – sensitive data classification,      –…

  • Architecture

    Is the choice of programming language important for Microservices?

    An answer of definite YES or NO is highly irrelevant here, because a Microservice can be written in any programming language which supports some communication end point, such as API. A Microservice is an application architecture style and the programming language used is just one element of it. Let us revisit Martin Fowler’s definitions from 2014, …a particular way of designing software applications as suites of independently deployable services …developing a single application as a suite of small services, each running in its own process …which may be written in different programming languages and use different data storage technologies. Not…