A CLI Password Manager made using Python and Postgresql database

A CLI Password Manager made using Python and Postgresql database. Quick Start Guide First Clone The Project git clone https://github.com/Imira-S-R/PasswordManagerCLI Change The Direcory cd PasswordManagerCLI Run setup.py for first time users python setup.py After that run main.py python main.py About This is a simple & free password manager made using python that you can use to store    

Read more

Boilerplate template for the discord-py-interactions library

Boilerplate template for the discord-py-interactions library Currently, this boilerplate supports discord-py-interactions==3.0.2 but will be updated for future version later on. To switch to a different version, check the branches main.py: A custom, dynamic cog loader is present. Write a cog following the template.py in /cogs/, place it in the /cogs/ directory, and it will automatically be loaded when the bot boots. Utilizes the logging library and implements an easy to use custom logger and formatter. All you need to do […]

Read more

Ensembling Off-the-shelf Models for GAN Training

video (3m) | website | paper Can the collective knowledge from a large bank of pretrained vision models be leveraged to improve GAN training? If so, with so many models to choose from, which one(s) should be selected, and in what manner are they most effective? We find that pretrained computer vision models can significantly improve performance when used in an ensemble of discriminators. We propose an effective selection mechanism, by probing the linear separability between real and fake samples […]

Read more

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
1 331 332 333 334 335 943