Skip to main content

Tutorial

Introduction to MCP Servers and writing one in Python
The picture of this article is the output of Claude, using a local MCP server that gives it the output of the ls -l command on a given path. Notice how the LLM likes to praise me, exaggerating a bit. In my opinion this is just a method they use to keep the users hooked on their product. Who doesn’t like to be praised and approved with everything they say, right? :D
Windows Task Scheduler - Quick Start
Introduction # Hello everyone ๐Ÿ‘‹, This is a quick post about the windows task scheduler, if you’re a Software Developer using Windows the task scheduler is a great tool to automate tasks. I see it as a combination of cron and systemd (if you’re a Linux user you know what I’m talking about).
Idempotency in Your API
Introduction # Idempotency is a crucial property in the world of APIs, ensuring that operations can be applied multiple times without changing the result.
CAP Theorem
·2 mins
The CAP theorem, also known as Brewer’s theorem, is a concept in distributed computing that states that it is impossible for a distributed system to simultaneously provide all three of the following guarantees:
Working with Volumes in Microk8s
Introduction # Hello ๐Ÿ‘‹, In this quick tutorial ๐Ÿ’ป weโ€™ll explore how to use Volumes and PersistentVolumes with hostpath storage in Microk8s.
Getting Started with pdoc3 for Python
Hello everyone! ๐Ÿ‘‹ In this article weโ€™ll talk about documentation and how to document a Python project with pdoc. Documentation is an essential part of writing high-quality Python code. Not only does it make your code easier to understand, but it also makes it more maintainable and reusable. In this post, we’ll explore how to use pdoc to generate documentation for your Python code.
Apache Cassandra Compaction
·6 mins
Introduction # Apache Cassandra is a highly scalable and distributed NoSQL database that is designed to handle large volumes of data across multiple commodity servers. One of the key features of Cassandra is its ability to automatically manage data distribution, replication, and consistency across a cluster of nodes, providing high availability and fault tolerance.
Python Singleton Pattern implementation with LRU
Hello and happy new year! ๐Ÿฅณ๐Ÿ™Œ Iโ€™ve made a video on how to implement the singleton pattern in Python using the LRU cache.
envsubst – Substitute Variables for Environment Variables
Hi ๐Ÿ‘‹, Introduction # In this short article I want to showcase a nice and useful Linux command.
Kafka Connect MongoDB Sink Connector
Hello ๐Ÿ‘‹, In this article weโ€™re going to build a data pipeline that connects Kafka to MongoDB. In short, weโ€™re going to add a MongoDB Sink connector to a Kafka Connect cluster and run a MongoDB instance in Docker to test the connector.