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
/* Helpers for manipulating colors in javascript. */ | |
/* IE patch. :( */ | |
if(typeof String.prototype.trim !== 'function') { | |
String.prototype.trim = function() { | |
return this.replace(/^\s+|\s+$/g, ''); | |
} | |
} | |
/***/ |
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
""" | |
SQLAlchemy Enum type based on Integer indices. | |
""" | |
from sqlalchemy import types | |
class Enum(types.TypeDecorator): | |
impl = types.Integer | |
def __init__(self, value_map, strict=True, *args, **kw): | |
"""Emulate Enum type with integer-based indexing. |
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
""" | |
Handy Python functions written by Andrey Petrov (shazow). I release this code | |
under public domain. (Attribution is optional but appreciated.) | |
Approximate changelog (according to https://gist.github.com/603374): | |
2011-05-05 | |
- I made a proper github repo out of this: | |
https://github.com/shazow/unstdlib.py |
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 test import model | |
Session = model.Session | |
import time | |
from decorator import decorator | |
def measure(description): | |
def wrapper(fn, *args, **kw): | |
print "{0}...".format(description), |
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
// Examples where lack of semicolons break things | |
// Example 1: | |
function a() { return "a" } | |
function b() { return "b" } | |
var foo = [1,2,3]; // <--- remove this semicolon to break things | |
-1 == a() || b(); |
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/env python | |
# filenose - Find specific types of files from raw data. | |
from StringIO import StringIO | |
import sys | |
import time | |
from datetime import datetime | |
MAXSIZE = 1024*1024*4 # 4mb | |
CHUNK_SIZE = 1024*1024*10 # 10mb |
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
# Redirect shazow.net/blog -> blog.shazow.net | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase /blog/ | |
# Keep serving static files | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d |
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
""" | |
Usage: | |
class MyTable(ExpandoModel): | |
__tablename__ = 'my_table' | |
id = Column(types.Integer, primary_key=True) | |
>>> t = MyTable(id=1) | |
>>> Session.add(t) | |
>>> Session.commit() |
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
''' | |
pytron - Tron clone written in Python with PyGame | |
By Andrey Petrov | |
Thanks to: | |
Igor Foox, for debugging (v0.3) | |
Changelog: | |
2006-11-16 Version 0.3 |
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
function FrameCounter(sample_length) { | |
this.sample_length = sample_length || 500; // In milliseconds | |
this.n = 0; | |
this.last_n = 0; | |
this.time_created = this.time_sampled = this.time_updated = new Date(); | |
this.last_rate = 0; | |
} | |
FrameCounter.prototype = { | |
tick: function() { | |
this.n++; |