This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import division | |
import sys | |
import math | |
import random | |
# http://www.spotify.com/us/jobs/tech/ticket-lottery/ | |
def bc(n, k, f=math.factorial): | |
"""Binomial coefficient in terms of Factorials | |
(n) = ____n!____ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def assign_file_to_model(module, model_class=None, file_field='main_image', source_field='body', skip_existing=True, verbose=False): | |
""" We tend to have "main image" fields on models that hold a primary image used | |
across the sites for things like list pages and headers. Often on import of | |
existing data we have images mangled within copy or lists. """ | |
import urllib2 | |
from posixpath import basename | |
from BeautifulSoup import BeautifulSoup as Soup | |
from django.db import IntegrityError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
====================================================== | |
Setting up Django using Apache/mod_wsgi on Ubuntu 8.10 | |
====================================================== | |
This article will cover setting up Django using Apache/mod_wsgi on Ubuntu | |
8.10. The article is targeted at a production environment, but keep in mind | |
this is a more generalized environment. You may have different requirements, | |
but this article should at least provide the stepping stones. | |
The article will use distribution packages where nesscary. As of 8.10 the |
NewerOlder