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 | |
| def get_uuid(nickname: str) -> str: | |
| """ | |
| Response Body: | |
| { |
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
| final float SCALE = 25; | |
| int frame = 0; | |
| float B = 0; | |
| void setup() { | |
| size(500,500,P3D); | |
| background(0); | |
| } |
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
| use std::mem; | |
| fn print_mem_bytes(ptr: *const u8, limit: usize) { | |
| for i in 0..limit as isize { | |
| print!("{:02x} ", unsafe { *ptr.offset(i) }); | |
| } | |
| println!(); | |
| } | |
| fn main() { |
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
| # pip install pygame pywin32 pytesseract | |
| # tesseract binary: https://digi.bib.uni-mannheim.de/tesseract/ | |
| from queue import Queue | |
| from threading import Thread | |
| import pygame | |
| import win32api | |
| import win32con | |
| import win32gui |
OlderNewer