Skip to content

Instantly share code, notes, and snippets.

@alej0varas
alej0varas / django-jsonfield-length-sum-average.py
Created September 2, 2016 14:37
Example usage of database funtions(`Sum` and `Avg`) and Django `JSONField`'s `jsonb_array_length`
# Example usage of database funtions(`Sum` and `Avg`) and Django `JSONField`'s `jsonb_array_length`
# PostgreSQL json field functions: https://www.postgresql.org/docs/9.5/static/functions-json.html
# Django `F` and `Func`: https://docs.djangoproject.com/en/1.10/ref/models/expressions/#f-expressions
# Django aggregation: https://docs.djangoproject.com/en/1.10/topics/db/aggregation/
# Django `JSONField`: https://docs.djangoproject.com/en/1.9/ref/contrib/postgres/fields/#jsonfield
# Given a model
class Contact(models.Model):
numbers = JSONField(help_text="An array of numbers")
@alej0varas
alej0varas / 0002_migration_outdated.py
Last active September 23, 2016 10:49
ulule/django-linguist migration outdated Python35 Django110
# -*- coding: utf-8 -*-
# Generated by Django 1.10.1 on 2016-09-23 05:42
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
@alej0varas
alej0varas / 0002_migration_outdated.py
Created September 23, 2016 10:49
ulule/django-linguist migration outdated Python27 Django110
# -*- coding: utf-8 -*-
# Generated by Django 1.10.1 on 2016-09-23 05:48
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
<script>
function decodeURL() {
var uri_enc = document.getElementById("url").value;
var uri_dec = decodeURIComponent(uri_enc);
var text = document.getElementById("text");
text.textContent = uri_dec;
}
</script>
<input id="url">
@alej0varas
alej0varas / digits.py
Created October 5, 2017 13:21
(FTR Digits was retired on 30/09/2017) Digits verification
class DigitsVerification:
DIGITS_API_URL = 'https://api.digits.com'
AUTH_PROVIDER_KEY = 'apiUrl'
CREDENTIALS_KEY = 'credentials'
def __call__(self, credentials):
auth_provider = self.validate_auth_provider(credentials)
if auth_provider is None:
return None