Skip to content

Instantly share code, notes, and snippets.

#coding=utf-8
from django.contrib.auth.decorators import login_required
from django.contrib import messages
from django.db.models import Q
from django.http import HttpResponseRedirect, HttpResponse
from django.shortcuts import get_object_or_404
from django.utils.translation import ugettext as _
from faq.models import FAQ, FAQGroup
from itertools import groupby
from utkik import View
coding=utf-8
from django import http
from django.db.models import Q
from django.contrib import messages
from django.utils.translation import ugettext as _
from cbv import TemplateView
from faq.models import FAQ, FAQGroup
from itertools import groupby
# management command
from django.contrib.staticfiles.management.commands.runserver import Command as StaticFilesCommand
from django.contrib.staticfiles.handlers import StaticFilesHandler
from nimda.globals import _local_manager
class Command(StaticFilesCommand):
def get_handler(self, *args, **options):
handler = super(Command, self).get_handler(*args, **options)
handler = _local_manager.make_middleware(handler)
return handler
# management command
from django.contrib.staticfiles.management.commands.runserver import Command as StaticFilesCommand
from django.contrib.staticfiles.handlers import StaticFilesHandler
from nimda.globals import _local_manager
class Command(StaticFilesCommand):
def get_handler(self, *args, **options):
handler = super(Command, self).get_handler(*args, **options)
handler = _local_manager.make_middleware(handler)
return handler
@sorl
sorl / gist:979651
Created May 18, 2011 21:49
Upp! API version 1
#coding=utf-8
__test__ = {
"api_v1": """
Upp! API version 1
==================
Testing the functionality of Upp! API
>>> from django.utils import simplejson as json
>>> from django.test.client import Client
@sorl
sorl / gist:982576
Created May 20, 2011 08:44 — forked from jesperp/gist:980369
Upp! API version 1
#coding=utf-8
__test__ = {
"api_v1": """
Upp! API version 1
==================
Testing the functionality of Upp! API
>>> from django.utils import simplejson as json
>>> from django.test.client import Client
@sorl
sorl / synthumbs
Created October 5, 2012 11:53
Synology thumbnail generation
#include <iostream>
#include <string>
#include <libgen.h>
#include <Magick++.h>
using namespace std;
using namespace Magick;
string out( string fn, string sz ) {
@sorl
sorl / assets.js
Last active December 27, 2015 13:29
var assets = require('./assets.json')
, path = require('path')
var baseDir = __dirname
var Component = function(opts) {
var self = this
self.name = opts.name
self.src = path.join(baseDir, opts.src)
@sorl
sorl / cbv.py
Last active October 3, 2015 18:25
Django CBV
import re
from django.http import HttpResponse
from django.shortcuts import render
from functools import wraps
uncamel_patterns = (
re.compile('(.)([A-Z][a-z]+)'),
re.compile('([a-z0-9])([A-Z])'),
)
execute pathogen#infect()
if has('gui_running')
let s:uname = system("uname -s")
if s:uname == "Darwin\n"
set guifont=consolas:h15
let g:latex_view_general_viewer = '/Applications/Skim.app/Contents/MacOS/Skim'
else
set guifont=Consolas\ 13
endif