In data streaming each event is transmitting from one processing block to another once events arrive. For example, you have three events like this: You want to calculate the sum
How To
How to add slave host in Jenkins?How to add slave host in Jenkins?
Quick and dirty guide to add a slave host to Jenkins running in Docker on Linux-based machines.

Deployment to Docker and Kubernetes of StatsD-Grafana bundleDeployment to Docker and Kubernetes of StatsD-Grafana bundle
In the article I'm covering the integration of your application with Telegraf and Grafana, and the capturing and sending metrics with StatsD protocol.
Send Email from Google Cloud FunctionSend Email from Google Cloud Function
The easiest method to send emails from Google Cloud Function is the using of SendGrid service. It allows you to send 100 emails in a day on the free account.
Deploying your .NET Core app to Kubernetes on local Windows machineDeploying your .NET Core app to Kubernetes on local Windows machine
Concise guide with commands about deploying .NET Core application to local k8s.
How to run xUnit tests on JenkinsHow to run xUnit tests on Jenkins
Jenkins does not support running of xUnit tests out of the box. So that you need to run it manually and import test results to Jenkins. This quick manual shows how
How To: Publish your assembly to private NuGet repositoryHow To: Publish your assembly to private NuGet repository
This is quick guide to manage your NuGet package in your private server. Before going into steps with publishing a NuGet package you need to have prepared assembly. Also you

How To: Running Specflow features with Selenium in JenkinsHow To: Running Specflow features with Selenium in Jenkins
This is a short guide how to run Specflow features which use Selenium for interaction with a web site. In our building environment these tests are running in Jenkins. Implementing this you’ll
How to test WebAPI with In-Memory HostingHow to test WebAPI with In-Memory Hosting
In most cases you want to have integration tests for your WebAPI, but don’t deploy it on IIS. There is an option which allows to skip IIS pipeline and work
How to extract domain from URLHow to extract domain from URL
You want to extract a domain from URL. The list of URLs to support might be as below. For this list you expect the domain sub.domain.com : sub.domain.com/folder?p1=v1 www.sub.domain.com/folder?p1=v1 http://sub.domain.com/folder?p1=v1 https://sub.domain.com/folder?p1=v1 https://www.sub.domain.com/folder?p1=v1