You have a file with final coordinates for some mysteries. Editing every geocache coordinate manually takes way too long. Therefore, I wrote a small application which converts a csv to a gpx file, and a user guide on how to automatically upload the gpx file to geocaching.com. The provided GSAK
Continue readingJenkins Plugin for Build Steps and Pipelines
If you are writing a Jenkins plugin and you want it to run as a build step and to work smoothly with pipelines, the following article shows you how to do it. I will show how I migrated a build step plugin to also work as pipeline plugin.
Continue readingUsing R in Java with Rserve
R is a free software environment for statistical computing. Rserve is used as a TCP/IP server to run R libraries from within Java. In this tutorial, I want to show you how to use the power of R in a Java application using Rserve.
Continue readingCustom WebdriverIO Commands
Custom commands are a convenient way of extending the browser object with new functionalities to improve test stability, to enhance test maintenance, and to reduce code duplication.
Continue readingDebug Mocha Unit Test in Visual Studio Code
Mocha is a testing library, created to be simple, extensible, and fast. The following write-up gives a short introduction on how to setup Mocha and how to easily run all unit tests or only a single one in Visual Studio Code.
Continue readingRun NPM scripts in Visual Studio Code with a Single Click
Recently, I wondered if there is a possibility not having to remember the NPM script names in my package.json and to start them faster without having to open a terminal and typing npm run <script-name> every time. It turns out there is a solution!
Continue reading