Skip to content

Instantly share code, notes, and snippets.

View TazyFoundSoup's full-sized avatar
:shipit:
lulzcat.dll

tazy TazyFoundSoup

:shipit:
lulzcat.dll
View GitHub Profile
@jojonas
jojonas / love2d-unpacker.py
Last active January 4, 2026 14:22
Love2d executable unpacker.
import argparse
import os, os.path
import zipfile
import io
def readui32(file):
bytes = file.read(4)
number = bytes[0]
number += bytes[1] << 8
number += bytes[2] << 16