My blog

2023

Logging with Python

5 minute read

Logging is an essential part of any software development project. It allows developers to monitor and troubleshoot code behavior, track errors, and exception...

Echo bot to test Bot Framework

2 minute read

This article describes how to build a first bot with the Bot Framework SDK for Python. Additionally, I will test the bot using the Bot Emulator. In this exam...

Creating environment variables in Python

2 minute read

Introduction Here is a step-by-step guide to creating a Python application, including its environment variables. It is particularly useful when we need to ke...

Back to Top ↑

2022

My MacOS configuration

3 minute read

Each time I reinstall my Mac OS system I have to do the same installation steps.

Replacing loop with best practices

7 minute read

Loops are very expensive (slow) in python, there is why we must avoid them as possible. Instead of them let us think in programming in a functional way. That...

Back to Top ↑