Skip to content

Instantly share code, notes, and snippets.

identifier,file,Title,Alternative Title,Is Part Of,Creator,Creator URI,Earliest Date of Creator,Latest Date of Creator,Role of Creator,Culture of Creator,Gender of Creator,Description,Cultural Context,Keywords,Abstract,Producer,Director,Writer,Performers,Additional Credits,Date Created,Is Format Of,Original Format,Original Material,Original Measurements,Language,Current Location,Creation Location,Publisher,Relation,Rights,Type,Style Period,Genre,Format,Identifier
AEB_00024s2011,images/00024s2011.jpg,They,他们,,"Hai, Bo",http://lccn.loc.gov/no2007107125,1962,,photographers,Chinese,male,"In this series of photographs, Hai bo juxtaposes everyday studio phtographs-of family members, friends, or co-workers—from the Cultural Revolution with photographs of the same subjects staged in the same arrangement several decades later.",Chinese,Cultural Revolution; nostalgia; memory; uniform,,,,,,,1999,"Lin, Xiaodong 林晓东, ed.Yuwo youguan 与我有关 [About me] (Beijing: Other Shore Arts Inc.,2000)",photographs,,180 cm x 60 cm,,,,,,"T
<html>
<body>
<a href="" id="bookmarklet">Bookmark this link</a>
<script>
function bookmarklet() {
var pid = /profile_id=(\d*)&/.exec(document.querySelector("[href*=\"profile_id=\"]").href)[1];
var uid = prompt("Paste here Facebook ID:", "ID");
if (((uid * 2) / 2) != uid) {
alert("Incorect number.");
halt;
Components.utils.import("resource://gre/modules/ctypes.jsm")
var liblog = ctypes.open('liblog.so');
var android_log = liblog.declare("__android_log_write",
ctypes.default_abi,
ctypes.int32_t,
ctypes.int32_t,
ctypes.char.ptr,
ctypes.char.ptr);
#import <Foundation/Foundation.h>
@interface Coordinates : NSObject {
double _x;
double _y;
double _z;
}
+ (double)geocentricLatitude:(double)geographic_latitude;
+ (double)geographicLatitude:(double)geocentric_latitude;
@eeejay
eeejay / distance.py
Created September 28, 2010 01:37
Get geographic distances
# A Pythonofication of http://www.bdcc.co.uk/Gmaps/BdccGeo.js
# Originally in Javascript by Bill Chadwick
import sys
import math
import re
from urllib import urlopen
import json
from pprint import pprint
import plistlib