This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REGEDIT4 | |
[HKEY_CURRENT_USER\Software\Wine\DllOverrides] | |
"*mfc42"="native" | |
"*mfc42u"="native" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export WINEPREFIX=~/.local/share/wineprefixes/GTAIV | |
export WINEARCH=win32 | |
winepath=$(readlink -f ~/.local/share/wine/4.11_win32) | |
if [ ! -d $winepath ]; then | |
echo "Could not find wine-4.11 installation at $winepath, quitting..." | |
exit 1 | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
from mss import mss | |
from PIL import Image | |
from pynput.keyboard import Key, Controller | |
keyboard = Controller() | |
sct = mss() | |
# check for any "brown" pixel | |
def check_tree(pixels, x, y): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"app": { | |
"version": "7.5.1", | |
"versionCode": "267", | |
"link": "https://github.com/topjohnwu/Magisk/releases/download/manager-v7.5.1/MagiskManager-v7.5.1.apk", | |
"note": "https://raw.githubusercontent.com/topjohnwu/Magisk/7db523071d662dcc8eb187e3cbae141c716ba045/app/src/main/res/raw/changelog.md" | |
}, | |
"uninstaller": { | |
"link": "https://github.com/topjohnwu/Magisk/releases/download/v20.4/Magisk-uninstaller-20200323.zip" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import urllib.request | |
from urllib.parse import unquote | |
from bs4 import BeautifulSoup | |
def decrypt(a: str): | |
a = unquote(a.replace("_XDDD", "")) | |
b = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os | |
import argparse | |
rootdir = "/var/log/pve/tasks" | |
logfiles = { | |
"active": [], | |
"index": [] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
__author__ = "xDivadz (David Sn)" | |
__license__ = "GPLv3" | |
# standardowe biblioteki Python | |
import urllib.request | |
import datetime | |
import json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export WINEPREFIX=/home/$USER/.local/share/MultiTheftAuto | |
export WINEARCH=win32 | |
wineboot -u | |
hexdump -n 4 -e '4/4 "%08X" 1 "\n"' /dev/urandom > $WINEPREFIX/drive_c/.windows-serial | |
winetricks -q d3dx9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import base64 | |
import json | |
import requests | |
class TTSException(Exception): | |
def __init__(self, code: int, message: str, status: str): | |
self.code = code | |
self.message = message |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import nbt | |
import os | |
import requests | |
import shutil | |
import uuid | |
uuids = {} | |
for file in os.listdir("world/playerdata"): | |
if file.endswith(".dat"): |