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 os | |
import pathlib | |
import zipfile | |
ZIP_COMPRESS_TYPE = zipfile.ZIP_DEFLATED | |
ZIP_ARCH_EXTENSION = ".zip" | |
def zip_sanitizer_filter(zipinfo: zipfile.ZipInfo): |
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
// ==UserScript== | |
// @name Proxitok | |
// @match https://www.tiktok.com/* | |
// @grant none | |
// @version 1.0 | |
// @run-at document-start | |
// @author WillyJL | |
// @description Redirect tiktok.com to proxitok | |
// ==/UserScript== |
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
from imgui.integrations.glfw import GlfwRenderer | |
import OpenGL.GL as gl | |
import imgui | |
import glfw | |
# Example usage | |
if __name__ == "__main__": | |
imgui.create_context() | |
window = impl_glfw_init() # Get this here https://github.com/pyimgui/pyimgui/blob/24219a8d4338b6e197fa22af97f5f06d3b1fe9f7/doc/examples/integrations_glfw3.py |
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 imgui | |
filled_icon = "" | |
empty_icon = "" | |
def ratingwidget(id: str, current: int, num_stars=5, *args, **kwargs): | |
value = current | |
imgui.push_style_color(imgui.COLOR_BUTTON, 0, 0, 0, 0) | |
imgui.push_style_color(imgui.COLOR_BUTTON_ACTIVE, 0, 0, 0, 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
import threading | |
import asyncio | |
import typing | |
import time | |
loop: asyncio.BaseEventLoop = None | |
thread: threading.Thread = None | |
done_callback: typing.Callable = None | |
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 queue as _queue | |
import threading | |
import typing | |
import time | |
fn_queue: _queue.Queue = None | |
thread: threading.Thread = None | |
def setup(): |
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
from PIL import Image, ImageSequence, UnidentifiedImageError | |
import OpenGL.GL as gl | |
import pathlib | |
import imgui | |
_dummy_texture_id = None | |
def dummy_texture_id(): | |
global _dummy_texture_id |
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 pathlib | |
import typing | |
import string | |
import imgui | |
import sys | |
import os | |
dir_icon = "[D] " # Use " " if you have setup Material Design Icons | |
file_icon = "[F] " # Use " " if you have setup Material Design Icons | |
up_icon = "Go Up" # Use "" if you have setup Material Design Icons |
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
from imgui.integrations.glfw import GlfwRenderer | |
import OpenGL.GL as gl | |
import traceback | |
import threading | |
import asyncio | |
import aiohttp | |
import imgui | |
import glfw | |
import sys |
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
Total XP lvl 27 (1,232,355 XP) | |
C lvl 18 ( 538,639 XP) | |
Python lvl 14 ( 316,933 XP) | |
Markdown lvl 9 ( 137,399 XP) | |
C++ lvl 7 ( 88,634 XP) | |
Vue lvl 4 ( 26,509 XP) | |
JavaScript lvl 3 ( 24,816 XP) | |
meson lvl 3 ( 19,345 XP) | |
Shell Script lvl 3 ( 14,678 XP) | |
TypeScript lvl 2 ( 14,007 XP) |
NewerOlder