Future[_] vs Future[Unit] or which return type should I choose?
Recently I have a heated debate with my colleague about a proper return type for async procedures (procedure is just a function that returns Unit in... »
Recently I have a heated debate with my colleague about a proper return type for async procedures (procedure is just a function that returns Unit in... »
In microservices architecture we often designate a single service for managing the configuration of the entire system. Libraries like Archaius make this easy. As a side... »
Recently I have completed my own version of Ben Eater video card. I still need to spend some time on it, since I could not achieve... »
W tym wpisie przyjrzymy się trudnościom które występują podczas implementacji algorytmu alfa-beta dla gry kółko i krzyżyk. Nie będę tutaj omawiał samego algorytmu, gdyż został on... »
Recently I write a lot of async code. Most of my repository methods return types like Future[Set[T]] or Future[Option[T]]. But as we will see, working with... »