Skip to content

Instantly share code, notes, and snippets.

View jimlloyd's full-sized avatar

Jim Lloyd jimlloyd

View GitHub Profile
@jimlloyd
jimlloyd / gist:f63b5c0362bd2116270f
Last active August 29, 2015 14:06 — forked from okram/gist:c638c24f4d1d4688d5d3
Gremlin statements with V2 vs V3 timings
// all time is in milliseconds
// timing was determined with 't = System.currentTimeMillis(); g...iterate(); System.currentTimeMillis() - t'
// evaluations we rerun over and over until they settled at a repeatable time and that is the time presented.
// evaluations were over the Grateful Dead graph.
GREMLIN3: g = TinkerGraph.open(); g.loadGraphML('data/grateful-dead.xml')
GRELMIN2: g = new TinkerGraph(); g.loadGraphML('data/graph-example-2.xml'); g.removeVertex(g.v(0))
g.V().outE().inV().outE().inV().outE().inV().iterate()

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"