METU Auto Capacity Checker

class_code string Class code e.g. 201 (Circuit 1) department_code string Department code e.g. 567 (Electrical Electronics Engineering) driver_path string Chromedriver or Firefox Driver path refresh_rate int Refresh rate for checker in seconds e.g. 5 section_no int Section no e.g. 1 semester string Semester code e.g. 20212 (2021-2022 Spring) voice_feedback bool True if you want voice feedback. Tested only on macOS    

Read more

Jittor implementation of Vision Transformer with Deformable Attention

This repository contains a simple implementation of Vision Transformer with Deformable Attention [arXiv]. Currently, we only release the code of models and the training scripts are under development including advance data augmentations and mixed precision training. Pytorch version: Github Dependencies NVIDIA GPU + CUDA 11.1 + cuDNN 8.0.3 Python 3.7 (Recommend to use Anaconda) jittor == 1.3.1.40 jimm TODO Training scripts with advance data augmentations. Citation If you find our work is useful in your research, please consider citing: @misc{xia2022vision, […]

Read more

An asynchronous API wrapper for the DhravyaAPI

DhravyaPy DhravyaPy works with Python 3.8+ Features Easy to use OOP design Get random jokes Get random topics Generate images and memes Installation To install the library through PyPi use:- To install the development version(using git):- pip install git+https://github.com/27Saumya/dhravyapy Examples To get a random joke import dhravyapy import asyncio async def main(): joke = await dhravyapy.Fun().joke() print(joke) if __name__ == “__main__”: loop =    

Read more

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
1 228 229 230 231 232 942