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 26 (1,140,583 XP) | |
C lvl 17 ( 496,910 XP) | |
Python lvl 13 ( 313,180 XP) | |
Markdown lvl 9 ( 130,677 XP) | |
C++ lvl 6 ( 69,055 XP) | |
JavaScript lvl 3 ( 24,127 XP) | |
meson lvl 3 ( 18,466 XP) | |
Vue lvl 3 ( 18,024 XP) | |
Shell Script lvl 2 ( 13,352 XP) | |
CMake lvl 2 ( 11,524 XP) |
NewerOlder