Skip to content

Instantly share code, notes, and snippets.

View TazyFoundSoup's full-sized avatar
:shipit:
I strive to be humble, lest I stumble

watson TazyFoundSoup

:shipit:
I strive to be humble, lest I stumble
View GitHub Profile
@jojonas
jojonas / love2d-unpacker.py
Last active July 28, 2026 22:06
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