Skip to content
View rlindooren's full-sized avatar
  • The Netherlands

Organizations

@hudson
Block or Report

Block or report rlindooren

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. junit-eventually-consistent-example junit-eventually-consistent-example Public

    An example of how to give assertions some time to succeed

    Java 1

  2. docker-ubuntu-java-kotlin docker-ubuntu-java-kotlin Public

    Docker file to quickly create an Ubuntu "machine" to build/run/test java projects

    Dockerfile

  3. simple-rest-json-server simple-rest-json-server Public

    Run a HTTP REST server that serves JSON content from files

    Kotlin

  4. pg_dumper pg_dumper Public

    A "http-wrapper" around pg_dump written in GoLang - Allowing to easily trigger (by invoking an HTTP endpoint) the creation and restoring of database dumps.

    PLpgSQL

  5. google-cloud-monitoring-custom-latency-metrics google-cloud-monitoring-custom-latency-metrics Public

    Using the Google Cloud google-cloud-monitoring Java library to send latency metrics to GCP

    Java

  6. AssertJ field by field comparison fo... AssertJ field by field comparison for ProtoBuf messages ignoring dynamic fields (gRPC)
    1
    public <T> ListAssert<T> createAssertionIgnoringCreatedAndModifiedDateFields(List<T> protoMessages) {
    2
    return assertThat(protoMessages)
    3
            .usingRecursiveFieldByFieldElementComparatorIgnoringFields(
    4
                    // Ignore fields that are "dynamical" during a test
    5
                    "createdOn_",