Skip to content

Instantly share code, notes, and snippets.

View bltavares's full-sized avatar
💭
I may be slow to respond.

Bruno Tavares bltavares

💭
I may be slow to respond.
View GitHub Profile

Keybase proof

I hereby claim:

  • I am bltavares on github.
  • I am bltavares (https://keybase.io/bltavares) on keybase.
  • I have a public key ASAfL8PUsRUU_F4lQFmq0MiGrA1exJQ-RDnz_7CRgu7ByAo

To claim this, I am signing this object:

Arraste para sua barra de bookmarks

Descubra a numerologia da firma

@bltavares
bltavares / example.sh
Created November 29, 2016 19:41
Kickstart example
kickstart init my-laptop
cd my-laptop
echo 'kickstart.context "Editors"' > roles/editors.sh
echo 'kickstart.package.install vim' >> roles/editors.sh
kickstart local editors
(defconst artist-packages '((artist :location built-in)))
(defun artist/toogle-emacs-state ()
"Toggle emacs-state when `artist-mode' is toggled."
(unless (eq dotspacemacs-editing-style 'emacs)
(if artist-mode
(unless (evil-emacs-state-p)
(evil-emacs-state))
(evil-exit-emacs-state))))
@bltavares
bltavares / README.org
Last active September 5, 2016 17:22
How to remote pair over SSH

How to remote pair, over SSH?

If you are capable of direct access

Just connect; Done;

But… I’m behind NAT, and Firewalls and everything!

I thought so… The internet is not that easy of a place huh?! They told everybody would be connected, and promised again with IPv6, but I’m disgressing.

@bltavares
bltavares / Material Sobre Rust.md
Created May 27, 2016 21:30
Material sobre Rust
class Example {
doSomething() {
this.a = 1;
}
}