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
·4 mins
Introduction # Idempotency is a crucial property in the world of APIs, ensuring that operations can be applied multiple times without changing the result.
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
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
·2 mins
Hi ๐,
Introduction # In this short article I want to showcase a nice and useful Linux command.