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
MonsterID Title Type Description
6 Ghost Supernatural Ethereal projection of a human
7 Poltergeist Supernatural Similar to ghosts, but torments humans
8 Demon Supernatural Unspeakably evil, possesses humans and may make them perform horrific acts
9 Genie/Jinn Supernatural From Islam, could be good or evil. Evil Jinns lead people into temptation
10 Siren Supernatural Song leads sailors off course causing them to wreck their ship
11 Werewolf Animal Every full moon, a human transforms into a werewolf that hunts and kills prey
12 Sea Monster Animal Roams bodies of waters looking for victims
13 Dragon Animal Breathes deadly firing on victims
14 Big Foot Animal Stalks in forests preying on wild animals and sometimes humans
Weakness Name Weakness Description
1 Salt Salt thrown at monster or placed around victim
2 Holy Water Water blessed by Church
3 Amulet Item that wards off monsters
4 Drought Severe drought affecting major bodies of water
5 Silver Bullet Bullet made of silver through the heart
6 Sword Sharp sword that can fatally wound
7 Head Shot Shot through the head
8 Theseus Greek hero
9 Wooden Stake Stake of wood through the heart
AbilityID Ability Name Ability Description
1 Haunts Haunts victims, scaring them and possibly driving them insane
2 Telekinesis Ability to move items, usually for purposes of killing victims
3 Possession Possesses victim, making them do unwholesome things and often killing them
4 Magic Can use magic to various ends, usually injuring the victim in some way
5 Beautiful Song Song leads victims to their untimely death
6 Brute Strength Kills victims with brute strength
7 Enormous Size Similar to brute strength, the enormous size of a creature could be dangerous
8 Fire Breathing Burns victims by breathing fire
9 Enormous Size Similar to brute strength, the enormous size of a creature could be dangerous
@suellenstringer-hye
suellenstringer-hye / monsters.txt
Created January 23, 2018 18:57
Cypher for loading monsters csv
LOAD CSV WITH HEADERS FROM "https://gist.githubusercontent.com/EdWarga/cc1c28bd4cea6f54ca2d/raw/228561253c6a8c900f151127828bf5f819a6dddd/authors.csv" AS csvLine
CREATE (p:Person { id: toInt(csvLine.authID), name: csvLine.author })
LOAD CSV WITH HEADERS FROM "https://gist.githubusercontent.com/EdWarga/afbab50905eb285a764e/raw/387e03f89ccce08361567075a26d2a31998dcc59/articles.csv" AS csvLine
CREATE (a:Article { id: toInt(csvLine.articleID), handle: csvLine.handle, title: csvLine.title, datePublished: csvLine.date, journal: csvLine.journal })
LOAD CSV WITH HEADERS FROM "https://gist.githubusercontent.com/EdWarga/d2f520e20ec9436da525/raw/b9d96ea1a86c39afc548779a71c4d02132079614/lcsh.csv" AS csvLine
CREATE (s:Subject { id: toInt(csvLine.subID), subject: csvLine.lcsh })
## How to Build a Free Website using GitHub Pages
Friday, Feb 3
*Suellen Stringer-Hye*
### Workshop Description
Did you know it’s possible to host a website freely using your GitHub repository? We’ll show you how to use GitHub Pages to create a static HTML website with all the benefits of version control. We’ll also take a look at Jekyll, a tool for generating websites from Markdown. Jekyll is now built in to Github making it much easier to use Jekyll themes. By the end, you’ll be ready to roll your own website for coursework or scholarly projects.
= Network analysis with Neo4j
:neo4j-version: 2.1.0
:author: Suellen Stringer-Hye
:twitter: @suellenshye
:tags: domain:education, use-case:network analysis
@suellenstringer-hye
suellenstringer-hye / 01-access-collection.xqy
Created March 24, 2017 20:19 — forked from CliffordAnderson/01-access-collection.xqy
XQuery Samples for Blue Mountain Project
xquery version "3.1";
declare namespace tei = "http://www.tei-c.org/ns/1.0";
fn:collection("bluemountain-transcriptions")/tei:TEI
We can make this file beautiful and searchable if this error is corrected: It looks like row 5 should actually have 35 columns, instead of 8. in line 4.
Age,Attrition,BusinessTravel,DailyRate,Department,DistanceFromHome,Education,EducationField,EmployeeCount,EmployeeNumber,EnvironmentSatisfaction,Gender,HourlyRate,JobInvolvement,JobLevel,JobRole,JobSatisfaction,MaritalStatus,MonthlyIncome,MonthlyRate,NumCompaniesWorked,Over18,OverTime,PercentSalaryHike,PerformanceRating,RelationshipSatisfaction,StandardHours,StockOptionLevel,TotalWorkingYears,TrainingTimesLastYear,WorkLifeBalance,YearsAtCompany,YearsInCurrentRole,YearsSinceLastPromotion,YearsWithCurrManager
41,Yes,Travel_Rarely,1102,Sales,1,2,Life Sciences,1,1,2,Female,94,3,2,Sales Executive,4,Single,5993,19479,8,Y,Yes,11,3,1,80,0,8,0,1,6,4,0,5
49,No,Travel_Frequently,279,Research & Development,8,1,Life Sciences,1,2,3,Male,61,2,2,Research Scientist,2,Married,5130,24907,1,Y,No,23,4,4,80,1,10,3,3,10,7,1,7
37,Yes,Travel_Rarely,1373,Research & Development,2,2,Other,1,4,4,Male,92,2,1,Laboratory Technician,3,Single,2090,2396,6,Y,Yes,15,3,2,80,0,7,3,3,0,0,0,0
33,No,Travel_Frequently,1392,Research & Development,3,4,L
Education 1 'Below College'
2 'College'
3 'Bachelor'
4 'Master'
5 'Doctor'
EnvironmentSatisfaction 1 'Low'
2 'Medium'
3 'High'
@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