VOOZH about

URL: https://www.javacodegeeks.com/author/rafal-borowiec

⇱ Rafal Borowiec, Author at Java Code Geeks


  • Node.js👁 Image
    Rafal BorowiecMarch 9th, 2023
    1 3,001

    Playwright meets JUnit 5

    Playwright is a Node.js-based tool for automating browsers. It supports all modern rendering engines including Chromium, WebKit and Firefox. Playwright…

    Read More »
  • Node.js👁 Image
    Rafal BorowiecFebruary 11th, 2023
    0 836

    Starter template for prototyping and building CLI tools with Node.js and TypeScript

    Why another starter template? I created this template to help myself to build some simple tools and prototypes while learning…

    Read More »
  • Core Java👁 Image
    Rafal BorowiecJanuary 14th, 2023
    0 2,195

    Manage multiple Java SDKs with asdf with ease

    asdf is a helpful command-line tool that allows you to manage and switch between different versions of programming language runtimes…

    Read More »
  • JavaScript👁 Image
    Rafal BorowiecDecember 18th, 2021
    1 1,412

    Parameterized tests in JavaScript with Jest

    Parameterized tests are used to test the same code under different conditions. One can set up a test method that…

    Read More »
  • JavaScript👁 Image
    Rafal BorowiecDecember 13th, 2021
    0 2,457

    Testing promise rejection in JavaScript with Jest

    The code Let’s consider a simple function that returns a Promise that can either resolve or reject depending on the…

    Read More »
  • JavaScript👁 Image
    Rafal BorowiecDecember 12th, 2021
    0 410

    Testing exceptions in JavaScript with Jest

    The code Let’s consider a simple function that checks for equality of two passwords, and it throws an error when…

    Read More »
  • Core Java👁 Image
    Rafal BorowiecMay 19th, 2020
    0 1,568

    Convert time unit to duration in Java

    java.util.concurrent.TimeUnit represents time durations in Java at a given unit of granularity and provides utility methods to convert across units.…

    Read More »
  • Core Java👁 Image
    Rafal BorowiecMay 19th, 2020
    0 43,089

    Switch as an expression in Java with Lambda-like syntax

    As of Java 14, the switch expression has an additional Lambda-like (case ... -> labels) syntax and it can be…

    Read More »
  • Core Java👁 Image
    Rafal BorowiecMay 17th, 2020
    0 288

    Record type in Java

    JDK 14, released in March 2020, introduced records (preview language feature) which provide a compact syntax for declaring classes whose…

    Read More »
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
  • 10
  • ...
  • Last
Back to top button
Close