This file contains 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 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 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 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 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 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 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 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 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 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 19 ( 629,329 XP) | |
C lvl 12 ( 258,524 XP) | |
Python lvl 11 ( 195,383 XP) | |
Markdown lvl 6 ( 72,703 XP) | |
JavaScript lvl 3 ( 23,308 XP) | |
Vue lvl 3 ( 18,024 XP) | |
C++ lvl 2 ( 13,534 XP) | |
Shell Script lvl 2 ( 12,704 XP) | |
TypeScript lvl 2 ( 9,490 XP) | |
JSON lvl 1 ( 5,687 XP) |
NewerOlder