Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)
That's it!
#!/bin/bash | |
# I take absolutely no responsibility for anything that happens when you run this. | |
while true; do | |
curl -s "http://www.google.com/?q=hardcore+porn" > /dev/null &\ | |
curl -s "http://www.google.com/?q=kiddie+porn" > /dev/null &\ | |
echo -n "." | |
sleep 5 | |
#!/usr/bin/env TEST=1 tclsh | |
# Lexical scoping in Tcl | |
proc let {block args} { | |
try { | |
set captured_vars [uplevel [list capture [block args]]] | |
set all_var_names [uplevel {info vars}] | |
foreach var [block args] value $args { | |
uplevel [list catch [list unset $var]] |
from django.contrib.sessions.backends.base import SessionBase, CreateError | |
from django.conf import settings | |
from django.utils.encoding import force_unicode | |
import redis | |
class SessionStore(SessionBase): | |
""" Redis store for sessions""" | |
def __init__(self, session_key=None): | |
self.redis = redis.Redis( |
# server | |
require 'rubygems' | |
require 'sinatra' | |
get '/temp' do | |
content_type :json | |
temp = `./temper` | |
bits = temp.split(' ') | |
"{ \"time\" : #{bits[0]}, \"fahrenheit\" : #{bits[2].gsub(/F/,'')}, \"celcius\" : #{bits[3].gsub(/C/,'')} }" |
''' | |
given a Model with: | |
category = models.CharField(max_length=32, choices=CATEGORY_CHOICES) | |
pubdate = models.DateTimeField(default=datetime.now) | |
<other fields> | |
Fetch the item from each category with the latest pubdate. | |
''' |
From: Chris DeSalvo <[email protected]> | |
Subject: Why we can't process Emoji anymore | |
Date: Thu, 12 Jan 2012 18:49:20 -0800 | |
Message-Id: <[email protected]> | |
--Apple-Mail=_6DEAA046-886A-4A03-8508-6FD077D18F8B | |
Content-Transfer-Encoding: quoted-printable | |
Content-Type: text/plain; | |
charset=utf-8 |
# An API keys script written by Patrick Gibson (@patr1ck) and Christopher Bowns (@cbowns) | |
# This script sets API keys in your app's Info.plist from an .api_keys file you keep in your home directory (~/.api_keys) | |
# This allows you to not check API keys into your source control system, | |
# or for different developers to use different keys without needing to patch their working copies. | |
# Installation directions: | |
=begin | |
1. Create a Run Script build phase in your Xcode project before Compile Sources | |
2. Copy and paste this whole script in. | |
3. Create or modify your .api_keys file to hold your API keys |
Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)
That's it!
#include <stdio.h> | |
#define GO puts | |
#define THE ( | |
#define FUCK "GO THE FUCK TO SLEEP" | |
#define TO ); | |
#define SLEEP return 0 | |
int main() | |
{ | |
GO THE FUCK TO SLEEP; | |
} |
#! /usr/bin/env python | |
"""{escher} -- one-file key-value storage. | |
What? | |
This is a toy application to manage persistent key-value string data. | |
The file {escher} is *both* the application and its data. | |
When you run any of the commands below, the file will be executed and, | |
after data change, it will rewrite itself with updated data. | |
You can copy the file with whatever name to create multiple datasets. |