Skip to content

Instantly share code, notes, and snippets.

View yelizariev's full-sized avatar
💭
Recursive schizophrenics believe that many suffer from such personality disorder

Ivan Kropotkin yelizariev

💭
Recursive schizophrenics believe that many suffer from such personality disorder
View GitHub Profile
@yelizariev
yelizariev / Letsencrypt Wildcard DNS manual.rst
Last active February 20, 2021 00:12 — forked from Rusllan/Letsencrypt Wildcard DNS manual.rst
Issue certificate with DNS manual mode
@yelizariev
yelizariev / Smiles.md
Last active February 17, 2021 13:40 — forked from roachhd/README.md
Smiles EMOJI cheatsheet 😛😳😗😓🙉😸🙈🙊😽💀💢💥✨💏👫👄👃👀👛👛🗼🔮🔮🎄🎅👻

People

:bowtie: 😄 😆 😊 😃 ☺️ 😏 😍

@yelizariev
yelizariev / mappings.txt
Last active February 27, 2020 07:46 — forked from dmgerman/vimium-emacs.md
Emacs-Style Key Bindings for Vimium
#########################################
unmapAll # Use Emacs-style bindings only.
#########################################
# Modifier Keys w/ Emacs Terminology:
# `<c-*>` = ⌃ Control Key; i.e. `C-*`.
# `<a-*>` = ⌥ Meta Key (Alt/Option); i.e. `M-*`.
@yelizariev
yelizariev / docker-cleanup-resources.md
Last active February 6, 2020 06:28 — forked from bastman/docker-cleanup-resources.md
docker cleanup guide: containers, images, volumes, networks

Docker - How to cleanup (unused) resources

Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...

delete volumes

// see: https://github.com/chadoe/docker-cleanup-volumes

docker volume rm $(docker volume ls -qf dangling=true)

docker volume ls -qf dangling=true | xargs -r docker volume rm