An optimal player for Wordle. Based on a rough understanding of information theory

Just for fun, my attempt at making an optimal player for Wordle. Based on a rough understanding of information theory, and the idea that the best guess for a given turn is the one that gives you the most information. Usage wordle.py will feed you the guesses for a game of Wordle. If you run python wordle.py, you’ll be launched into an interactive session, where the program outputs guesses and you just need to give it the outputs of each […]

Read more

(4Feb 2022) program detects wifi saved passwords in your ROM

Requirements : python 3.9.2 and higher (4Feb 2022) program detects wifi saved passwords in your ROM First of all you need open config.txt file and change first line : codec(utf-8 or cp866) depends on your PC and second line , it is language : Russian or English depends on what language your cmd uses. Warning : don’t make space between lines in config file ,please . Unpack zip file in comfortable folder for you . enter in this folder with […]

Read more

Simple Brawl Stars v25.107 server emulator written in Python

Simple Brawl Stars v25.107 server emulator written in Python. Requirements: Python 3.7 or higher tinydb Running the server In a terminal, type py main.py Configuring the client app To connect to your server, a patched client is required.Download this base APK (most likely won’t work on Android 10+) and change the IP in libgg.config.so Special thanks Client Help If you found a way to replace frida gadget (libgg.so) without any errors, please, text me in dm: https://t.me/shark01d GitHub View Github […]

Read more

Github action for automatically determine the version for next release by using repository tags

This action will automatically determine the version for next release by using repository tags. For develop releases: .-dev (e.g 2.0-dev0, 2.0-dev1), for official releases: . (1.0, 2.0, 2.1). Action Inputs github_token: Token to get tags from the repo. Pass in using ‘secrets.GITHUB_TOKEN’. mode: Mode for next version calculation. Default: ‘dev’. Available options: dev: increment the ‘dev’ version (ignoring commit message) e.g. 1.0-dev1, 1.0-dev2. official search the commit message for hashtags: #major – for major version (e.g 2.0), #patch – for […]

Read more

Fuzzy Retroarch thumbnail downloader

Fuzzy Retroarch thumbnail downloader In Retroarch, when you use the manual scanner to get non-standard games or hacks, thumbnails often fail to download. This program, for each game label on a playlist, downloads the ‘most similar’ image, and creates a symlink (linux) or copy (windows) to display the image in retroarch. It has several options to fit unusual game names, but you can just run it. It will ask for the CFG, playlist and system if they’re not provided. Example: […]

Read more

WORDLE clone for Adafruit Clue

This project is a clone of the very popular word solving puzzle game Wordle; made for the Adafruit Clue hardware running Circuit Python 7.x.x. (Clue board: https://www.adafruit.com/product/4500) Custom Keyboard Hardware: https://github.com/MichaelLacock/Open-Blue *** Note that you may need to manually re-add the libraries, there really isn’t a good way to re-package the required libraries. *** KeyBoard Driver library: https://github.com/arturo182/arturo182_CircuitPython_BBQ10Keyboard *** Circuit Python for CLUE: https://circuitpython.org/board/clue_nrf52840_express/ *** Get 7.x Bundle here: https://circuitpython.org/libraries Setup:Once Circuit Python 7.x.x is up an running, just drag […]

Read more

Data web app sobre Pokémon TCG que desarrollo durante transmisiones de Twitch, 2022

This application aims to simulate the hand of a Pokémon TCG player.We want to help Pokémon TCG players to understand the distribution of cardsof their decks and to simulate starting hands + prizes + mulligans. This is a work in progress and I’m currently streaming the development ofthis tool every friday at 9 PM (🇲🇽) onhttps://twitch.tv/fractalfox_. To do list: Convert deck fortmat from PCTGO to a processable list of information Search card info through the Pokémon TCG API Display cards […]

Read more

The Security-Hardened Linux kernel and modules; repackaged for Fedora Linux

This repository automatically downloads and extracts the latest hardened linux kernel from the Arch Linux repositories (https://archlinux.org/packages/extra/x86_64/linux-hardened). The kernel and all of its associated files are then packaged by the HardHat project’s Copr repository (https://copr.fedorainfracloud.org/coprs/noatsecure/HardHat), making it available to Fedora Linux users. GitHub View Github    

Read more

Helperpod – A CLI tool to run a Kubernetes utility pod with pre-installed tools that can be used for debugging/testing purposes inside a Kubernetes cluster

Helperpod is a CLI tool to run a Kubernetes utility pod with pre-installed tools that can be used for debugging/testing purposes inside a Kubernetes cluster. Pre-requisites Docker (For building and pushing the image) kubectl (Or the kubeconfig file either located in default ~/.kube/config path, or an environment variable named KUBECONFIG pointed to a specific config file path) Usage Install the required libraries python3 -m pip install –user -r requirements.txt Configure container registry information, this can be either done via manually […]

Read more
1 237 238 239 240 241 927