Recent Posts

Mutation Testing in Rust

Author: Nicolas Frankel Original post on Foojay: Read More I’ve been a big fan of Mutation Testing since I discovered PIT. As I dive deeper into Rust, I wanted to check the state of mutation testing in Rust. Starting with cargo-mutants I found two crates for mutation testing in Rust: cargo-mutants and mutagen mutagen hasn’t been maintained for three years, …

Read More »

The try block in Rust

Author: Nicolas Frankel Original post on Foojay: Read More I wrote previously about libs for error management in Rust. This week, I want to write about the try block, an experimental feature. The limit of the ? operator Please check the above article for a complete refresher on error management in general and the ? operator in particular. In short, …

Read More »

JavaPro Shout Out: “From Reactive Streams to Virtual Threads”

Author: Adam Warski Original post on Foojay: Read More Virtual Threads deliver a fast, cheap (in terms of memory & switching speed) threading solution for the JVM. They promise the return of a direct-style, synchronous programming model. But is that enough to challenge the status quo regarding data streaming? Can we have the best of both worlds: the simplicity that …

Read More »