Introduction Azure Pipelines is a CI/CD suite that enables you to continuously build, test, and deploy to any platform or cloud. It has cloud-hosted agents for Linux, macOS, and Windows, powerful workflows with native container support, and flexible deployments to Cloud Foundry, Kubernetes, VMs, and serverless environments. In this guide, we will demonstrate how to…
Continue readingAuthor: Sameer
Steps to host the application on PCF cloud foundry

Prerequisite: Install the cloud foundry cli on you system. URL: https://docs.cloudfoundry.org/cf-cli/install-go-cli.html open PowerShell and verify cloud foundry cli with “cf -v” To host the application on PCF: Step1: First login to PCF with cf login –sso you will get the list of org available for you. Select the org in which you want to deploy…
Continue readingMQTT or COAP protocol for IoT devices?
#iot #mqtt #iotdevices #iiot #COAP MQTT and COAP are very commonly used protocols for IoT device. But how to decide which to use in any particular scenario. Major deciding factor is if Device don’t have the power constraint (battery) then go with MQTT else go with COAP. COAP will cost less power consumption and very…
Continue readingLoad Testing on Visual Studio Tool Box
IoT – Setup of Raspberrypi – Step-by-Step

Step by Step guide to setup the Raspberrypi. Insert the SD card and connect the Raspberry pi with the power source, Ethernet and display screen. You will get the colored screen and a popup to install the raspberry pi os “Raspberrypi Full”. Select the option and install the OS. It will take 10 – 15…
Continue readingHost Angular ng application on IIS server
Step1: build the angular application using Command ng build –prod –build-optimizer Step2: Deploy the dist folder on the IIS server Step3: Add the web.config file in the deployment folder so that IIS can understand how to…
Continue readingDocker CheatSheet
Handle multiple button post
razor: 1 2 3 4 5 <code><form action="" method="post"> <strong> <input type="submit" value="Save" name="action:Save" /> <input type="submit" value="Send" name="action:Send" /></strong> </form> </code> <code><form action=”” method=”post”> <strong> <input type=”submit” value=”Save” name=”action:Save” /> <input type=”submit” value=”Send” name=”action:Send” /></strong> </form> </code> and controller: 1 2 3 4 5 6 7 8 <code> [HttpPost] <strong>[MultipleButton(Name =…
Continue reading.click() vs .bind() – jQuery
Difference between .click() and .bind() .click() is itself an event which will perform some task in function .bind() is used to bind multiple events with single id or tag Difference between bind() and live() bind() .bind() attacheds events to elements that exist or match the selector at the time the call is made. Any elements…
Continue readingDesign Patterns: Abstract Factory
What is it This week we’re going to be taking a look at the abstract factory pattern, which allows us to create families of related products to be used together within their implementation. The pattern automatically enforces this behaviour of using only related products together, which allows multiple families of products to be switched between easily….
Continue reading