Skip to content

Instantly share code, notes, and snippets.

@ivangsm
ivangsm / docker-compose.yml
Created February 23, 2022 08:40
CockroachDB local cluster with docker-compose
# steps to have a working local cluster
# docker-compose up -d
# docker-compose roach1 ./cockroach init --insecure
# docker-compose restart
version: "3.2"
x-roach-common: &roach-common
image: cockroachdb/cockroach:latest
command: start --insecure --join=roach1,roach2,roach3
networks:
@ivangsm
ivangsm / extensions
Last active December 22, 2022 08:10
Extensions Sync
{"middleclickclose@paolo.tranquilli.gmail.com":{"/org/gnome/shell/extensions/middleclickclose/":""},"containers@royg":{},"status-area-horizontal-spacing@mathematical.coffee.gmail.com":{"/org/gnome/shell/extensions/status-area-horizontal-spacing/":""},"user-theme@gnome-shell-extensions.gcampax.github.com":{"/org/gnome/shell/extensions/user-theme/":""},"bluetooth-quick-connect@bjarosze.gmail.com":{"/org/gnome/shell/extensions/bluetooth-quick-connect/":""},"color-picker@tuberry":{"/org/gnome/shell/extensions/color-picker/":""},"gnome-ui-tune@itstime.tech":{"/org/gnome/shell/extensions/gnome-ui-tune/":""},"drive-menu@gnome-shell-extensions.gcampax.github.com":{},"tiling-assistant@leleat-on-github":{"/org/gnome/shell/extensions/tiling-assistant/":"[/]\nactive-window-hint-color='rgb(53,132,228)'\ncurrent-tiling-mode='right'\nfavorite-layouts=['-1']\nlast-version-installed=39\nscreen-gap=0"},"dock-from-dash@fthx":{"/org/gnome/shell/extensions/dock-from-dash/":""},"gnome-shell-screenshot@ttll.de":{"/org/gnome/shell/e

Keybase proof

I hereby claim:

  • I am ivangsm on github.
  • I am ivang (https://keybase.io/ivang) on keybase.
  • I have a public key whose fingerprint is CD94 A96B 4FC2 CC37 8BC5 41E3 C3A8 4A4D 568E B853

To claim this, I am signing this object:

@ivangsm
ivangsm / init.vim
Created October 9, 2017 04:23
init.vim for NeoVim and VimPlug
" Specify a directory for plugins
call plug#begin('~/.local/share/nvim/plugged')
Plug 'junegunn/vim-easy-align'
Plug 'sickill/vim-monokai'
Plug 'vim-airline/vim-airline'
" Any valid git URL is allowed
Plug 'https://github.com/junegunn/vim-github-dashboard.git'