Skip to content

Instantly share code, notes, and snippets.

View alesdotio's full-sized avatar

Ales Kocjancic alesdotio

View GitHub Profile
@HenrikJoreteg
HenrikJoreteg / straight_include.py
Created December 15, 2010 16:06
A Django Template tag for including files that you don't want to parse as templates
"""
Straight Include template tag by @HenrikJoreteg
Django templates don't give us any way to escape template tags.
So if you ever need to include client side templates for ICanHaz.js (or anything else that
may confuse django's templating engine) You can is this little snippet.
Just use it as you would a normal {% include %} tag. It just won't process the included text.
@stefanfoulis
stefanfoulis / osx_developer_installation.rst
Last active July 10, 2024 14:36
Instructions on how to setup an OSX developer machine for (python/django) development

OSX Developer System installation

This guide assumes a fresh install of Mac OSX 10.7 Lion.

Brew User

@FinalAngel
FinalAngel / software_installation.rst
Created January 4, 2012 13:57
Software installation instructions

Software Installation

Configure WLAN/WIFI

Connect to divio-data

@FinalAngel
FinalAngel / osx_developer_installation.rst
Created August 20, 2012 12:03 — forked from stefanfoulis/osx_developer_installation.rst
Instructions on how to setup an OSX developer machine for (python/django) development

OSX Developer System installation

This guide assumes a fresh install of Mac OSX 10.7 Lion.

Homebrew

@alesdotio
alesdotio / gist:3619494
Created September 4, 2012 10:10
makemessages for all apps
for i in *; do cd $i; ../../bin/django makemessages -a; cd ..; done
@alesdotio
alesdotio / osx_developer_installation.rst
Created September 29, 2012 13:48 — forked from FinalAngel/osx_developer_installation.rst
Instructions on how to setup an OSX developer machine for (python/django) development

OSX Developer System installation

This guide assumes a fresh install of Mac OSX 10.7 Lion.

Homebrew