It's kinda sour like a sambar and kind of hot like a chilli but here. It's not authentic Indian food at all but it works and it is delicious.
For the paste:
- Cardamom
- Fennel seeds
| from django.db.models.fields import FieldDoesNotExist | |
| class SerializeMixin(object): | |
| def serialize(self, recursive=True): | |
| data = {} | |
| for field in self.__class__._meta.get_all_field_names(): | |
| try: | |
| self.__class__._meta.get_field(field) | |
| data[field] = self.serializable_value(field) |
| ... | |
| def _get_profile_completion(self): | |
| fields = filter( | |
| lambda i: i not in ('user', 'id'), | |
| self.__class__._meta.get_all_field_names() | |
| ) | |
| per_field = float(100) / len(fields) | |
| total = 0.0 | |
| for field in fields: | |
| val = getattr(self, field) |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| $script = <<SCRIPT | |
| apt-get -y update | |
| apt-get -y install htop vim git-core bzr mercurial sqlite3 build-essential python-dev libjpeg62 libjpeg62-dev zlib1g zlib1g-dev curl python-setuptools postgresql postgresql-client postgresql-server-dev-all libpq-dev | |
| easy_install pip | |
| pip install virtualenv | |
| wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh | |
| useradd -g users -d /home/USERNAME -m -s /bin/bash -p $(echo PASSWORD | openssl passwd -1 -stdin) USERNAME |
| outlook.com | |
| 1033edge.com | |
| 11mail.com | |
| 123.com | |
| 123box.net | |
| 123india.com | |
| 123mail.cl | |
| 123qwe.co.uk | |
| 150ml.com | |
| 15meg4free.com |
| EMAIL_BLACKLIST = ( | |
| 'outlook.com', | |
| '1033edge.com', | |
| '11mail.com', | |
| '123.com', | |
| '123box.net', | |
| '123india.com', | |
| '123mail.cl', | |
| '123qwe.co.uk', | |
| '150ml.com', |
| from unipath import Path | |
| from django.contrib import admin | |
| from django.db.models.loading import get_app, get_models | |
| path = Path(__file__) | |
| admin.site.register(get_models(get_app(path.parent.name))) |
| getCookie = (name) -> | |
| cookieValue = null | |
| if document.cookie && document.cookie != '' | |
| cookies = document.cookie.split ';' | |
| for cookie in cookies | |
| cookie = jQuery.trim cookie | |
| if cookie.substring(0, name.length + 1) == "#{ name }=" |
| from operator import or_ | |
| from django.db.models import Q | |
| from .models import MyModel | |
| query = reduce(or_, [Q(some_field__iexact=v, other_field__icontains=v) for v in values]) | |
| MyModel.objects.filter(query) |
| polish - english - mg/1 | |
| opuncja - prickly pear - 200 | |
| kwas bursztynowy - succinic acid - 100 | |
| kwas fumarowy - fumaric acid - 37 | |
| glutaminian monosodowy - monosodium glutamate - 100 | |
| glukoza - glucose - 100 | |
| glicyna - glycine - 60 | |
| l-cysteina - L-cysteine - 60 | |
| zen-szen - ginseng - 80 | |
| witaminia c - vitamin C - 27 |