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
# Copyright (c) 2012, Bin Tan | |
# This file is distributed under the BSD Licence. See python-epub-builder-license.txt for details. | |
# James Outterside - Modified code from http://code.google.com/p/python-epub-builder/source/browse/trunk/epub.py to use | |
# use django templates instead of genshi | |
import itertools | |
import mimetypes | |
import os | |
import shutil |
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 django.contrib import admin | |
from django.contrib.auth.models import User | |
from django.contrib.auth.admin import UserAdmin as AuthUserAdmin | |
from tastypie.models import ApiAccess, ApiKey | |
from models import UserProfile | |
try: | |
admin.site.unregister(User) | |
admin.site.unregister(ApiKey) |
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
#!/bin/sh | |
# | |
# Installation | |
# mkdir ~/bin | |
# cd ~/bin | |
# wget http://gist.github.com/raw//5506188/slugify | |
# chmod +x ~/bin/slugify | |
# | |
# Usage | |
# $ lspci > ~/Desktop/pci-devices-$(slugify `date`).report |
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
# PROJECT/base.lib.discovery | |
# | |
from functools import wraps | |
import traceback | |
import sys | |
registry = {} |
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 | |
""" | |
Installation | |
------------ | |
mkdir -p ~/bin | |
wget https://gist.github.com/airtonix/5562266 -o ~/bin/webserver | |
chmod +x ~/bin/webserver |
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
/* | |
Angular Tasty Pie Service | |
------------------------- | |
Requires | |
-------- | |
- https://github.com/grevory/angular-local-storage | |
Features |
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
angular.module('reveal.directives', []) | |
.directive('zurbReveal', function($revealService, $log){ | |
return { | |
restrict: 'A', | |
link: function postLink(scope, element, attrs) { | |
scope.$watch(attrs.zurbReveal, function(url){ | |
if(typeof(url)=='undefined') url = attrs.zurbReveal; | |
element.bind( "click", function(){ | |
scope.$emit("event:modal-request", url, scope, attrs.revealOptions); | |
}); |