Skip to content

Instantly share code, notes, and snippets.

@imaami
imaami / README.md
Last active December 6, 2024 18:23
Sculpt hallucinated lyrics into neon echoes

wheeze.py

wheeze.py is a tool to help generate lyrics for music, but in a music-first way. It can be thought of as the reverse of the typical LLM-assisted approach.

(The first two letters come from OpenAI's whisper. I haven't invented a post-hoc rationale for the rest of the name yet.)

@NotSqrt
NotSqrt / settings_test_snippet.py
Last active May 1, 2022 01:34 — forked from nealtodd/settings_test_snippet.py
Another shot at this problem ..
class DisableMigrations(object):
def __contains__(self, item):
return True
def __getitem__(self, item):
return "notmigrations"
MIGRATION_MODULES = DisableMigrations()