A sudoku solver that fills it out for you on sudoku.com

Built with Prerequisites Usage Clone the repository: git clone https://github.com/nexxeln/sudoku.com-solver Create a new virtual environment: python -m venv venv Activate the virtual environment Windows: venv/Scripts/activate Linux: venv/bin/activate MacOS: venv/bin/activate Install the dependencies: pip install -r requirements.txt Go to sudoku.com and create a new game Run the program: python sudoku.py Enter all the rows of the puzzle in the terminal, for the empty cells enter 0 Click on the first cell of the puzzle within 10 seconds to start solving Do […]

Read more

Reporting fake channels fucking Russian

І так це спеціальний скріпт, який підключається до вашого телеграма і дивитися повідомлення з згадкою – фейк каналів, каналів де за мітки платять і автоматично відправляє репорт на ці канали. Ви просто запускаєте і воно в фоновому режимі дудосить СЕПАРАВСЬКІ канали. Також хочу повідомити що ваші данні нікуди не відправляються, ні номер телефону, ні пароль, нічого. Все локально і ви все можете відслідкувати в файлі або в консолі. Також ті хто шарять код можуть побачити що в коді не використовується […]

Read more

Transfer-Controlled Algorand Standard Asset

Reference implementation for a Transfer-controlled Algorand Standard Asset(TC-ASA), which extends an ASA to provide custom or more granular control aroundtransfer, mint and burn operations. It implements the following: Setting a “global freeze” flag, that prevents all token transfers. Individually whitelisting/locking users. Can be extended to implement any form of control over the transfer of the token,e.g.: Requiring the payment of royalties when transferring the token. Restricting the minimum or maximum balance per user, the overall number oftoken holders, etc. Implementing […]

Read more

Combined Disc mod for Gran Turismo 2

Gran Turismo 2, other than being one of the more fondly remembered installments of the franchise, has one unique aspectnot seen in any other Gran Turismo to date — it’s split between two discs.This modification combines both discs for an ultimate and complete version of Gran Turismo 2. Due to the nature of this mod, the setup process is slightly more involved than the usual: Download the setup script. Install Python 3.10.0 or newer. If you don’t have it installed […]

Read more

Docker builds in CircleCI: go faster, and support newer Linux versions

If you’re using CircleCI to build your Docker images, you might find yourself using an old version of Docker without realizing it. That means: Slower builds. Lack of support for newer Linux distributions. Let’s see why, and how to fix it. BuildKit makes Docker builds faster Newer versions of Docker add support for BuildKit, a new build backend that among other features (build secrets, and local caching which can speed up builds during development) also can make your production builds […]

Read more

Simple Python script to download images and videos from public subreddits without using Reddit’s API

Download images and videos from any public subreddit without using Reddit’s API Made with ❤ by Nico This script allows you to download directly linked images, videos and gifs from any public subreddit WITHOUT USING REDDIT’S API. How is this achieved? By using the very powerful PushShift API. This is important for a number of reasons: With Reddit’s api, you have a limit of 1000 posts, pushshift is unlimited. In my experience, pushshift is just faster. You don’t need a […]

Read more

A LostArk Queue status overlay that displays information about your queue while tabbed out of the game

A simple overlay for LostArk that shows information about your queue status and time left while tabbed out of the game. Since we currently do not have any APIs from the game itself, the pipeline implemented is pretty much this: Extracting and processing a frame through win32 libraries, then manipulating the output with opencv to feed the resulting image into Tesseract (OCR) that will perform an Image-To-Text conversion and return our actual queue time. All of that is implemented into […]

Read more

Quickstart site to build out a lambda function

Create a mini Spring initializer for AWS Lambda functions. Backend service Builds a layer for the different cookiecutter templates. (NOTE: This will be limited for what we can bundle) Webservice includes a number of parameters for the aws lambda powertools templates: name: defaults to hello-world, is the name of the project runtime: defaults to python3.9, is the language runtime version (could also support typescript via nodejs) architecture: defaults to x86_64, is the CPU architecture (can also be arm64) memory: defaults […]

Read more

A Scalable Quantum Benchmark Suite

SupermarQ is a suite of application-oriented benchmarks used to measure the performance of quantum computing systems. Installation The SupermarQ package is available via pip and can be installed in your current Python environment with the command: Using SupermarQ The benchmarks are defined as classes within supermarq/benchmarks/. Each applicationdefines two methods; circuit and score. These methods are used to generate the benchmarking circuit and evaluate its performanceafter execution on hardware. The quantum benchmarks within SupermarQ are designed to be scalable, meaning […]

Read more

Reproducible experiments with 3D printers

Make it better, with data. And confidence. This repo is a collection of scripts and notes for running reproducible experiments with printers. You can run a single gcode action a whole bunch of times, conveniently, and record console outputs of interest from it. You can run one of multiple pre-defined tests, or add your own in Python. You can compare the before-and-after results from a test, with statistical confidence, to see if what you did… did anything at all. Conveniently, […]

Read more
1 201 202 203 204 205 914