Skip to content

Instantly share code, notes, and snippets.

View tunecrew's full-sized avatar
💭
Pleased to be chilling in the West Indies

Christopher Edmonds tunecrew

💭
Pleased to be chilling in the West Indies
View GitHub Profile
@tunecrew
tunecrew / gist:afa54d799dab04dea93309b1017e0ee6
Created January 30, 2019 16:40
Batch convert wav files to aif using sox
for f in *.wav; do sox "$f" "${f%.wav}.aif"; done
@tunecrew
tunecrew / gist:2b02545d66712f59032a25b0858f3449
Created January 25, 2019 18:45
Add get_or_none(...) method to your Django models
from django.db import models
"""
add get_or_none(...) method to a Django model
usage: Thing.objects.get_or_none(thing='something')
courtesy of https://stackoverflow.com/users/245672/kaapstorm
"""