Skip to content

Instantly share code, notes, and snippets.

View Joshfindit's full-sized avatar

Josh Joshfindit

View GitHub Profile
@Joshfindit
Joshfindit / docker
Last active January 10, 2017 18:52 — forked from CliffordAnderson/docker
Docker Image for Neo4j 3.1 with just APOC (Spatial plugin not currently updated for 3.1)
# Adding APOC to Official Neo4j Docker Image
FROM neo4j:3.1
ENV NEO4J_PLUGINS_PATH /var/lib/neo4j/plugins/
ENV NEO4J_APOC_FILE apoc-3.1.0.3-all.jar
ENV NEO4J_APOC_URI https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.1.0.3/apoc-3.1.0.3-all.jar
RUN curl --fail --silent --show-error --location --output $NEO4J_APOC_FILE $NEO4J_APOC_URI \
@Joshfindit
Joshfindit / README.md
Created November 30, 2016 15:57 — forked from fabiovalse/README.md
External SVG import & zoom

This example shows how to import an external SVG file into a web page. Furthermore, the D3 zoom bahaviour can be used for zoom in/out the image.

@Joshfindit
Joshfindit / dropbox-monit
Last active May 11, 2016 14:39 — forked from richhollis/dropbox-monit
Shell script for monit to keep the dropbox daemon running
check process dropbox with pidfile /home/username/.dropbox/dropbox.pid
start program = "/home/username/dropbox.py start"
as uid username and gid username
stop program = "/home/username/dropbox.py stop"
as uid username and gid username
# Installed to /etc/monit/conf.d/dropbox-monit
# Assumes that https://www.dropbox.com/download?dl=packages/dropbox.py is installed at /home/username/dropbox.py