Skip to content

tricks

25 articles tagged “tricks”

Using Data to Control Test Flow

Blog

June 17, 2022

Using Data to Control Test Flow

In day-to-day automation tasks, Test Engineers have to think of different ways to write their automation tests. At the same time, while creating test automation…

Find your Jenkins pipeline faster

Blog

March 21, 2022

Find your Jenkins pipeline faster

If you have a Jenkins instance you’re sharing with other developers, it can be quite hard to find your jobs. By default, Jenkins names your…

Regular Expressions (Regex) In JavaScript

Blog

March 2, 2022

Regular Expressions (Regex) In JavaScript

Regular Expressions (or regex for short) represent a sequence of characters used to define a search pattern. The two most common use cases where you…

Structural container patterns in Kubernetes

Blog

February 16, 2022

Structural container patterns in Kubernetes

Introduction If you have a cloud-native microservices application, you will probably think of using a containerized approach together with Kubernetes for orchestration. In order to…

Deploying an application to Kubernetes with Helm

Blog

October 19, 2021

Deploying an application to Kubernetes with Helm

Deploying an application to Kubernetes with Helm   Introduction This Tech Bite will show you how to deploy a simple frontend application to a Kubernetes…

Method chaining using Capybara and SitePrism

Blog

September 1, 2021

Method chaining using Capybara and SitePrism

Method chaining using Capybara and SitePrism   What are Capybara and SitePrism? Capybara is a Ruby library that is used for automating web pages in…

Builder Pattern in Java

Blog

May 27, 2021

Builder Pattern in Java

Builder Pattern in Java Design patterns are very important in the world of software development, as they represent well proven and tested solutions for some…

Using templates for Jenkins job creation

Blog

April 22, 2021

Using templates for Jenkins job creation

Using templates for Jenkins job creation Introducing Continuous Integration Continuous Integration (CI) is one of the most commonly used software development practices. The way it…

Elasticsearch – Bucket Selector Aggregation

Blog

February 3, 2021

Elasticsearch – Bucket Selector Aggregation

Bucket Selector Aggregation Elasticsearch has many aggregations to offer that allow us to group and breakdown our data in almost any way we want. Often,…

JAVA Generics

Blog

November 11, 2020

JAVA Generics

Concept of generics Java generics allows the creation of a class or a method that can be reused by different data types or objects. This…