Skip to content

Instantly share code, notes, and snippets.

@saleiva
saleiva / gist:10121008
Last active September 17, 2020 17:15
Software Engineer - Back End at CartoDB

Software Engineer - Back End at CartoDB

We are building the easiest and most powerful data mapping engine ever. We have more than 40.000 loving users (growing rapidly) and customers from all around the world, And we have offices in downtown Madrid and NY.

Our team of engineers and designers are changing the way maps are made. This is a big task, we need to scale! Because we're looking for truly talented engineers with a passion for maps, code and quality. Our team is fast, smart and independent.

@dcramer
dcramer / track_data.py
Created December 6, 2010 19:15
Tracking changes on properties in Django
from django.db.models.signals import post_init
def track_data(*fields):
"""
Tracks property changes on a model instance.
The changed list of properties is refreshed on model initialization
and save.
>>> @track_data('name')