Skip to content

Instantly share code, notes, and snippets.

View ktolstikhin's full-sized avatar
🤘
Rock and roll.

Konstantin Tolstikhin ktolstikhin

🤘
Rock and roll.
View GitHub Profile
@ktolstikhin
ktolstikhin / netrw quick reference.md
Created March 20, 2018 14:14 — forked from t-mart/netrw quick reference.md
A quick reference for Vim's built-in netrw file selector.
Map Action
<F1> Causes Netrw to issue help
<cr> Netrw will enter the directory or read the file
<del> Netrw will attempt to remove the file/directory
- Makes Netrw go up one directory
a Toggles between normal display, hiding (suppress display of files matching g:netrw_list_hide) showing (display only files which match g:netrw_list_hide)
c Make browsing directory the current directory
C Setting the editing window
d Make a directory
@ktolstikhin
ktolstikhin / tmux-cheatsheet.markdown
Created September 28, 2017 13:07 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@ktolstikhin
ktolstikhin / deployment-tool-ansible-puppet-chef-salt.md
Created May 11, 2017 08:12 — forked from jaceklaskowski/deployment-tool-ansible-puppet-chef-salt.md
Choosing a deployment tool - ansible vs puppet vs chef vs salt

Requirements

  • no upfront installation/agents on remote/slave machines - ssh should be enough
  • application components should use third-party software, e.g. HDFS, Spark's cluster, deployed separately
  • configuration templating
  • environment requires/asserts, i.e. we need a JVM in a given version before doing deployment
  • deployment process run from Jenkins

Solution