h1.title {
color: red;
text-shadow: 2px 2px #A00;
}
bind @browser
PYTHON := python2.6 | |
BUILD_DIR := buildtmp | |
AURORA_CLUSTER := test | |
AURORA_ROLE := $(shell whoami) | |
UWSGI_VER = 2.0.4 | |
UWSGI_DIR = uwsgi-$(UWSGI_VER) | |
UWSGI_FILE = $(UWSGI_DIR).tar.gz | |
UWSGI_URL = http://projects.unbit.it/downloads/$(UWSGI_FILE) |
/** | |
* computes the what elements were added to, and removed from, s1 | |
* to obtain s2, where s1 and s2 are assumed to be unordered Array | |
* possibly with duplicates | |
* uDiff([1,3], [2,3]) --> {added: [2], removed: [1]} | |
* uDiff([1,2,3], [2,3,1]) --> {added: [], removed: []} | |
* uDiff([1,2,1], [1,2,2]) --> {added: [2], removed: [1]} | |
* @param s1 Array | |
* @param s2 Array |
history={'data': [ | |
{ | |
'o': 0, /* offset */ | |
'h': 1, /* horizontal slide index */ | |
'v': 0, /* vertical slide index */ | |
}, | |
{ | |
'o': 120, | |
'h': 2, | |
'v': 0, |
function tts | |
set q $argv; | |
mplayer "http://translate.google.com/translate_tts?ie=UTF-8&q=$q&tl=en&textlen="(math (echo "$q" | wc -m) - 1)"idx=0&total=1&prev=input"; | |
end |
var getPath = function(el) { | |
var path = elName = ""; | |
var siblings, siblingId; | |
while(el && elName != "body") { | |
elName = el.nodeName.toLowerCase(); | |
siblings = (el.parentNode)?el.parentNode.childNodes:[]; | |
siblingId = 0; | |
for (var i = 0; i < siblings.length; i++) { |
Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)
That's it!
From home: | |
Transactions: 1730 hits | |
Availability: 100.00 % | |
Elapsed time: 94.71 secs | |
Data transferred: 0.24 MB | |
Response time: 0.31 secs | |
Transaction rate: 18.27 trans/sec | |
Throughput: 0.00 MB/sec | |
Concurrency: 5.65 |
<html> | |
<head> | |
<style type="text/css"> | |
.card { | |
height: 2in; | |
width: 2in; | |
border: 0.1in solid black; | |
border-radius: 0.25in; | |
display: inline-block; | |
margin: 1px 1px 0 0; |
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by GnuTLS configure 2.12.18, which was | |
generated by GNU Autoconf 2.68. Invocation command line was | |
$ ./configure --disable-debug --disable-dependency-tracking --disable-guile --disable-static --prefix=/usr/local/Cellar/gnutls/2.12.18 --with-libgcrypt --without-p11-kit | |
## --------- ## | |
## Platform. ## |