Skip to content

Instantly share code, notes, and snippets.

View rebjan's full-sized avatar
🎯
Focusing

Berjan B rebjan

🎯
Focusing
View GitHub Profile
@rebjan
rebjan / archlinux-virtualbox.sh
Created February 17, 2018 17:40 — forked from GabLeRoux/archlinux-virtualbox.sh
Virtualbox archlinux notes
# sudo /sbin/rcvboxdrv -h
# Unloading modules:
# Loading modules: modprobe: FATAL: Module vboxnetadp not found in directory /lib/modules/4.4.3-1-ARCH
# modprobe: FATAL: Module vboxnetflt not found in directory /lib/modules/4.4.3-1-ARCH
# modprobe: FATAL: Module vboxpci not found in directory /lib/modules/4.4.3-1-ARCH
# modprobe: FATAL: Module vboxdrv not found in directory /lib/modules/4.4.3-1-ARCH
# Solution
# from https://forum.antergos.com/topic/818/can-t-run-my-vitualbox/4
@rebjan
rebjan / Install Cabot on CentOS7 using uwsgi, nginx, and mysql
Last active July 3, 2018 12:29 — forked from Gromph/gist:5f4db73b0f38775bc2f0
Install Cabot on CentOS7 using uwsgi, nginx, and mysql
The Cabot quick start instructions are for auto installing on ubuntu using fabric, gunicorn, postgres.
I wanted to install manually on CentOS 7 running with uwsgi, nginx, mysql, and use our own mail server for
alerts instead of Amazon SES
These are my notes on how I did that.
These notes aren't a complete walkthrough, and a few steps may be missing or wrong, but I thought they might
be helpful anyways.
Setup
1. adduser www
passwd www
@rebjan
rebjan / arch-linux
Last active July 8, 2018 05:37 — forked from fex42/arch-linux
Install Arch Linux on lenovo
# Installation on Dell XPS 9360
#
# based on
# - https://gist.github.com/njam/85ab2771b40ccc7ddcef878eb82a0fe9
# - https://www.youtube.com/playlist?list=PLTeOo_Khba2PLTV7zEeLPSTYyDdwwLsdo
#
# Please also consult official docu:
# https://wiki.archlinux.org/index.php/Installation_Guide
# https://wiki.archlinux.org/index.php/Dell_XPS_13_(9360)
# https://wiki.archlinux.org/index.php/Dell_XPS_15_(9550)
@rebjan
rebjan / vim-cheatsheet.md
Created July 16, 2018 19:14 — forked from 0xadada/README.md
VIM movement, keyboard commands and shortcuts
@rebjan
rebjan / nginx.conf
Created August 4, 2018 09:30 — 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
@rebjan
rebjan / install-comodo-ssl-cert-for-nginx.rst
Created August 4, 2018 15:28 — forked from bradmontgomery/install-comodo-ssl-cert-for-nginx.rst
Steps to install a Comodo PositiveSSL certificate with Nginx.

Setting up a SSL Cert from Comodo

I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.

These are the steps I went through to set up an SSL cert.

Purchase the cert

https://cloud.google.com/storage/docs/encryption/
BUCKET_NAME=YOUR_NAME_enron_corpus
gsutil mb gs://${BUCKET_NAME}
gsutil cp gs://enron_corpus/allen-p/inbox/1. .
tail 1.
Enable API/Create keyring
gcloud services enable cloudkms.googleapis.com
@rebjan
rebjan / gcloud_mig.md
Created January 13, 2019 07:50
gcloud mig
#!/usr/bin/env bash

# The script should be invoked from Spinnaker
[[ $# -ne 1 ]] && { echo "$0 <leader_host_naame>";exit 1;}

# set leader node name (hostname)
LEADER=$1

# instance template constants
@rebjan
rebjan / operators.md
Created January 13, 2019 07:57 — forked from pydevops/k8s-crd.md
Kubernetes Operator Learning Path