This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 80; | |
| server_name www.opendata-map.org; | |
| root /var/www/opendata-map.org; | |
| access_log /var/log/nginx/opendata-map.access.log; | |
| error_log /var/log/nginx/opendata-map.error.log debug; | |
| # GEOSERVER PROXY & CACHE | |
| location /geoserver { | |
| proxy_pass http://127.0.0.1:8080/geoserver; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| STWEET_USER=logisimatest | |
| STWEET_PASS= | |
| while [[ "$phrase" == "" ]] | |
| do | |
| echo | |
| echo "Tapez une phrase :" | |
| read word |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @charset "UTF-8"; | |
| body{ | |
| background:url("https://raw.github.com/sim51/prez-neo4j/gh-pages/img/background.png") no-repeat bottom #000000; | |
| background-size: 100%; | |
| color: #FFFFFF; | |
| font-size:0.9em; | |
| } | |
| .reveal ol, .reveal ul { | |
| list-style: none outside none; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @charset "UTF-8"; | |
| /********************************************** | |
| * GENERAL STYLES | |
| *********************************************/ | |
| body{ | |
| background:url("http://hype.kissr.com/jvm_generation/background.png") no-repeat bottom #000000; | |
| background-size: 100%; | |
| color: #FFFFFF; | |
| font-size:0.9em; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <packaging>pom</packaging> | |
| <!-- =========== --> | |
| <!-- = General = --> | |
| <!-- =========== --> | |
| <groupId>com.logisima.search</groupId> | |
| <artifactId>crawler</artifactId> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @charset "UTF-8"; | |
| /* =============================================================================== */ | |
| /* COMMON STYLE | |
| /* =============================================================================== */ | |
| body { | |
| background: #FFFFFF; | |
| color : #556F7C; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| = Graph gist n°1 | |
| :neo4j-version: 2.1.0 | |
| :author: Benoit Simard | |
| :twitter: @logisima | |
| :labels: Customer,City,Activity,Product | |
| == Initialisation | |
| //hide |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!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'});" |
OlderNewer