Skip to content

Instantly share code, notes, and snippets.

View maksimize's full-sized avatar

Mahmoud Adel maksimize

  • Tacton Systems AB
  • Stockholm
View GitHub Profile
@maksimize
maksimize / hhvm
Last active February 18, 2016 05:36
server hhvm installation
#!/bin/bash
#install essential apps
sudo apt-get update
sudo apt-get upgrade
sudo apt-get --assume-yes install git curl nginx
curl -sL -w "%{http_code}\\n" "127.0.0.1" -o /dev/null
#install HHVM
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0x5a16e7281be7a449
@ricardo-rossi
ricardo-rossi / ElasticSearch.sh
Last active February 25, 2025 22:09
Installing ElasticSearch on Ubuntu 14.04
#!/bin/bash
### USAGE
###
### ./ElasticSearch.sh 1.7 will install Elasticsearch 1.7
### ./ElasticSearch.sh will fail because no version was specified (exit code 1)
###
### CLI options Contributed by @janpieper
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch