Skip to content

Instantly share code, notes, and snippets.

@martinsam
martinsam / gist:651211
Created October 28, 2010 12:04
User Perf
#don't multiply queryset for user.get_profile...
#coworkers is a queryset of User
coworkers_id = set([c.id for c in coworkers])
from users_profiles.models import UserProfile
profiles = UserProfile.objects.filter(user__in=coworkers_id)
co_profiles = dict((u.id, u) for u in profiles)
for co in coworkers:
co.get_profile = co_profiles.get(co.id)
@martinsam
martinsam / gist:752985
Created December 23, 2010 13:43
Django Foreign Key Perf
Don’t do:
pub_id = b.publisher.id
Do do:
pub_id = b.publisher_id
@martinsam
martinsam / gist:757803
Created December 28, 2010 22:12
CACHE - Django signals with timeout / process
# -*- coding: utf-8 -*-
import os
import time
from multiprocessing import Process
from django.template.loader import render_to_string
from django.http import HttpRequest
from django.template import RequestContext
from django.contrib.auth.models import User
@martinsam
martinsam / gist:758338
Created December 29, 2010 08:47
Feuille style css print
body {
width: auto!important;
margin: auto!important;
font-family: serif;
font-size: 12pt;
background-color: #fff!important;
color: #000!important;
}
p, h1, h2, h3, h4, h5, h6, blockquote, ul, ol {
color: #000!important;
@martinsam
martinsam / gist:758431
Created December 29, 2010 11:17
Delete paraphrase from certif / SSL
openssl rsa -in private_key.key -out private_key_without_paraphrase.key
@martinsam
martinsam / gist:759793
Created December 30, 2010 13:30
Signals + cache + lang
### in signals.py ##################################
####################################################
def project_post_generate_template(sender, **kwargs):
### get object ###
project = kwargs['instance']
generate_project_cartridge(project)
def generate_project_cartridge(project):
@martinsam
martinsam / gist:767776
Created January 6, 2011 11:14
Django unique_together work with ForeignKey=None
class FooBar(models.Model):
foo = models.ForeignKey(Foo)
bar = models.ForeignKey(Bar, null=True, blank=True)
class Meta:
unique_together = ('foo', 'bar')
def clean(self):
from django.core.exceptions import ValidationError
if self.foo and FooBar.objects.filter(name=self.bar).exists():
@martinsam
martinsam / gist:769466
Created January 7, 2011 13:47
Git Config
# ~.gitconfig
[user]
name = Samuel Martin
email = [email protected]
[color]
diff = auto
status = auto
branch = auto
[alias]
st = status
@martinsam
martinsam / gist:861894
Created March 9, 2011 08:39
Fusionner les modifications du référentiel github à distance avec votre dépôt local
- Après avoir forké le dépôt de "Jedi" (via bouton Fork )
- Utiliser le dépôt sur votre machine via : git clone https://github.com/<your_name>/<project_name>.git donc git clone https://github.com/padawan/laser.git
- Amusez vous dans votre dépôt ...
- Rohh jedi à mise à jour son sabre laser comment faire, je veux aussi cette hype mise à jour ?
git remote add jedi git://github.com/jedi/laser.git
git pull jedi master
git push
@martinsam
martinsam / gist:864197
Created March 10, 2011 14:46
Install firefox 4.0 on Ubuntu
In terminal:
* sudo add-apt-repository ppa:ubuntu-mozilla-daily/ppa
* sudo apt-get update
* sudo apt-get install firefox-4.0