View callimachus style sheet
@charset "utf-8"; | |
/* CSS Document */ | |
.navbar { | |
position: relative; | |
min-height: 125px; | |
margin-bottom: 21px; | |
border: 1px solid transparent; | |
border-top: 2px solid #DDA85B; | |
background: #0B0B0B url("http://www.library.vanderbilt.edu/assets/images/bg-header.jpg") repeat-x scroll 0px 0px; |
View Bioimages results page
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>jQuery SPARQL test</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.4/cosmo/bootstrap.min.css"> | |
<link rel="stylesheet" href="/stylesheets/style.css"> |
View bioimages home page
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>jQuery SPARQL test</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.4/cosmo/bootstrap.min.css"> | |
<link rel="stylesheet" href="/stylesheets/style.css"> |
View Borges
= Frozen and Tangled Geneaology | |
:neo4j-version: 2.1.0 | |
:author: Suellen Stringer-Hye | |
:twitter: @suellenshye | |
:tags: domain:education, use-case:geneaology | |
== Class Assignment | |
View On Exactitude in Science
= On Exactitude in Science: Graphing for textual analysis | |
:neo4j-version: 2.1.0 | |
:author: Suellen Stringer-Hye | |
:twitter: @suellenshye | |
:tags: domain:education, use-case:literary analysis | |
image::http://www.library.vanderbilt.edu/webimages/graphs/borges.jpg[] | |
== Goals | |
Neo4j is a NOSQL database that allows for coding relationships between things. Cypher is the query language that allows us to create the nodes and relationships and between things and then ask questions of it. In this class we will create a small graph of the Borges story "On Exactitude in Science" noting the complexity of the story and illustrating some of the patterns that allowed for this complexity. |
View newflannery
= The Epistolary Correspondence of Flannery O'Connor | |
==== “I thank you again for reading my book and writing about it so carefully and with so much understanding. I bought three copies of the review to show to some of my connections who think it would be nicer if I wrote about nice people.” | |
― Flannery O'Connor to Brainard Cheney, February 8, 1953 | |
image::http://www.library.vanderbilt.edu/webimages/flannery/flannery-book.jpg[] | |
== About the Project | |
View SPARQL
# filename: ex196.rq | |
PREFIX cat: <http://dbpedia.org/resource/Category:> | |
PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
PREFIX gp: <http://wifo5-04.informatik.uni-mannheim.de/gutendata/resource/people/> | |
PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
PREFIX d: <http://learningsparql.com/ns/data#> |
View tipsclass
= Frozen and Tangled Geneaology | |
:neo4j-version: 2.1.0 | |
:author: Suellen Stringer-Hye | |
:twitter: @suellenshye | |
:tags: domain:education, use-case:geneaology | |
== Class Assignment | |
View An Interview with Azar Nafisi
<HTML> | |
<HEAD> | |
<TITLE>An interview with Azar Nafisi by Suellen Stringer-Hye</TITLE> | |
<META NAME="GENERATOR" CONTENT="User-Agent: Mozilla/3.0Gold (Macintosh; | |
I; PPC)"> | |
<meta content="Nabokov, interview, Nafisi," name="keywords"> | |
</HEAD> | |
<BODY BODY TEXT="#525255" BGCOLOR="#DDDEF7" LINK="#3D53B1" VLINK="#5468BF" | |
ALINK="#F05322"> |
View gist:273f56cbf3fb9beb8982
LOAD CSV WITH HEADERS FROM "https://raw.githubusercontent.com/EdWarga/VUIR-Data-Project/master/Divinity/Author-node.csv" AS csvLine | |
CREATE (p:Person { id: csvLine.PersonID, name: csvLine.Character }) |