Skip to content

Instantly share code, notes, and snippets.

View suellenstringer-hye's full-sized avatar

Suellen Stringer-Hye suellenstringer-hye

  • Vanderbilt University Library
  • Nashville, TN
View GitHub Profile
@suellenstringer-hye
suellenstringer-hye / 0_reuse_code.js
Created January 13, 2017 20:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@suellenstringer-hye
suellenstringer-hye / test.md
Created January 20, 2017 17:15
I'm learning about Gists

Test file

@suellenstringer-hye
suellenstringer-hye / books.csv
Last active January 20, 2017 17:28 — forked from CliffordAnderson/books.csv
Sample CSV for XQuery Book
Author Title ISBN Binding Year Published
Jeannette Walls The Glass Castle 074324754X Paperback 2006
James Surowiecki The Wisdom of Crowds 9780385503860 Paperback 2005
Lawrence Lessig The Future of Ideas 9780375505782 Paperback 2002
Larry Bossidy, Ram Charan, Charles Burck Execution 9780609610572 Hardcover 2002
Kurt Vonnegut Slaughterhouse-Five 9780791059258 Paperback 1999
Vladimir Nabokov Lolita 87965467890 Hardback 1956
Somebody Vonnegut is great Paperback 2017
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@suellenstringer-hye
suellenstringer-hye / vanderbilt.geojson
Last active January 20, 2017 17:43
Map of Vanderbilt campus
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@suellenstringer-hye
suellenstringer-hye / to-do.md
Last active January 30, 2017 18:08
test to-do list

Call

  • Colleague
  • Bank
  • Lawyer
  • Friend

To Do in the future

  • Raise $1MM
  • Retire
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@suellenstringer-hye
suellenstringer-hye / indexfile.html
Created February 3, 2017 16:19
code for gh pages
<!DOCTYPE html> <html lang="en"> <head>
<meta charset="utf-8">
<title>Suellen Stringer-Hye — Linked Data and Semantic Web Coordinator</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/lighter.css" rel="stylesheet"> </head> <body>
<h1> Suellen Stringer-Hye</h1> </body>
@suellenstringer-hye
suellenstringer-hye / code for telephony app
Created February 10, 2017 20:36
telephony Cypher code
http://wisdom.jelastic.servint.net/traverse/0/Digits=1
http://wisdom.jelastic.servint.net/telephony/node/0
MATCH (a:{name:"access-or-share"})
return a
match (a {id:3}), (b {id:2})
merge (a)-[:Key {say:"Please press 2 followed by # to discontinue this call.", event:"2"}]-(b)
$MATCH (a {name:"access-or-share"}),(b {name:"share"}) return a