Recent Posts

Soft Assertions – testing kindly

Given it’s the advent of a new year, I thought let’s start with something nice and fun that can make live more enjoyable for everyone. As developers, we write testcases all the time to help us in our development process, and to help us detect potential regressions in the future. Now ideally we want our testcases to be as efficient …

Read More »

Hello eBPF: Recording data in basic eBPF maps (2)

Welcome back to my article series on eBPF. Last week, I introduced eBPF, the series, and the project and showed how you can write a simple eBPF application with Java that prints “Hello World!” whenever a process calls execve: public class HelloWorld { public static void main(String[] args) { try (BPF b = BPF.builder(“”” int hello(void *ctx) { bpf_trace_printk(“Hello, World!”); …

Read More »

A Day in the Life of a Software Engineer in a Scrum Team Part-2

Welcome back to the journey through the world of Scrum! If you’ve read Part 1, you’re already familiar with the basics of Scrum and how it can help teams manage their work efficiently. Now, let’s dive deeper and explore a day in the life of Alex, a software engineer in a Payment Scrum Team. Alex is part of an elite …

Read More »