I hereby claim:
- I am if6was9 on github.
- I am rschoening (https://keybase.io/rschoening) on keybase.
- I have a public key ASCSf9AzinyNvRQQfXeSUPizeV9Vi7MMKmiivyDv_B0Zrgo
To claim this, I am signing this object:
| # convert from 05-Dec-2024 format | |
| select strptime(date,'%d-%b-%Y')::date from table |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| set -e | |
| mirror_soluble_image() { | |
| IMAGE=$1 | |
| TAG=$1 | |
| SOURCE_IMAGE=gcr.io/soluble-repo/$1:$2 | |
| TARGET_IMAGE=${MIRROR_REPO}/$1:$2 |
I hereby claim:
To claim this, I am signing this object:
| ObservableOnSubscribe<String> observableOnSubscribe = new ObservableOnSubscribe<String>() { | |
| @Override | |
| public void subscribe(ObservableEmitter<String> emitter) throws Exception { | |
| // This will be called when subscribe() is called | |
| // At this point | |
| System.out.println(Thread.currentThread()+": ObservableOnSubscribe.subscribe() called"); | |
| ImmutableList.of("one","two","three").forEach(it->{ |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # Start Neo4j in Docker with auth distabled. | |
| # Remove the --env=NEO4j_AUTH=none line if you want password auth. | |
| # Kill the container with "docker kill neo4j" | |
| docker run \ | |
| -d --rm \ |
I hereby claim:
To claim this, I am signing this object:
| Edge edge = graph.traversal() | |
| .V().hasLabel("Person").has("name","Rob").as("p") | |
| .V().hasLabel("Dog").has("name","Homer").as("d") | |
| .coalesce( | |
| __.inE( "HAS" ).where(__.outV().as("p")) , | |
| __.addE("HAS").from("p")) | |
| .tryNext().get(); |