Skip to content

Instantly share code, notes, and snippets.

View vaaleyard's full-sized avatar
:shipit:

Leonardo vaaleyard

:shipit:
View GitHub Profile

Keybase proof

I hereby claim:

  • I am vaaleyard on github.
  • I am valeyard (https://keybase.io/valeyard) on keybase.
  • I have a public key ASC0_YGNjqumtaQW_Vgoy75VTYDDx4t6Ye_1oRYTzPACDgo

To claim this, I am signing this object:

input bar

/set weechat.bar.input.items [buffer_name],[input_search],[input_paste],input_text
/bar del status

scripts

/script install go.py colorize_nicks.py autosort.py fset.pl highmon.pl notify_send.pl perlexec.pl buffer_autoclose.py
/key bind meta-g /go
@vaaleyard
vaaleyard / albums.md
Last active May 7, 2019 12:37 — forked from onlurking/albums.md
Pitchfork's 1001 Albums You Must Hear Before You Die

Pitchfork's 1001 Albums You Must Hear Before You Die

50's

  • In The Wee Small Hours - Frank Sinatra (1955)
  • Ellington at Newport _56 - Duke Ellington (1956)
  • Elvis Presley - Elvis Presley (1956)
  • Songs For Swingin' Lovers - Frank Sinatra (1956)
  • Birth of the Cool - Miles Davis (1956)
  • Tragic Songs Of Life - The Louvin Brothers (1956)

Keybase proof

I hereby claim:

  • I am valeyard1 on github.
  • I am valeyard (https://keybase.io/valeyard) on keybase.
  • I have a public key ASBmzrhUevLVkAU0Eh7nFXhWfO_1jChUaUnEWLLlpp7GCAo

To claim this, I am signing this object:

@vaaleyard
vaaleyard / docker.md
Last active December 12, 2018 18:33
Docker for dummies

Docker for dummies

Docker CLI cheatsheet

  • docker run <image> <comando> - Executa o <comando> no container do (alpine, busybox, ubuntu, etc) e sai
  • docker ps - Lista os containers que estão em execução
    • docker ps -a - Lista os containers que já rodaram e que estão execução
  • docker run -it <image> <shell> - -it leva à um shell interativo
  • docker container prune - Remove containers que não estão sendo usados
  • docker build - Builda o Dockerfile
  • docker build -t . - builda a imagem a partir do Dockerfile do diretório atual