Skip to content

Instantly share code, notes, and snippets.

View BBoal's full-sized avatar
🎯
Focusing

Bruno Boal BBoal

🎯
Focusing
  • Portugal
View GitHub Profile
@BBoal
BBoal / keybase.md
Created June 9, 2023 15:57
My keybase profile announcement

Keybase proof

I hereby claim:

  • I am bboal on github.
  • I am bboal (https://keybase.io/bboal) on keybase.
  • I have a public key ASBB5Je8VCrqEXXCOoJ05HX7jokG45mlTOoFRrQmhByQDgo

To claim this, I am signing this object:

@BBoal
BBoal / emulator-install-using-avdmanager.md
Created July 28, 2021 20:39 — forked from mrk-han/emulator-install-using-avdmanager.md
Installing and creating Emulators with AVDMANAGER (For Continuous Integration Server or Local Use)

Install and Create Emulators using AVDMANAGER and SDKMANAGER

TL;DR

For generic skin emulator with default apis (without google apis):

  1. List All System Images Available for Download: sdkmanager --list | grep system-images

  2. Download Image: sdkmanager --install "system-images;android-29;default;x86"

@BBoal
BBoal / vim_cheatsheet.md
Last active June 9, 2023 16:01 — forked from awidegreen/vim_cheatsheet.md
Vim shortcuts

Introduction

  • C-a == Ctrl-a
  • M-a == Alt-a

General

:q        close
:w        write/saves
:wa[!]    write/save all windows [force]
:wq       write/save and close
@BBoal
BBoal / git_fzf_key_bindings.fish
Created March 15, 2021 23:07 — forked from aluxian/git_fzf_key_bindings.fish
Key bindings for git+fzf ported to Fish shell https://junegunn.kr/2016/07/fzf-git/
function __git_fzf_is_in_git_repo
command -s -q git
and git rev-parse HEAD >/dev/null 2>&1
end
function __git_fzf_git_status
__git_fzf_is_in_git_repo; or return
git -c color.status=always status --short | \
fzf -m --ansi --preview 'git diff --color=always HEAD -- {-1} | head -500' | \
cut -c4- | \