Creating a Zelda style game in Python
A Zelda-style RPG in Python that includes a lot of elements you need for a sophisticated game like graphics and animations, fake depth; upgrade mechanics, a ... (more…)
Read more »
Today, I wanted to create a basic locking mechanism in Python to prevent certain commands/functions from running concurrently.
I have an script that runs inside of a CI/CD pipeline but it can also be triggered manually. The problem is that certain command… Read more