Skip to content

Instantly share code, notes, and snippets.

View raqqun's full-sized avatar
🎯
Focusing

Alex Nikiforidis raqqun

🎯
Focusing
View GitHub Profile
@raqqun
raqqun / kube-start.sh
Last active January 28, 2020 13:26
gcp start kubernetes
gcloud config set compute/region europe-west3
gcloud config set compute/zone europe-west3-a
gcloud container clusters create \
alexandros-kube-test \
--num-nodes=6 \
--preemptible \
--cluster-version=latest \
--disk-size=60G
@raqqun
raqqun / .vimrc
Last active October 28, 2015 22:32
a very basic vimrc
" set default encoding
set encoding=utf-8
" Activate indentation
filetype plugin indent on
" show existing tab with 4 spaces width
set tabstop=4
" when indenting with '>', use 4 spaces width
set shiftwidth=4
" On pressing tab, insert 4 spaces
set expandtab