Skip to content

Instantly share code, notes, and snippets.

View wafflecomposite's full-sized avatar
💭
Yeah, I somehow got the generated avatar of a happy pixel bear!

wafflecomposite

💭
Yeah, I somehow got the generated avatar of a happy pixel bear!
View GitHub Profile
@gmolveau
gmolveau / uuid_user.py
Last active January 17, 2025 02:56
sqlalchemy uuid for sqlite
########################
# UUID for SQLite hack #
########################
from sqlalchemy.types import TypeDecorator, CHAR
from sqlalchemy.dialects.postgresql import UUID
import uuid
class GUID(TypeDecorator):
@RZRZR
RZRZR / lcd.py
Created November 27, 2014 13:59
LCD
#!/usr/bin/python
#
# HD44780 LCD Test Script for
# Raspberry Pi
#
# Author : Matt Hawkins
# Site : http://www.raspberrypi-spy.co.uk
#
# Date : 26/07/2012
#