A tool aimed at enhancing the experience when playing the game on linux through proton

A tool aimed at enhancing the experience when playing the game on linux through proton. Warning This tool is based on patching the game executable through hex-edits. However it is done in a safe and non-destructive way, that ensures the patched executable is never run with EAC enabled. Use at your own risk! Features set custom frame time limits (e.g. 30, 90, 165, …) disable black borders when using resolutions with an aspect ratio other than 16:9 (e.g. ultrawide). vigniette […]

Read more

A simple vault structure using OP_CTV

This repository demonstrates an implementation of simple, “single-hop” vaultsusing the proposed OP_CHECKTEMPLATEVERIFY opcode. OP_CTV allows the vault strategy to be used without the need to maintain criticalpresigned transaction data for the lifetime of the vault, as in the case of earliervault implementations. This approach is much simpler operationally, since all relevantdata aside from key material can be regenerated algorithmically. This makes vaultingmore practical at any scale. The code included here is intended to be approachable and easy to read, thoughit […]

Read more

The Python Fuzzer that the world deserves

pip3 install frelatage Current release : 0.0.2 The Python Fuzzer that the world deserves Installation    |    How it works    |    Features    |    Use Frelatage    |    Configuration Frelatage is a coverage-based Python fuzzing library which can be used to fuzz python code. The development of Frelatage was inspired by various other fuzzers, including AFL/AFL++, Atheris and PyFuzzer.The main purpose of the project    

Read more

GUI/CLI Downloader App

NH-DL is (preferably) a GUI utility for downloading from a very special website.Speaking of this website, this is the perfect time for a… DISCLAIMER This tool, that is, NH-DL, is intended for use by adults who are willingly submittingthemself to the possibility that they could potentially view adult (R18) content. NH-DL is (preferably) a GUI, as well as a command-line downloading utility that offersthe ability to download from the website NHentai without an account, and with relative easeby simply typing […]

Read more

A Legal AI Benchmark Dataset from Korean Legal Cases

A Legal AI Benchmark Dataset from Korean Legal Cases by LBox Authors Updates Mar 2022: We release lbox_open_v0.1! How to use the dataset We use datasets library from Hugging Face. # !pip install datasets from datasets import load_dataset # casename classficiation task data_cn = load_dataset(“lbox/lbox_open”, “casename_classification”) # statutes classification task data_st = load_dataset(“lbox/lbox_open”, “statute_classification”) # case summarization task data_summ =

Read more

Counting With Python’s Counter

Counting several repeated objects at once is a common problem in programming. Python offers a bunch of tools and techniques you can use to approach this problem. However, Python’s Counter from collections provides a clean, efficient, and Pythonic solution. This dictionary subclass provides efficient counting capabilities out of the box. Understanding Counter and how to use it efficiently is a convenient skill to have as a Python developer. In this video course, you’ll learn how to: Count several repeated objects […]

Read more
1 244 245 246 247 248 978