Skip to content

Instantly share code, notes, and snippets.

View mblayman's full-sized avatar

Matt Layman mblayman

View GitHub Profile

Minutes

  • Suz Hinton - noopkat - streaming setup
  • Recording software if difficult
    • OBS
    • StreamLabs OBS
    • Quadlibet?
    • Text source plugins that OBS reads
  • StreamLabs has plugins for useful stuff
from django.contrib.auth.hashers import BasePasswordHasher
class SimplePasswordHasher(BasePasswordHasher):
"""A simple hasher inspired by django-plainpasswordhasher to save test
execution time
"""
algorithm = 'dumb' # This attribute is needed by the base class.
def salt(self):