Merging Old-School OOP with Dataflow: The Awesome Visitor + Pipe-and-Filter Mashup

Ever wake up in the middle of the night thinking, “I love reading about design patterns, but do we really need more ways to pass data around?” No? Well, if you’re still here, you probably enjoy borderline masochistic discussions about code architecture as much as I do. Today, we’ll look at two seemingly unrelated design... Continue reading Merging Old-School OOP with Dataflow: The Awesome Visitor + Pipe-and-Filter Mashup

Taming the Optional Beast When Interfacing Between Java and Kotlin – Without Losing Your Sanity or Null Safety

So you’ve got a Kotlin codebase that you love more than your morning coffee, and yet there’s still that pesky legacy Java component that’s holding on for dear life. Somewhere in there is Optional<T> – Java’s fancy way of saying “maybe it’s there, maybe it’s not,” which Kotlin takes very, very personally. If you’ve ever... Continue reading Taming the Optional Beast When Interfacing Between Java and Kotlin – Without Losing Your Sanity or Null Safety