- http://www.disambiguity.com/drupalcommunity-model-for-design/
- http://www.disambiguity.com/5-ux-initiatives-for-drupal8/
- http://www.pilpi.net/software/moodle/2010/09/30/masters-thesis-about-moodle-and-open-source-usability/
- http://mairin.wordpress.com/2010/04/06/contributing-to-free-open-source-software-as-a-designer/
- http://thorwil.wordpress.com/2011/03/10/design-boost/
- http://groups.drupal.org/prairie-initiative
- http://smarterware.org/7550/designers-women-and-hostility-in-open-source (serendipitously posted to HN today)
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 itertools import imap | |
from collections import namedtuple | |
from django.db.models.query import QuerySet, ValuesQuerySet | |
class NamedTuplesQuerySet(ValuesQuerySet): | |
def iterator(self): | |
# Purge any extra columns that haven't been explicitly asked for | |
extra_names = self.query.extra_select.keys() |
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
LOGGING = { | |
... | |
'handlers': { | |
'console': { | |
'level': 'DEBUG', | |
'class': 'logging.StreamHandler', | |
}, | |
... | |
}, | |
'loggers': { |
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
// Set ``Resource.Meta.always_return_data = True`` first, then... | |
var relative_root = '/api/v1/'; | |
window.HelmModel = Backbone.Model.extend({ | |
urlRoot: relative_root, | |
base_url: function() { | |
var temp_url = Backbone.Model.prototype.url.call(this); | |
return (temp_url.charAt(temp_url.length - 1) == '/' ? temp_url : temp_url+'/'); |
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
<script> | |
var palette = new Rickshaw.Color.Palette({scheme: 'spectrum2000'}); | |
var graph = new Rickshaw.Graph.Ajax({ | |
element: $("#download-chart .chart")[0], | |
renderer: 'area', | |
stroke: true, | |
dataURL: '/stats/Django/delta.json', | |
onData: function(d){ | |
// Hide the Spinner |
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
#!/usr/bin/env python | |
import sys | |
import os | |
import re | |
sys.path[0] = os.path.normpath(os.path.join(sys.path[0], '.')) | |
os.environ['DJANGO_SETTINGS_MODULE'] = "dummyproj.settings" | |
import inspect | |
from pprint import pprint | |
# https://github.com/django/django/commit/4f306a4c27c8537ca9cd966cea1c0de84aafda9e#django/db/__init__.py | |
# from django.conf import settings; settings.configure() |
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
DJ Ango, yo! | |
http://railsenvy.com/2007/9/10/ruby-on-rails-vs-django-commercial-7 | |
The Whistles | |
[now broken] http://www.youtube.com/watch?v=ccgXjA2BLEY | |
http://www.youtube.com/watch?gl=US&hl=en&client=mv-google&v=Nnzw_i4YmKk | |
Do it live! | |
http://www.youtube.com/watch?v=2tJjNVVwRCY | |
REMIX: http://www.youtube.com/watch?v=5j2YDq6FkVE&NR=1 |
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
DJ Ango, yo! | |
http://railsenvy.com/2007/9/10/ruby-on-rails-vs-django-commercial-7 | |
The Whistles | |
[now broken] http://www.youtube.com/watch?v=ccgXjA2BLEY | |
http://www.youtube.com/watch?gl=US&hl=en&client=mv-google&v=Nnzw_i4YmKk | |
Do it live! | |
http://www.youtube.com/watch?v=2tJjNVVwRCY | |
REMIX: http://www.youtube.com/watch?v=5j2YDq6FkVE&NR=1 |
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 multiprocessing.pool import ThreadPool | |
import logging, os, threading | |
from StringIO import StringIO | |
import boto.s3 | |
logger = logging.getLogger('s3upload') | |
class MultiPartUploader: | |
upload_part = 0 |