Skip to main content

Posts

Tracking Antarctic Giants: Building a Real-Time Iceberg Monitor with NASA Data

6 min
Ever wondered where those massive icebergs the size of cities are drifting? I built a system to track them in real-time using NASA satellite data. The Problem: Lost Giants in the Southern Ocean # Antarctic icebergs are some of the most fascinating phenomena on Earth. These floating ice mountains—some larger than entire countries—break off from ice shelves and drift across the Southern Ocean for years. But tracking their movements has always been challenging.
#Geospatial #Data-Visualization #Cli-Tools #Web-Scraping

Building an MCP Server for Your Kafka Cluster

5 min
A step‑by‑step guide to using FastMCP and the MCP protocol to expose Kafka operations (topic management, produce/consume, troubleshooting) as LLM‑accessible tools.
#Kafka #MCP #FastMCP #Python

Build Custom Kafka Connectors Fast with This Open-Source Template

5 min
Apache Kafka is a powerful distributed event streaming platform, and Kafka Connect makes it easy to integrate Kafka with external systems. While many pre-built connectors exist, real-world applications often need custom connectors tailored for proprietary systems, custom logic, or advanced error handling. That’s where this production-ready template comes in—it removes the boilerplate and gives you everything you need to build, test, and deploy connectors with ease.
#Kafka Connect #Kafka #Template

Server-Sent Events: Build Real-Time Web Apps with Minimal Code

2 min
In this technical deep-dive, we unravel the power of Server-Sent Events (SSE), a game-changing web technology that simplifies real-time communication. Developers often struggle with complex, resource-intensive methods for creating live updates, but SSE offers an elegant solution that’s both lightweight and powerful.

Configuring Kafka Connector with Docker: A Step-by-Step Guide

6 min
In this tutorial, we’ll walk through the process of setting up a Kafka connector using Docker and docker-compose.yml. We’ll focus on configuring a file connector, which is useful for reading data from files and writing data to files using Kafka.

Setting Up a Kafka Cluster Without Zookeeper Using Docker

4 min
Introduction # In this post, we will walk through the process of setting up an Apache Kafka cluster without using Zookeeper, leveraging Kafka’s KRaft mode for metadata management. Kafka no longer requires a Zookeeper instance, simplifying the cluster setup. We will use Docker to deploy this Kafka cluster with the latest version of Kafka.