Skip to content

Instantly share code, notes, and snippets.

@kaiix
kaiix / gist:2928980
Created June 14, 2012 08:21
Django logging config
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'formatters': {
@kaiix
kaiix / GlossGradientButton.h
Created May 28, 2012 11:55
Gloss gradients button for ios
//
// GlossGradientButton.h
// iOS version of gloss gradients button
// original version for Mac OSX http://cocoawithlove.com/2008/09/drawing-gloss-gradients-in-coregraphics.html
//
#import <UIKit/UIKit.h>
@interface GlossGradientButton : UIButton {
UIColor *buttonColor_;