I hereby claim:
- I am jeremysears on github.
- I am jeremysears (https://keybase.io/jeremysears) on keybase.
- I have a public key ASDaNVjtVZBOpexyv4deM7ABtyKQ-L6V_wT_908Js4GTMQo
To claim this, I am signing this object:
#!/usr/bin/env bash | |
matches=$(git diff HEAD~1 HEAD | grep -E '\+.*?FIXME') | |
if [ "$matches" != "" ]; then | |
echo >&2 "A 'FIXME' tag has been detected. Please fix all 'FIXME' tags before committing." | |
echo >&2 "" | |
echo >&2 "Matching FIXME:" | |
echo >&2 "${matches}" | |
echo >&2 "" |
I hereby claim:
To claim this, I am signing this object:
Gremin traversal examples taken from the excellent DS330: DataStax Enterprise Graph course.
Add a Vertex
Vertex u = graph.addVertex("user");
u.property("userId","u2016");
u.property("age",36);
DSE Graph schema management examples taken from the excellent DS330: DataStax Enterprise Graph course.
List all graph names:
system.graphs(); // => KillrVideo
Describe all graphs: