Taken from https://github.com/bahamas10/dotfiles/blob/master/bashrc
Show amount of billable storage spaced used in Manta
Taken from https://github.com/bahamas10/dotfiles/blob/master/bashrc
Show amount of billable storage spaced used in Manta
A friend asked me for a few pointers to interesting, mostly recent papers on data warehousing and "big data" database systems, with an eye towards real-world deployments. I figured I'd share the list. It's biased and rather incomplete but maybe of interest to someone. While many are obvious choices (I've omitted several, like MapReduce), I think there are a few underappreciated gems.
###Dataflow Engines:
Dryad--general-purpose distributed parallel dataflow engine
http://research.microsoft.com/en-us/projects/dryad/eurosys07.pdf
Spark--in memory dataflow
http://www.cs.berkeley.edu/~matei/papers/2012/nsdi_spark.pdf
"Yes," Mr. Phillips said, "ours is a city of churches all right." Cecelia nodded, following his pointing hand. Both sides of the street were solidly lined with churches, standing shoulder to shoulder in a variety of architectural styles. The Bethel Baptist stood next to the Holy Messiah Free Baptist, Saint Paul's Episcopal next to Grace Evangelical Covenant. Then came the First Christian Science, the Church of God, All Souls, Our Lady of Victory, the Society of Friends, The Assembly of God, and the Church of the Holy Apostles. The spires and steeples of the traditional buildings were jammed in next to the broad imaginative flights of the "contemporary" designs. "Everyone here takes a great interest in church matters," Mr. Phillips said.
Will I fit in, Cecelia wondered. She had come to Prester to open a branch office of a car-rental concern.
"I'm not especially religious," she said to Mr. Phillips, who was in the real-estate business.
"Not now," he answered.
"Not yet. But we have many fine young people her
REQUIREMENTS_FILE=requirements.txt | |
REQUIREMENTS_OUT=requirements.txt.log | |
SETUP_OUT=*.egg-info | |
all: setup requirements | |
requirements: $(REQUIREMENTS_OUT) | |
$(REQUIREMENTS_OUT): $(REQUIREMENTS_FILE) | |
pip install -r $(REQUIREMENTS_FILE) | tee $(REQUIREMENTS_OUT) |
char header[] = { | |
0x52, 0x49, 0x46, 0x46, 0x24, 0x40, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6d, 0x74, 0x20, | |
0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x44, 0xac, 0x00, 0x00, 0x10, 0xb1, 0x02, 0x00, | |
0x04, 0x00, 0x10, 0x00, 0x64, 0x61, 0x74, 0x61, 0xff, 0xff, 0xff, 0xff | |
}; | |
.fb_access_token | |
.fbconsole.py |
easterEgg.BadWorder.list={ | |
"4r5e":1, | |
"5h1t":1, | |
"5hit":1, | |
a55:1, | |
anal:1, | |
anus:1, | |
ar5e:1, | |
arrse:1, | |
arse:1, |
#!/bin/sh | |
# Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the | |
# CREATE block and create them in separate commands _after_ all the INSERTs. | |
# Awk is choosen because it's fast and portable. You can use gawk, original awk or even the lightning fast mawk. | |
# The mysqldump file is traversed only once. | |
# Usage: $ ./mysql2sqlite mysqldump-opts db-name | sqlite3 database.sqlite | |
# Example: $ ./mysql2sqlite --no-data -u root -pMySecretPassWord myDbase | sqlite3 database.sqlite |
#!/usr/bin/env ruby | |
# Inspired by http://jeffmiller.github.com/2011/01/10/ssh-host-color | |
# == What this version does: | |
# 1) Launch an SSH process | |
# 2) Grab the IP that SSH connected to | |
# 3) Hash that IP and generate a colour from it | |
# 4) Change Terminal.app's background colour to that colour. | |
# 5) Change the colour back when SSH exits. |
:- use_module(library('http/http_open')). | |
prove((A, B)) :- | |
A, B. | |
prove((A; B)) :- | |
A; B. | |
prove(H) :- | |
clause(H, B), !, | |
prove(B). | |
prove(Head) :- load(Head), Head. |