Wszystkie artykuły
Why I love Clojure?
Clojure language as one of the modern Lisp’s dialects was carefully designed with concurrency in mind. It enables you to communicate between many machines seamlessly. […]
The Microservices Architecture
The microservices architecture is definitely one of such trendy solutions that is widely considered, especially in new projects. Is it worth trying and what kind […]
TypeScript – dlaczego warto go znać?
Wstęp Tworzenie dużych aplikacji webowych napisanych JavaScriptem to nie taka prosta rzecz. Nie mamy do dyspozycji typów, interfejsów, enumów itp. Te funkcje mogłyby być bardzo […]
Creating a lazily-evaluated builder-like API in Java 8 using the extended Step Builder pattern
Introduction The Builder design pattern is known and used widely. To begin with, it was created to provide a way to create new objects. Using […]
Czym jesteś, blockchainie?
Słowo „blockchain” przekształciło się w wytrych związany z kryptowalutami, lecz jego definicja skrywa o wiele więcej. Przyjrzyjmy się mu z bliska. Blockchain staje się coraz […]
Time to refactor with C++17
In the following article I will present some examples of novelties for C++17, which can make your code more readable, faster and your life much easier. […]
Agile way towards microservices
What if you know that you will need a microservice architecture, but you do not know how to divide your business requirements into small, independent […]
Configuring Spring in Stand-Alone Apps
Here’s a quick lesson in bringing Spring Configuration classes and functionality to your own stand-alone apps in the event you need them. Spring is a […]
Building Selenium framework in java (part III) – how do you fit Cucumber in there
In this article let me explain how I think Cucumber fits Selenium based test framework written in java. Introduction Honestly, until recently, I thought that […]
Publish/Subscribe model in JavaScript
Let’s figure out how we can use Observer pattern to build a very basic implementation of Events with public/subscribe methods based on usage of Ionic […]