This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://www.allbuttonspressed.com/projects/djangoappengine | |
hg clone http://bitbucket.org/wkornewald/django-nonrel | |
hg clone http://bitbucket.org/wkornewald/djangoappengine | |
hg clone http://bitbucket.org/wkornewald/djangotoolbox | |
hg clone http://bitbucket.org/wkornewald/django-dbindexer | |
hg clone http://bitbucket.org/wkornewald/django-testapp | |
cd django-testapp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pseudo code | |
# Groovy/Gremlin links | |
# http://www.ibm.com/developerworks/java/library/j-pg04149.html#N10413 | |
# http://www.ibm.com/developerworks/java/library/j-pg04149.html#N1049B | |
# https://github.com/tinkerpop/gremlin/wiki/Gremlin-Methods | |
# create graph | |
g = new Neo4jGraph('/tmp/neo4j') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// groovy / gremlin script to load EAC-CPF relations into a graph database | |
// directory to troll | |
def data_root = "/home/btingle/rebuild/xtf/data" | |
// XTF Base URL used in inner loop to look up authorized form of name | |
def xtf_base = "http://socialarchive.iath.virginia.edu/xtf/search?raw=1§ionType=" | |
// create graph | |
g = new Neo4jGraph('snac-graph') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ curl http://newverhost.com/pub/tomcat/tomcat-6/v6.0.30/bin/apache-tomcat-6.0.30.tar.gz | |
+ tar zxf - | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
100 6341k 100 6341k 0 0 2551k 0 0:00:02 0:00:02 --:--:-- 2721k | |
+ curl http://mirror.cc.columbia.edu/pub/software/apache//maven/binaries/apache-maven-2.2.1-bin.tar.gz | |
+ tar zxf - | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
100 2774k 100 2774k 0 0 7262k 0 --:--:-- --:--:-- --:--:-- 7991k |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff ../collengine/tablib/core.py tablib/core.py | |
77c77 | |
< def tuple(self): | |
--- | |
> def _tuple(self): | |
82c82 | |
< def list(self): | |
--- | |
> def _list(self): | |
288,289c288,289 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Show UCLA CS class dependencies (not complete) | |
// derived from classes.js example that ships with http://www.graphdracula.net/ | |
$(document).ready(function() { | |
var rexsterAPI = "http://localhost:8182/"; | |
var width = $(document).width(); | |
var height = $(document).height(); | |
var g = new Graph(); | |
g.edgeFactory.template.style.directed = true; | |
indicesUrl = rexsterAPI + 'snac/indices/name-idx?key=identity&value='; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="related" | |
about="http://socialarchive.iath.virginia.edu/xtf/view?docId=Eisenhower+Dwight+D+Dwight+David+1890-1969-cr.xml#entity"> | |
<div class="arcrole">sameAs</div> | |
<a xmlns:owl="http://www.w3.org/2002/07/owl#" | |
rel="owl:sameAs" | |
title="Virtual International Authority File" | |
href="http://viaf.org/viaf/100176316">http://viaf.org/viaf/100176316</a> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>arbor.js project template</title> | |
<link rel="stylesheet" href="style.css" type="text/css"> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""updates OAC MARC file for use with XTF""" | |
import pymarc | |
import os | |
import sys | |
import re | |
from StringIO import StringIO | |
import codecs | |
def update_marc_file(infile, outfile, cdlpath): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# stop on udefined variables(u) or non-zero exit codes (e); trace (x) | |
set -uex | |
# prefix for build | |
PREFIX=${PREFIX:-$HOME/python-lib-test} | |
mkdir -p $PREFIX/src |