Python News: What’s New From December 2021?

In December 2021, the fourth Python steering council was elected, as usual with a mix of new and returning members. Python’s release-cycle circle of life kept spinning, with new iterations of both Python 3.10 and the upcoming Python 3.11 released. At the same time, the popular Python 3.6 reached end-of-life and will no longer be supported. Amid this flurry of activity, developers from all over had some fun over the holidays by solving the annual Advent of Code puzzles. Let’s […]

Read more

AI Face Mesh: A simple face mesh detection program based on Artificial intelligence

AI Face Mesh: This is a simple face mesh detection program based on Artificial Intelligence which made with Python. It’s able to detect 468 different landmarks on faces. Outcome: Watch the Outcome. What Have I Done: I’ve made this face mesh detection program using Python. I’ve used OpenCV, MediaPipe and Math module for made this program. OpenCV is a library used for computer vision applications. With help of OpenCV, we can build an enormous number of applications that work better […]

Read more

PyQt Custom Frameless Main Window (Enable to move and resize)

PyQt Custom Frameless Main Window (Enable to move and resize) Requirements PyQt5 >= 5.8 Setup pip3 install git+https://github.com/yjg30737/pyqt-custom-frameless-mainwindow.git –upgrade Example Code Sample from PyQt5.QtWidgets import QApplication from pyqt_custom_frameless_mainwindow import CustomFramelessMainWindow if __name__ == “__main__”: import sys app = QApplication(sys.argv) example = CustomFramelessMainWindow() example.show() app.exec_() GitHub View Github    

Read more

A Libgen Non-Fiction/Sci-tech store plugin for Calibre

A Libgen Non-Fiction/Sci-tech store plugin for Calibre Installation Download the latest zip file release from here Open Calibre Navigate to Preferences -> Plugins (in the advanced section) -> Load Plugin from File and select the zip file you downloaded. Restart Calibre Usage Use p%NUM% at the end of the query in Calibre Get books G gui to set a specific libgen output page offset (script implies 25 entries per page this also may suppress or alter other store plugins output): […]

Read more

A simple chat api that can also work with ipb4 and chatbox+

API for chatting that can work on its own or work with Invision Community and Chatbox+. You are also welcome to create frontend for this API. eg: Website Application User management 1 to 1 Conversation Group Conversation SwaggerApi Documentation Coming soon… Contributors Contributors are welcome to help with the project or create new features. But that has also work with ipb4 and chatbox+ GitHub View Github    

Read more

TikTok Auto Claimer Leaked By bazooka#0001

Zues Auto Claimer Leaked By bazooka#0001 put proxies in prox.txt put ssid in sid.txt put all users you want to target in user.txt for the login just type anything the login doesnt work How To Get ssid to get ssid download memu and http tool kit open memu and download tiktok now make a tiktok account or login to on and open http tool kit the type mobile click “android device via adb” then look for something like this /passport/account/info/v2 […]

Read more

JWT Key Confusion PoC (CVE-2015-9235) Written for the Hack the Box challenge – Under Construction

Written for the Hack the Box challenge – Under Construction This script performs a Java Web Token Key Confusion Attack (CVE-2015-9235). To perform the attack it is required that the attacker know the public key which the server will use to verify the signature as well as the server being configured to use the HS256 algorithm. Because HS256 is a symmetric-key algorithm (the same key is used to sign and verify the message), we can use the public key to […]

Read more
1 278 279 280 281 282 936