Celebración del cumpleaños 80 de mi papá
12 de abril de 2025 Familia y amigos,Gracias, de corazón, por estar aquí hoy. Su presencia hace aún más especial esta celebración: los maravillosos 80 años de vida de mi…
My blog
12 de abril de 2025 Familia y amigos,Gracias, de corazón, por estar aquí hoy. Su presencia hace aún más especial esta celebración: los maravillosos 80 años de vida de mi…
Introduction Find below the easiest way I have found so far to make a circle path in G-Code. The coordinates below are absolute, we are considering we start from origin…
Introduction Below we have a nice decoupled Service Factory example in Java, using Spring Boot. What is very cool about below approach is that you can add as many service…
Introduction It was September 2022, Vic and I decided to start working on a Halloween project. It would be a lot of fun for both of us. We’d have around…
Introduction It’s common task you have to control a 12V LED strip (consuming more than some milliamps) using a 5V/3.3V signal from a microcontroller. It is not possible to drive…
Introduction In MySQL, you can configure the host(s) from which your database allows connections. This is an important security feature at connection level. In this post, you can see how…
#!/usr/bin/python3 # Sample # python3 palindrome.py "Dabale arroz a la zorra el Abad" # python3 palindrome.py "Anita lava la tina" import sys def checkPalindrome(str): str = str.replace(" ", "") if…
Introduction So, I got my new minirouter, a Bosch GKF 550, which is a 550 watts trim router, mainly designed to be used as a free hand device. Nevertheless, I…
So, I finally got the chance to find out how to get rid of the annoying Jenkins message “It appears that your reverse proxy set up is broken”, in my…
Fetch your java.util.List's next element and restart from the first element automatically, when no more elements left available.