Flattening Stream Collections in Java

This article is about Java 8 stream feature flatMap. If we have a List<List<Object>>, how can we turn the list of lists into a single list that contains all the elements from the lists in the same streamflow using the features of Java 8?

Continue reading

Posted in Language basics | Tagged , , | Leave a comment

What does the double star operator mean in Python?

In some Python code, you might spot double stars standing next to each other. What do those two stars mean, and what is their job? We will answer all the questions in this article.

Continue reading

Posted in Language basics | Tagged , , , , , , , | Leave a comment

Selenium – remove html element from the DOM

This article will show you how to remove elements from HTML DOM (Document Object Model) when using automated web-browser framework Selenium. If you want to remove anything you do not want on your site during web-scraping, you came to the right Selenium tutorial.

Continue reading

Posted in Tutorials | Tagged , , , , , , , | Leave a comment

How to join List String elements with a comma

This article will show three different ways to print string elements of the list into one coherent text.

Continue reading

Posted in Language basics | Tagged , | Leave a comment

How to convert private key DER to PEM file type

In this article I will show you quick work around how to turn .pem file type into the .der file type on Windows.

Continue reading

Posted in Tips & tricks | Tagged , , , | Leave a comment

Create PostgreSQL database for integration testing with Docker

In this article, we will explore the idea of creating a PostgreSQL database Dockerfile. We can, for example, use it for creating integration tests in a separate CI/CD workflow.

Continue reading

Posted in Solutions | Tagged , , , , , | Leave a comment

How to print current project classpath

Imagine you want to figure out what is the path to your Java compiled classes. For that, you will need to print the classpath. This article is a short explanation of what a classpath is and a single line of Java code that will help you print out your classpath.

Continue reading

Posted in Tips & tricks | Tagged , , | Leave a comment

How to calculate median from an array in Java

In this short article, we will see how to compute median in Java.

Continue reading

Posted in Computer Science | Tagged , , , , | Leave a comment

How to set custom configuration for your local Git project repository

Suppose you do not want to have the same configuration for your local repository as you have your global Git settings. Or you need to fix identity information for commits that are already made in Git commit history. In that case, this article will show you a few Git commands on how to set up the custom configuration for your local Git repository or how to fix past mistakes.

Continue reading

Posted in Tips & tricks | Tagged , , , | Leave a comment

Verify method was called n-times with Mockito

This short article will explain how to verify that Mock’ method was called n-times with the help of Mockito testing framework.

Continue reading

Posted in Testing | Tagged , , , | Leave a comment