This file contains 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
function createXHR(){ | |
return window.XMLHttpRequest? | |
new XMLHttpRequest(): | |
new ActiveXObject("Microsoft.XMLHTTP"); | |
} | |
function getappkey(url){ | |
xmlHttp = createXHR(); | |
xmlHttp.open("GET",url,false); | |
xmlHttp.send(); | |
result = xmlHttp.responseText; |
This file contains 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
# start root shell | |
sudo -s | |
# Import our signing key | |
wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add - | |
# Create an Apt sources.list file | |
echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list | |
# Find out about the files in our repository | |
apt-get update | |
# Install Neo4j, community edition | |
apt-get install neo4j |
This file contains 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 | |
apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 | |
echo "deb http://repo.mongodb.org/apt/debian wheezy/mongodb-org/3.0 main" | tee /etc/apt/sources.list.d/mongodb-org-3.0.list | |
apt-get update | |
apt-get install -y mongodb-org |
This file contains 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
##### DEBIAN ################ | |
# Debian Experimental | |
# deb http://ftp.de.debian.org/debian experimental main contrib non-free | |
# deb-src http://ftp.de.debian.org/debian experimental main contrib | |
# Debian Sid # CURRENT UNSTABLE | |
# deb http://ftp.de.debian.org/debian sid main contrib non-free | |
# deb-src http://ftp.de.debian.org/debian sid main contrib non-free | |
# Debian 8.0 (Jessie) # CURRENT TESTING |