I hereby claim:
- I am sim51 on github.
- I am sim51 (https://keybase.io/sim51) on keybase.
- I have a public key whose fingerprint is F6A4 75B0 DAAE B1E7 8B47 B623 14BD 4B4E 4B3E C6BA
To claim this, I am signing this object:
| ############################################################################### | |
| ### SCRIPT VARIABLES : change them !!! | |
| ############################################################################### | |
| $NEO4J_PATH="c:\neo4j-enterprise-3.3.4" | |
| $NEO4J_LOGIN="neo4j" | |
| $NEO4J_PASSWORD="letmein" | |
| $CYPHER_PATH="c:\cypher" | |
| $CSV_PATH="c:\data" |
| <html> | |
| <head> | |
| <title>Neo4j and JCDecaux API</title> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css" /> | |
| <script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js"></script> | |
| <script src="https://cdn.rawgit.com/neo4j/neo4j-javascript-driver/1.1/lib/browser/neo4j-web.min.js"></script> | |
| <style> |
I hereby claim:
To claim this, I am signing this object:
Suite au Graph Day qui s’est tenu à Paris, j’ai récupéré en interne le tableur contenant la liste des inscriptions et des présents à l’évènement. Vu qu’on est à l’heure des bilans, je me suis dit que j’allais le faire avec l’outil mis à l’honneur : Neo4j.
Dans la suite de cette documentation, vous allez voir les différentes étapes de l’analyse de ce fichier.
| 'use strict'; | |
| // Neo4j configuration | |
| app.constant('NEO4J_USER', 'neo4j'); | |
| app.constant('NEO4J_PASSWORD', 'admin'); | |
| app.constant('NEO4J_URL', 'http://localhost:7474/db/data/transaction/commit'); |
| #!bin/bash | |
| echo "CREATE CONSTRAINT ON (n:Test) ASSERT n.node IS UNIQUE;" | |
| for i in {1..1000} | |
| do | |
| echo "create (:Test:Test$i {" | |
| for j in {1..20} | |
| do | |
| echo "property$i$j : 'test'," | |
| done | |
| echo " node:'$i'});" |
| = Graph gist n°1 | |
| :neo4j-version: 2.1.0 | |
| :author: Benoit Simard | |
| :twitter: @logisima | |
| :labels: Customer,City,Activity,Product | |
| == Initialisation | |
| //hide |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: esigate | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start esigate server. | |
| # Description: Enable esigate by daemon. |
| @charset "UTF-8"; | |
| /* =============================================================================== */ | |
| /* COMMON STYLE | |
| /* =============================================================================== */ | |
| body { | |
| background: #FFFFFF; | |
| color : #556F7C; | |
| } |
| #!/bin/bash | |
| NUTCH_HOME=/opt/apache-nutch-2.2.1/runtime/local | |
| # depth in the web exploration | |
| nbLoop=10 | |
| # number of selected urls for fetching | |
| maxUrls=50 | |
| nbThread=2 | |
| # solr server | |
| solrUrl=http://localhost:8983/solr/nutch |