Day 30: Exploring a generator-style approach in Java with Supplier and IntStream

Exploring a generator-style approach in Java with Supplier and IntStream.generate().

November 4, 2021 · 1 min

Day 29: ParameterizedTest and MethodSource for repeated test inputs

Using ParameterizedTest and MethodSource to run the same file-presence test with different inputs.

October 28, 2021 · 1 min

Day 28: Arrays.asList() and new ArrayList<>() are not the same

Arrays.asList() and new ArrayList<>() both return lists, but they do not behave the same way.

October 22, 2021 · 1 min

Day 27: Implementing a Unix pipe-like class in Java with Function composition

Implementing a Unix pipe-like class in Java with Function composition.

October 14, 2021 · 2 min

Day 26: Writing a method to retry another method execution

Writing a method to retry another method execution, using TimerTask’s schedule() and scheduleAtFixedRate to check availability

September 30, 2021 · 2 min