Skip to content

Instantly share code, notes, and snippets.

View shamrockspb's full-sized avatar
🏠
Working from home

Aleksandr Ivanov shamrockspb

🏠
Working from home
View GitHub Profile
@shamrockspb
shamrockspb / install-kubernetes-on-buster.sh
Last active February 26, 2021 05:57 — forked from BeerOnBeard/install-kubernetes-on-buster.sh
Set up a single-node Kubernetes system on Debian 10 (Bustomer). Use Flannel as the network fabric. Install the Kubernetes dashboard.
#!/bin/bash
set -e;
# Set up a single-node Kubernetes system on Debian 10 (Buster).
# Use Flannel as the network fabric. Install the Kubernetes
# dashboard.
# disable swap
swapoff -a;
@shamrockspb
shamrockspb / tmux-cheatsheet.markdown
Created January 4, 2021 20:20 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@shamrockspb
shamrockspb / .vimrc
Last active December 4, 2020 09:35 — forked from alexey-goloburdin/.vimrc
" Comments in Vimscript start with a `"`.
" If you open this file in Vim, it'll be syntax highlighted for you.
" Vim is based on Vi. Setting `nocompatible` switches from the default
" Vi-compatibility mode and enables useful Vim functionality. This
" configuration option turns out not to be necessary for the file named
" '~/.vimrc', because Vim automatically enters nocompatible mode if that file
" is present. But we're including it here just in case this config file is
" loaded some other way (e.g. saved as `foo`, and then Vim started with