Skip to content

Instantly share code, notes, and snippets.

@underdown
underdown / gist:2474608
Created April 23, 2012 23:37
responsive ads
<script type="text/javascript"><!--
google_ad_client = "ca-pub-3658299045266116";
/* top */
if ($(window).width()<728 ){
google_ad_slot = "4414183254";
google_ad_width = 320;
google_ad_height = 50;
}else{
google_ad_slot = "1020377061";
google_ad_width = 728;
@pau
pau / gist:1098900
Created July 22, 2011 04:36
Set Relative Path of Django SQLite Database
SITE_ROOT = os.path.dirname(os.path.realpath(__file__))
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(SITE_ROOT, 'db', 'test.db'),
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',