Python Tutorial
How To Detect Technology Used In A Website
There are some website tools that provide the functions to let you detect the technologies that are used in a target website, but those tools are not free. If you know a little more about python language, you can use the python builtwith module to implement the same function. This article will tell you how …
Pygame Rectangle Collision Example
This article will show you an example of how to detect the collision between rectangles and points in pygame. You can use the method pygame.Rect.collidepoint(point) to detect whether a rectangle collides a point in pygame, you can use the method pygame.Rect.colliderect(rectangle) to detect whether a rectangle object collides another rectangle object in pygame.