Python script to organize messy directories

Organize and manage messy directories 🧹 To run the script the script runs with a json file. Inside the json file you can specify the configurations to organize the directory. # config.json { “directory” : { “path”: [“path of directory to organize ex: C:Userstmpts21Desktop”] }, “automate” : [ { “type” : “IMAGES”    

Read more

Python script to telnet into a draytek router and provide the stats for Prometheus

I had a lot of line trouble lately. I knew the router provided the stats but it doesn’t do anything with them. I wanted to visually check the line stats and be able to look as the history of the line.Prometheus and Grafana seemed the best idea as i had these already in use watching my docker container stats. A python script to read the detailed DrayTek router stats. The following stats are recorded and presented as Open Metrics (Prometheus) […]

Read more

Wordle bot – A bot that plays wordle

A bot that plays wordle https://www-cs-faculty.stanford.edu/~knuth/sgb-words.txt I used the dataset above for the bot. It was published by Donald E. Kruth. The main idea the bot uses is by deleting words from it’s word list and then making a random guess. It starts with picking a random word out of 5757 words. Enters it , then using the result it got it eliminates some of the words in the words list and then makes another guess until it founds it […]

Read more

Whatsapp Automation With Python

CONTENTS OF THIS FILE Introduction Requirements Installation Maintainers INTRODUCTION Whatsapp Automation basically provides you with Messages (Personalized/Standard) Media files(image/video) Pdfto send to multiple contacts. The idea for the project was to provide easy ways for people starting their businessesand storing data in excel to reach out to their customers in an easy way.Most people start registration for events/webinars/startups with the help of Googleforms which convert the data into excel sheets.This project helps user to generate personalised messages and reach out […]

Read more

Algorithm to solve Wordle correctly 100% of the time within 6 attempts

© Zulkarnine, 2022. Algorithm to solve Wordle 100% of the time within 6 attempts. You can go ahead and run main.py to run it for all 2315 Wordle words and it solves 100% of them correctly within 6 attempts.Example output: Ran: 2315 games. Solved: 2315/2315 = 100.00% You can also run solver.py to get a sense of how it’s guessing and what is the Wordle game simulation returning. (I.e. the colored blocks) Example output:

Read more

A series of tools used to help event organizers manage participants

This project consists in a set of tools intended to be used in situation of event organization where data manipulation, contact with participants and other logistical tasks need to be automated. A CSV data file is used as a basis for participant information. Modules : CSV reader and processor : anonymization, auto-cleanup, projections, … to be used as data source for other modules (TODO) Automated Protonmail email sender : based on https://github.com/nichcuta/Proton-Mail with scalability improvements Automatic badge generator Python dependencies […]

Read more

Banu Systems Industry Tools in Python

The main goal of this project is to enable co-op industry game play in Star Citizen. As of now there is no easy way to calculate payouts, keep track of refinery jobs, or see how much you owe/are owed. This project looks to take care of that and will evolve as new content is added into the game. *** REQUIREMENTS *** Expandable for salvage Pilots enter raw ore Allow multiple types of ore Allow mining location (planet/moon, closest outpost) (optional) […]

Read more
1 2 3 4 5 6 49