Skip to content

Instantly share code, notes, and snippets.

View bryanveloso's full-sized avatar

Bryan Veloso bryanveloso

View GitHub Profile
@bryanveloso
bryanveloso / dict_examples.py
Created August 7, 2008 09:22
A few examples of __dict__. Thanks Eric!
# Let's create a dummy class
>>> class ABC(object):
... pass
...
# Let's see if it works for the class
>>> ABC.__dict__
<dictproxy object at 0x2b83b7887750>
>>> dict(ABC.__dict__)
{'__dict__': <attribute '__dict__' of 'ABC' objects>, '__module__': '__main__', '__weakref__': <attribute '__weakref__' of 'ABC' objects>, '__doc__': None}
@bryanveloso
bryanveloso / gist:7329
Created August 26, 2008 19:47
Adds "Ubuntu-like" coloring to the Mac Terminal.
# Add color to the Terminal
export CLICOLOR=1
export TERM=xterm-color
export LSCOLORS=gxgxcxdxbxegedabagacad # cyan directories
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w\[\033[00m\]\$ '
#!/usr/bin/env python
# encoding: utf-8
import demjson
from pprint import pprint
import urllib2
def main():
user = "jeremybanks"
userJSON = urllib2.urlopen("http://github.com/api/v1/json/%s/" % user).read()
user = demjson.decode(userJSON)["user"]
@bryanveloso
bryanveloso / cashpoints.sql
Created August 31, 2008 01:42
Selects the number of cash points or kafra points an account has.
SELECT SUM(CAST(`value`/100 AS DECIMAL(7,2))) FROM `global_reg_value` WHERE (`str` LIKE '#CASHPOINTS' || `str` LIKE '#KAFRAPOINTS') AND `type` = '2' AND `account_id` = 'THEIR_ACCOUNT_ID';
from mimetypes import guess_type
from django.core.exceptions import ImproperlyConfigured
from django.core.files.storage import Storage
from django.utils.encoding import iri_to_uri
import re
try:
import S3
except ImportError:
raise ImproperlyConfigured, "Could not load amazon's S3 bindings.\
<!DOCTYPE html>
<html>
<head>
<title>Standard Blog</title>
</head>
<body>
<header>
<h1><a href="#">Standard Blog</a></h1>
</header>
<nav>
from django import template
from django.template.defaultfilters import stringfilter
from django.utils.html import conditional_escape
from django.utils.safestring import mark_safe
import re
register = template.Library()
# (?:\A|[\s\.,:;'"])(@(\w{1,20}))(?!\.?\w)
twitterize_pattern = r'''
"""
Some simple utilities to read the magic bytes from the beginning of a
file and determine whether the file meets certain criteria (e.g., contains
JPEG image data).
"""
import array
from operator import eq
IMAGE_MAGIC_DATA = (
@bryanveloso
bryanveloso / update_git.sh
Created September 21, 2009 23:44
Scripts I use to keep my huge load of local repositories updated.
#!/bin/bash
for dir in ~/Repositories/Git/*
do
(cd $dir && git pull)
done