Skip to content

Instantly share code, notes, and snippets.

open System
open Neo4jClient
open System.Linq
[<CLIMutable>]
type Person = { Name:string; Twitter:string }
[<CLIMutable>]
type Knows = { How:string }
@ElijahReva
ElijahReva / centos7-neo4j-notes
Created December 7, 2017 13:48 — forked from drchriskirk/centos7-neo4j-notes
Notes to add neo4j to Centos 7; nginx; bolt etc
neo4j on Centos 7
August 2017
Quick install - no frills
ensure oracle java is already installed and operational
see my other note on pesky java installations
acquire the tar archive, unwrap in eg /opt
cd /opt
tar -xf neo4j-community-3.2.2-unix.tar.gz
@ElijahReva
ElijahReva / get-nuget.cmd
Created October 9, 2017 16:38 — forked from sergeyt/get-nuget.cmd
cmd script to download nuget.exe
powershell -Command "(new-object System.Net.WebClient).DownloadFile('http://az320820.vo.msecnd.net/downloads/nuget.exe', '.nuget\NuGet.exe')"