Realtime CPU monitor using PyGame
Here’s a realtime CPU monitor using PyGame: ''' Author: https://github.com/Abdur-rahmaanJ Instructions: pip install psutil hooman==0.3.6 ''' from hooman…
Abdur-Rahmaan Janhangeer
Chef
7 articles in this category.
Here’s a realtime CPU monitor using PyGame: ''' Author: https://github.com/Abdur-rahmaanJ Instructions: pip install psutil hooman==0.3.6 ''' from hooman…
Abdur-Rahmaan Janhangeer
Chef
""" Author: Abdur-Rahmaan Janhangeer Github: https://github.com/Abdur-rahmaanJ Instructions: pip install hooman """ from hooman import Hooman import pygame from …
Abdur-Rahmaan Janhangeer
Chef
When building a tile-based game, you constantly need to translate between two different worlds: 1. Screen Space: The actual pixel coordinates on your monitor (e.g., the mouse is a…
Abdur-Rahmaan Janhangeer
Chef
In game development, Procedural Generation is the technique of using algorithms to create game content automatically rather than manually. While complex games like Minecraft…
Abdur-Rahmaan Janhangeer
Chef
Whether you’re building a classic RPG or a puzzle game, tile-based rendering is one of the most efficient ways to create large, structured game worlds. Instead of drawing every pix…
Abdur-Rahmaan Janhangeer
Chef
Have you ever wondered how vector drawing tools allow you to click and create complex shapes? In this tutorial, we will build a simple Polygon Drawer using Processing.py. This proj…
Abdur-Rahmaan Janhangeer
Chef
In creative coding, adding a “trail” effect can transform a simple animation into something dynamic and visually appealing. A trail is essentially a visual history of where an object has been. In t…
Abdur-Rahmaan Janhangeer
Chef