Skip to content

Instantly share code, notes, and snippets.

@cwmanning
cwmanning / mylocal.py
Created May 30, 2012 15:50
memcached settings
from .local import *
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211'
}
}
CACHE_MIDDLEWARE_SECONDS = 60
@cwmanning
cwmanning / stories-views.py
Created June 4, 2012 17:46
story view messing with asset parsing
from django.conf import settings
from django.http import HttpResponse
from django.shortcuts import render
from dummyjson import views as dj
from ordereddict import OrderedDict
import json
def story(request, content_id, slug=None, template=None):
path = '/static/content/modules/stories/story_' + content_id + '.json'
if not template:
@cwmanning
cwmanning / views.py
Created June 6, 2012 12:50
generate stripped down asset collection
# Build an asset collection for front next/prev navigation
asset_collection = []
if item['name'] == 'hero' or item['name'] == 'headline-grid':
asset = {}
for content in item['contents']:
asset[u'headline'] = content.get('headline')
asset[u'links'] = content.get('links')
asset[u'photo'] = content.get('photo')
asset_collection.append(asset)
/**
* Load 'blog' card (layer 0).
*/
loadBlogPage: function(path) {
//resets the nav to home so no subsections are highlighted
this.updateNavigation();
if(this.DEBUG) {console.log('Router: Load blog: ', path);}
PubSub.trigger('loadBlog:router', path);
@cwmanning
cwmanning / map-test.html
Created June 28, 2012 16:55
MapBox Basic Demo
<html>
<head>
<title>MapBox Fun</title>
<link rel="stylesheet" href="leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="leaflet.ie.css" />
<![endif]-->
<script src="leaflet.js"></script>
<script src="wax.leaf.min.js"></script>
@cwmanning
cwmanning / wax.leaf.js
Created June 29, 2012 20:29
Wax and Reqwest
/*!
* Reqwest! A general purpose XHR connection manager
* copyright Dustin Diaz 2011
* https://github.com/ded/reqwest
* license MIT
*/
!function(context,win){function serial(a){var b=a.name;if(a.disabled||!b)return"";b=enc(b);switch(a.tagName.toLowerCase()){case"input":switch(a.type){case"reset":case"button":case"image":case"file":return"";case"checkbox":case"radio":return a.checked?b+"="+(a.value?enc(a.value):!0)+"&":"";default:return b+"="+(a.value?enc(a.value):"")+"&"}break;case"textarea":return b+"="+enc(a.value)+"&";case"select":return b+"="+enc(a.options[a.selectedIndex].value)+"&"}return""}function enc(a){return encodeURIComponent(a)}function reqwest(a,b){return new Reqwest(a,b)}function init(o,fn){function error(a){o.error&&o.error(a),complete(a)}function success(resp){o.timeout&&clearTimeout(self.timeout)&&(self.timeout=null);var r=resp.responseText;if(r)switch(type){case"json":resp=win.JSON?win.JSON.parse(r):eval("("+r+")");break;case"js":resp=eval(r);break;case"html":resp=r}fn(resp),o.suc
@cwmanning
cwmanning / sviews.py
Created July 24, 2012 16:28
Messing around with timeline dates
from django.conf import settings
from django.http import HttpResponse
from django.shortcuts import render
from dummyjson import views as dj
from gannettapi.api import api
from datetime import datetime
from dateutil.parser import parse
from dateutil.relativedelta import relativedelta
from ordereddict import OrderedDict
from relux import utils
@cwmanning
cwmanning / views-app.js
Created July 25, 2012 18:24
app change to allow #links
triggerRoute: function(e){
var $targetLink = $(e.target).closest('a'),
href;
if (!$targetLink.length) return;
href = $targetLink.attr('href');
if (href.indexOf('#') == 0 && href.length > 1) return;
App.setHeatTrack($targetLink);
if (Modernizr.history && this.isDefinedRoute(href) && href) {
@cwmanning
cwmanning / bash_prompt.sh
Created August 15, 2012 17:12
Bash prompt
#!/bin/bash
#
# DESCRIPTION:
#
# Set the bash prompt according to:
# * the active virtualenv
# * the branch/status of the current git repository
# * the return value of the previous command
# * the fact you just came from Windows and are used to having newlines in
# your prompts.
$.ajax({
url: mapParams.url,
dataType: 'jsonp',
cache: true,
jsonpCallback: 'grid',
success: function(tilejson) {
var mapbox = new Connector(tilejson);
map.addLayer(mapbox);
mapbox.addEventListener('load', load);
}