Skip to content

Instantly share code, notes, and snippets.

@thehilde
thehilde / README.md
Created January 6, 2022 11:00 — forked from qti3e/README.md
List of file signatures and mime types based on file extensions
@thehilde
thehilde / edid.py
Last active December 7, 2021 04:52 — forked from shirriff/edid.py
Parse VGA configuration data (EDID) accessed from I2C device 0x50
# Program to parse VGA data (EDID) accessed from I2C device 0x50
#
# This is a quick demo not a supported program, so don't expect
# correctness from it.
#
# Edid format from:
# https://en.wikipedia.org/wiki/Extended_Display_Identification_Data#EDID_1.4_data_format
#
# Ken Shirriff http://righto.com
# Python 3 Forkt by Martin Hildebrandt