Apache Airflow with LocalStack

Introduction Usually, when we start working on a new integration where it is necessary to connect to AWS services in the early stages of development, it is easier and faster to work only locally. For this, we can make use…

Damavis at Mobile World Congress 2024

Introduction The largest international event on technology returns to Fira de Barcelona in a new edition that took place from February 26th to 29th in Barcelona. Damavis has been one of the 45 Spanish companies selected by red.es to be…

Introduction to Pycharm Templates

Introduction PyCharm is an IDE developed by JetBrains for Python. As an IDE, its goal is to provide the programmer with a set of features that make code development in this language more efficient. For example, it automatically writes import…

Overloading functions in Python

Introduction Function overloading is a very interesting tool that allows several different functions to share the same identifier, improving the readability and interpretability of our code in some scenarios. This tool is available by default in many of today’s most…

Sudoku Solving Algorithm

Introduction This post will deal from another point of view with one of the most popular games that can be played on paper, the Sudoku. The objective will be to explain an algorithm for solving it, together with the code…

Introduction to fuzzy linear programming

Introduction In two previous posts we introduced the basic concepts of Fuzzy Logic and linear programming with the Simplex method. As promised, in this post we are going to join these two concepts and introduce fuzzy linear programming. In many…