๐ WebDriverIO Tutorial: Handling Alerts & Overlay In Selenium
//www.javacodegeeks.com/2020/08/webdriverio-tutorial-handling-alerts-overlay-in-selenium.html
โก๏ธ @JavaLearnZone
//www.javacodegeeks.com/2020/08/webdriverio-tutorial-handling-alerts-overlay-in-selenium.html
โก๏ธ @JavaLearnZone
Java Code Geeks
WebDriverIO Tutorial: Handling Alerts & Overlay In Selenium | Java Code Geeks - 2020
Interested to learn about WebDriverIO? Check our article explaining how to handle alerts & pop-ups as well as overlay modal in WebDriverIO
๐ Kafka & Zookeeper for Development: Local and Docker
//www.javacodegeeks.com/2020/11/kafka-zookeeper-for-development-local-and-docker.html
โก๏ธ @JavaLearnZone
//www.javacodegeeks.com/2020/11/kafka-zookeeper-for-development-local-and-docker.html
โก๏ธ @JavaLearnZone
Java Code Geeks
Kafka & Zookeeper for Development: Local and Docker - Java Code Geeks - 2023
Kafka popularity increases every day more and more as it takes over the streaming world. It is already provided out of the box on cloud providers like
๐ Java Program to Find Transpose of a Matrix
//www.javacodegeeks.com/2020/11/java-program-to-find-transpose-of-a-matrix.html
โก๏ธ @JavaLearnZone
//www.javacodegeeks.com/2020/11/java-program-to-find-transpose-of-a-matrix.html
โก๏ธ @JavaLearnZone
Java Code Geeks
Java Program to Find Transpose of a Matrix | Java Code Geeks - 2020
A quick and practical guide to calculate the matrix transpose in java. Transpose of a given matrix is nothing but the changing the values and order. 1.
๐ Java Program to Print Multiplication Table For Given Number
//www.javacodegeeks.com/2020/11/java-program-to-print-multiplication-table-for-given-number.html
โก๏ธ @JavaLearnZone
//www.javacodegeeks.com/2020/11/java-program-to-print-multiplication-table-for-given-number.html
โก๏ธ @JavaLearnZone
Java Code Geeks
Java Program to Print Multiplication Table For Given Number | Java Code Geeks - 2020
A quick example program to create multiplication table in java using simple for loop and while loops. 1. Overview In this article, you'll learn how to
๐ GC Logs changes for migrating from JDK 8 to JDK 11
//www.javacodegeeks.com/2020/11/gc-logs-changes-for-migrating-from-jdk-8-to-jdk-11.html
โก๏ธ @JavaLearnZone
//www.javacodegeeks.com/2020/11/gc-logs-changes-for-migrating-from-jdk-8-to-jdk-11.html
โก๏ธ @JavaLearnZone
Java Code Geeks
GC Logs changes for migrating from JDK 8 to JDK 11 - Java Code Geeks - 2023
Problem Moving from JDK 8 to JDK 11 is quiet subtle. One issue which many people have faced is regarding is GC Logs. Solution JDK 11 uses generic logging
๐ Where Is the Array Length Stored in JVM?
https://www.baeldung.com/java-jvm-array-length
โก๏ธ @JavaLearnZone
https://www.baeldung.com/java-jvm-array-length
โก๏ธ @JavaLearnZone
Baeldung
Where Is the Array Length Stored in JVM? | Baeldung
If you always wanted to know how JVM stores array length, you will find the answer here.
๐ Apache Commons Collections BidiMap
https://www.baeldung.com/commons-collections-bidi-map
โก๏ธ @JavaLearnZone
https://www.baeldung.com/commons-collections-bidi-map
โก๏ธ @JavaLearnZone
Baeldung
Apache Commons Collections BidiMap | Baeldung
Learn about the BidiMap from the Apache Commons Collections library.
๐ Publishing Open Source Releases with Gradle
https://reflectoring.io/guide-publishing-to-bintray-with-gradle/
โก๏ธ @JavaLearnZone
https://reflectoring.io/guide-publishing-to-bintray-with-gradle/
โก๏ธ @JavaLearnZone
reflectoring.io
Publishing Open Source Releases with Gradle
When working on an open source Java project, you always come to the point where you want to share your work with the developer community. This article gives a step-by-step guide on how to publish your artifacts Bintray.
๐ Combining Object Mother and Fluent Builder for the Ultimate Test Data Factory
https://reflectoring.io/objectmother-fluent-builder/
โก๏ธ @JavaLearnZone
https://reflectoring.io/objectmother-fluent-builder/
โก๏ธ @JavaLearnZone
reflectoring.io
Combining Object Mother and Fluent Builder for the Ultimate Test Data Factory
Combining the Object Mother Pattern with the Fluent Builder Pattern allows to create Test Data Factories that reduce code duplication and promote the Single Responsibility Principle. Learn why and how in this tutorial.
๐ How to Find all Getters Returning Null
https://www.baeldung.com/java-getters-returning-null
โก๏ธ @JavaLearnZone
https://www.baeldung.com/java-getters-returning-null
โก๏ธ @JavaLearnZone
Baeldung
Finding Getters that Return Null | Baeldung
Learn how to find out all null-returning getters using Java 8 and the Introspector class.
๐ How to Get a Name of a Method Being Executed?
https://www.baeldung.com/java-name-of-executing-method
โก๏ธ @JavaLearnZone
https://www.baeldung.com/java-name-of-executing-method
โก๏ธ @JavaLearnZone
Baeldung on Kotlin
How to Get a Name of a Method Being Executed? | Baeldung
Learn to how to find out the name of a method being executed.
๐ Java Exercises for Beginners
//www.javacodegeeks.com/2020/08/java-exercises-for-beginners.html
โก๏ธ @JavaLearnZone
//www.javacodegeeks.com/2020/08/java-exercises-for-beginners.html
โก๏ธ @JavaLearnZone
Java Code Geeks
Java Exercises for Beginners - Java Code Geeks - 2022
Interested to learn about Java Exercises? Check our article presenting some Java Exercises for Beginners with examples.
๐ Introduction to Creational Design Patterns
https://www.baeldung.com/creational-design-patterns
โก๏ธ @JavaLearnZone
https://www.baeldung.com/creational-design-patterns
โก๏ธ @JavaLearnZone
Baeldung
Introduction to Creational Design Patterns | Baeldung
An introduction to four fundamental creational design patterns: Singleton, Factory Method, Abstract Factory, and Builder.