Type-aware generics in Scala

It is possible to create a generic class, that would have parts of it aware of the actual class of its type argument. Without reflection and linked in compile time. Here is how.

Read more…

What do I think about systemd

There is a big push in the Linux community to adopt a new init system. And it appears that the majority of people a leaning towards systemd. I have something to say about it.

Read more…

Scala love

Am I using Scala's string interpolation too much?

s"${ph.firstName} ${ph.lastName}${ph.credentials.map(", " + _).getOrElse("")}"
Read more…