life is too short for a diary

Most popular




Manage Your Dockerfiles Using Make

Managing multiple docker-compose projects can become cumbersome. If you have separate services like Postgres, Kafka, and others, each with its own docker-compose.yml, running commands across them can be repetitive. In this post, we'll explore a neat way to simplify this using a master Makefile...

Continue reading → Tags : docker devops






Review Book - Build a large language model

Below are my rough notes while reading the build-a-large-language-model-book...

Continue reading → Tags : books






Kafka Consumers with Reactive OAuth2 in Non-HTTP Contexts

When integrating Kafka consumers with reactive OAuth2 for securing outbound HTTP calls, a common pitfall arises: Kafka processing typically operates in a background, non-HTTP context. This means there's no ServerWebExchange available, which is a core component of the reactive web stack that exposes the current HTTP request/response and request-scoped attributes...

Continue reading → Tags : kafka spring reactive oauth2