A test microblog project created using Django 4.0

This is a test microblog project created using Django 4.0. But donโ€™t worry this is a fully working project. There is no super-amazing front-end, just back-end codes with minimal html ๐Ÿ™‚ Now you can access the application at https://localhost:8005//blogs and the admin siteat https://localhost:8005/admin. Stack and version numbers used: Name Version Django 4.0 Python 3.10 Folder structure

Read more

Currently proof-of-concept with python

Currently proof-of-concept This project is a small POC plugin for launching dumpulator emulation within IDA, passing it addresses from your IDA view using the context menu. Find the amazing dumpulator project by @mrexodia at link Configure You can now go to Edit -> Plugins -> Dumpulate and this will prompt you to select your dump file Currently only allows you to: For the example file found here you can Set your call address and choose a number of arguments to […]

Read more

A python script created for Log4j

This python script was created while I was working on the TryHackMe room for Log4j. While this was created with default variables for this room, I used argparse to make the script versatile for a GET request. All necessary varaibles can be changed with different options, see -h for more information. Only my script is hosted here, this requires two other downloads to run properly which I will give links for, but setting up the folders the way I did […]

Read more

Surveillance and notification system for Raspberry Pi

Surveillance and notification system for Raspberry Pi About The surveillance system in this repository is based on the tutorial โ€œHow to Run TensorFlow Lite Object Detection Models on the Raspberry Pi (with Optional Coral USB Accelerator)โ€ by EdjeElectronics. The code in TFLite_detection_webcam.py comes directly from this tutorial but is slightly modified to save images and enable remote execution. GitHub View Github    

Read more

MCTS (among other things) for 2048

2048 Created by Chad Palmer for CPSC 474, Fall 2021 Overview: This is an application which can play 2048 and simulate games of 2048 with a variety of different computational intelligences, the highest performing of which is MCTS. With MCTS with 1000 iterations (./Driver -simulate m 1000 -display), the agent achieves scores comparable to a skilled human player (usually wins, occasionally achieves the 4096 tile). Flat Monte Carlo also works very well. The entire program runs a bit slower than […]

Read more

Demonstrates how to create a tested Python package using the latest Python testing and linting tooling

Example Python project that demonstrates how to create a tested Python package using the latestPython testing and linting tooling. The project contains a fact package that provides a simpleimplementation of the factorial algorithm (fact.lib)and a command line interface (fact.cli). Requirements Python 3.6+. Note Because Python 2.7 support ended January 1, 2020, new projectsshould consider supporting Python 3 only, which is simpler than trying to support both. As aresult, support for Python 2.7 in this example project has been dropped. Windows […]

Read more

CaptchaCracker: an open source Python library that provides functions to create and apply deep learning models for Captcha Image recognition

ํ•œ๊ตญ์–ด ๋ฌธ์„œ Introduction CaptchaCracker is an open source Python library that provides functions to create and apply deep learning models for Captcha Image recognition. You can create a deep learning model that recognizes numbers in the Captcha Image as shown below and outputs a string of numbers, or you can try the model yourself. Input Output Installation pip install CaptchaCracker Dependency

Read more

BMP180 sensor driver for Home Assistant used in Raspberry Pi

Custom component BMP180 sensor for Home Assistant. Copy the content of this directory to your homeassistant config directory: example: ./config/custom_components/dev_747_BMP180/ ##Requirements:Enable I2C communication in Raspberry via raspi-config and install dependencies for handeling I2C communication in Python sudo apt-get update sudo apt-get install python3-smbus python3-dev i2c-tools ##Parameters: i2c_address: I2C address of BMP180 (typical 0x77) i2c_bus_num: I2C bus number (default raspberry = 1) name: custom name of the sensor mode: 0 โ€“ Ultra low power, 1 โ€“ standard, 2 โ€“ high resolution, […]

Read more
1 324 325 326 327 328 935