How to add Physic to games with Python and PyMunk 12/03/202212/03/2022pythonprogramming See pymunk [...]
Vagrant – New Dafluffypotato project video 10/03/202210/03/2022pythonprogramming Some chats about new dafluffypotato game project made with pygame: Vagrant. [...]
Left right and justity strings with f-string 08/03/202208/03/2022pythonprogramming Puttin print(f”{name:<20} | {score}” <20 Bob | 10 left >20 Bob | 10 right ^20 Bob | 10 center It means: [...]
How to move the sprite in pygame 06/03/202206/03/2022pythonprogramming A game needs to control collisions among sprites. The Pygame library has support for sprites. A sprite is a two dimensional image. Example of [...]
How to build a Python app with Anvil to get an email when the website is down 04/03/202204/03/2022pythonprogramming This video tutorial shows you how to make this app send you an email when your website is down. Put every 1 hour [...]
How to moveText on the screen with Pygame 03/03/202203/03/2022pythonprogramming This time text not only changes in sequence, but it moves too. The file in the repository is move_text.py https://github.com/formazione/pygame (the repo with [...]
How to make a presentation app with pygame part 1 03/03/202203/03/2022pythonprogramming presentation in pygame [...]
How to create a pdf with pdfkit and make a personalized pdf for our customers 03/03/202203/03/2022pythonprogramming This is a script that will make you create a pdf for each customers with their names. In the next post we will [...]
Froggo Sing n Grapple, made with Pygame, is on Steam 03/03/202203/03/2022pythonprogramming I have made many posts about this game Froggo Swing n Grapple, so I am happy to see that there is a page [...]
Text in sequence on the screen with a Timer in Pygame 02/03/202202/03/2022pythonprogramming pygame text sequence timing on screen [...]