DDevelopment & Design Zapraszamy na płatny, wakacyjny staż TouK! byMagda ŻebrowskaMay 7, 20150 minute read Zgłoszenia przyjmujemy do 17.05. Magda Żebrowska
DDevelopment & Design Vavr, Collections, and Java Stream API CollectorsbyGrzegorz PiwowarekAugust 23, 2017 Vavr is now a must-have for every modern Java 8+ project. It encourages writing code in a functional…
DDevelopment & Design Testing NiFi Flow – The good, the bad and the uglybyBartłomiej TartanusJanuary 10, 2019 Introduction Some time has passed since we wrote our last blogpost about Apache NiFi where we pointed out…
DDevelopment & Design Kotlin, Callable and ExecutorServicebyDominik PrzybyszOctober 11, 2015 I've recently written about using Callable in Groovy, but how does it look like in kotlin?Callable instance as separete class First, let's create class which implements Callable interface:class MyJob : Callable<Int> { override fun call() = 42}...