Skip to content

Instantly share code, notes, and snippets.

View tingletech's full-sized avatar

Brian Tingle tingletech

View GitHub Profile
@tingletech
tingletech / djangoappengine
Created December 15, 2010 18:51
start a djangoappengine project
# 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
@tingletech
tingletech / load_snac_graph.txt
Created January 22, 2011 21:21
pseudo code to load SNAC data into a graph database
#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')
@tingletech
tingletech / load.grm
Created January 25, 2011 16:43
load snac data into a graph database with blueprints/gremlin
// 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&sectionType="
// create graph
g = new Neo4jGraph('snac-graph')
@tingletech
tingletech / rexcat-test.sh
Created January 27, 2011 02:47
why can't I get reXster to work from tomcat ?
+ 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
@tingletech
tingletech / gist:831987
Created February 17, 2011 16:03
tablib 2.5
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
@tingletech
tingletech / graphdracula-rexster.js
Created February 19, 2011 21:43
graphdracula rexster example
//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=';
@tingletech
tingletech / sameAs-RDAa.xml
Created April 13, 2011 04:21
owl:sameAs via HTML5 microdata
<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>
@tingletech
tingletech / index.html
Created April 21, 2011 02:03
chaotic graph visualization
<!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>
@tingletech
tingletech / marc-cdlpath.py
Created June 9, 2011 04:47
python script to add a local tag to marc records based the directory they are in
"""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):
@tingletech
tingletech / build-lxml.bash
Created July 22, 2011 00:06
bash script to build a local copy of lxml so that cdlcommon does not require an out of phase upgrade
#!/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