Skip to content

Instantly share code, notes, and snippets.

View al-locke1's full-sized avatar

Al Locke al-locke1

View GitHub Profile
@bkralik
bkralik / read_racelogic_ref.py
Last active April 3, 2025 12:40
Read Racelogic REF file
from loguru import logger
import zlib
filename = "Dodge-Charger-LD-2018.REF"
f = open(filename, "rb")
l = f.readline().decode("utf-8").rstrip()
logger.debug("First line read: {}", l)