This is where I write about anything I think is interesting. Take a look - hopefully you find something interesting too.
Hashable objects in Python
Learn what hashable objects are in Python, why they matter for sets and dictionaries, and how to make your own classes hashable with __eq__ and __hash__
pythonhashabilityobjects
Python Counter
A quick guide on how to use the incredibly useful Counter class from Python’s collections module
pythoncollections
Convert a BooleanField to a CharField while mainting state in Django
A how-to guide on coverting a BooleanField to a CharField with choices while maintaining the original state in Django