The firmware that runs on the Brogrammer Keyboard

The package contains the firmware that runs on the Brogrammer Keyboard v1.0 See https://imgur.com/a/oY5QZ14 This keyboard runs a specially-compiled verison of Micropython that includes a module for HID keyboard/mouse emulation. Editing/Loading The Firmware In order to edit/program the firmware, the Thonny IDE is used. After launching Thonny, cilck the interpreter selector in the bottom right and switch to Raspberry Pi Pico. Press the stop icon to stop the currently-running firmware and bring up the interpreter. If the    

Read more

All action icons for each class/job are blended together to create new backgrounds for each job/class icon

All action icons for each class/job are blended together to create new backgrounds for each job/class icon! I used python to connect to xivapi to download all class and job icons as well as all the action icons for each job or class. From there, I used the python pillow library to blend each job’s respective actions together. These blended backgrounds are in icons_blended_hd/actions_only (low res versions exist in icons_blended/actions_only). I also overlayed each class or job’s icon ontop of […]

Read more

Created a product review summarizer which clustered thousands of product reviews and summarized them into a maximum of 500 characters

Version 1.0.0 A quick guide on installation of important libraries and running the code. The project has three .ipynb files – Data Scraper.ipynb, cosine-similarity-wo-tf-idf.ipynb, and cosine-similarity-w-tf-idf.ipynb. Data Scraper For the Data Scraper python script, we need to import the following three libraries – requests, BeautifulSoup, and pandas. The installation process can be viewed by clicking on the respective library names. Splash In this project, instead of using the default web browser to scrape data, we have created a splash container […]

Read more

A Python App generate ,save , find and delete passwords

This app can generate ,save , find and delete passwords. In the StartUp() Function , there are three buttons to choose from : Generate password Find password Delete password Then, when you select 1 of these buttons, a function should run which name is the button followed by the order , for example : Generate1 or Find_It2 The numbers represent the order of the functions, for example Generate1 is where you provide the app and the password, Generate2 is the […]

Read more

An advanced monster manual for Tower of the Sorcerer

This is an advanced monster manual for Tower of the Sorcerer mods. Users can get a plenty of extra imformation for decision making when playing tower of the sorcerer mods. Install and run python setup.py develop python main.py 这是一个高级的魔塔游戏怪物手册。用户可以从这个工具中获取大量的额外信息,以辅助魔塔游戏中的决策。 安装与使用 python setup.py develop python main.py GitHub View Github    

Read more

Breakout-KD – A fantastic game created in python with pygame

About This Game Breakout-KD is a fantastic breakout game. It’s a python based game officialy made by me on december holiday. This game works on Windows 7/8/10/11 & all windows platforms. REQUIREMENTS : First make sure new version Python installed in your system I made this game on pygame module. So, Install pygame on your system pip install auto-py-to-exe Screenshots Instalation & Usage If you have installed git on your system, you can clone this git clone https://github.com/rifkykd/Breakout-KD cd Breakout-KD […]

Read more

Vector space based Information Retrieval System for Text Processing – Information retrieval

Sequence of operations Install Requirements Add given wikipedia files to the corpus directory. Download glove.6B.100d.txt dataset (Ignore if already present) and place it in the project root directory. Run construct_index.py Run construct_index.py –zoned_index True Run trim_embeddings.py Run test_queries.py Run test_queries.py –score_title True Run test_queries.py –expand_query True Installing Requirements: pip install -r requirements.txt corpus Contains the files to be indexed. Add files directly to this directory. Do not create subdirectories.For this assignment, we have used the following files present in the […]

Read more

HammerV2 is some DDoS tool that has been remaked by iFanpS & NumeX

HammerV2 is some DDoS tool that has been remaked by iFanpS & NumeX Me & NumeX remake this DDoS tool because the old version has been malfunction or cannot be use. Me implement some code in here like new argument and on attack line. Added logs when the host u attack is down. elif requests.head(f”http://{host}”).status_code != 200: with open(“Down.txt”,”a”) as dw: dw.write(f”{host}:{port} has been downed by this tool on Day : {times[0]}, Month : {times[1]}:{times[2]}, Time : {times[3]}, Year : […]

Read more

Twitter sentiment analysis for india’s top online retailers(2019 to 2022)

Twitter sentiment analysis for india’s top online retailers(2019 to 2022) Project Overview : Sentiment Analysis helps us to identifies and extracts subjective information from the user experience. In this project we are Collecting India’s biggest Online retailers tweets from twitter and analysing the positive and negative tweets. This model help to find out the positive and negative tweets and business developments. This model has the roc-auc-score of 97%. GitHub View Github    

Read more
1 45 46 47 48 49