Preventing Whole Classes of Bugs
Bugs are a pain. Reducing them is on the mind of many developers and managers. It’s best to prevent whole classes of bugs.
Read More »Bugs are a pain. Reducing them is on the mind of many developers and managers. It’s best to prevent whole classes of bugs.
Read More »Futures are an interesting concept in concurrent and parallel programming. I’ve written about them several time, the last time in Advanced Futures With Play Framework. Streams are a concept which came with Java 8 to operate on a stream of objects, transform and filter them. Combining Futures and Streams in Java sometimes isn’t easy. Some […]
Read More »Some time ago I wrote A Little Guide on Using Futures for Web Developers to explain how to use Futures in web development to speed up page delivery with parallelism. Futures in Play Lately I’ve played a little with the Play Framework using its async actions so I want to add to this guide. Play […]
Read More »I’m working on a new mainstream programming language that prevents more bugs than current mainstream languages. One idea it will incorporate are Tagged Types. I wrote about them recently in Real Life Bug Prevention in Scala. Tagged Types can be used to solve different problems. Often they are used as marker types. In the context […]
Read More »