Monads

Monads allow you to chain together operations in your program without any unintended consequences. And they are a functional design pattern that are widely used...

May 26, 2017

What is Middleware?

Middleware connects two parts of your application together and passes data between them. It can be thought of as the glue for your application. A...

May 19, 2017

Theory Behind Monoids

This blogpost covers a brief background on the formal definition and theory behind Monoids. It by no means comprehensive or math intensive, but is more...

May 18, 2017

Interface Segregation Principle

The interface segregation principle is the “I” in the SOLID Principles. Bob Martin defined it as “Many client specific interfaces are better than one general...

April 27, 2017

Streams

Java defines input and output in terms of streams. An input stream is a class that reads data and an output stream is a class...

April 6, 2017