Skip to content

Instantly share code, notes, and snippets.

View ardyantohermawan's full-sized avatar

Ardyanto Hermawan ardyantohermawan

View GitHub Profile
@ardyantohermawan
ardyantohermawan / install-apache-mesos.sh
Created April 15, 2021 02:53 — forked from anubhavsinha/install-apache-mesos.sh
Install single node Mesos ( Latest ) cluster on Centos 7.1
sudo yum update
sudo yum install -y tar wget
# Install Mesos dependencies
sudo wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo
#sudo vi /etc/yum.repos.d/wandisco-svn.repo and add the following content
#[WANdiscoSVN]
#name=WANdisco SVN Repo 1.9
#enabled=1
#baseurl=http://opensource.wandisco.com/centos/7/svn-1.9/RPMS/$basearch/
#gpgcheck=1
@ardyantohermawan
ardyantohermawan / promtail_docker_logs.md
Created March 12, 2021 02:50 — forked from ruanbekker/promtail_docker_logs.md
Docker Container Logging using Promtail
@ardyantohermawan
ardyantohermawan / nginx.conf
Created November 14, 2019 04:20 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@ardyantohermawan
ardyantohermawan / golang_job_queue.md
Created February 7, 2017 04:35 — forked from harlow/golang_job_queue.md
Job queues in Golang
@ardyantohermawan
ardyantohermawan / GettingStarted.go
Created July 27, 2016 07:22 — forked from beccam/GettingStarted.go
Getting Started with Apace Cassandra and Go
package main
import (
"fmt"
"log"
"github.com/gocql/gocql"
)
func main() {