Skip to content

Instantly share code, notes, and snippets.

View bmsrox's full-sized avatar

Bruno Marinho bmsrox

View GitHub Profile
@bmsrox
bmsrox / general.md
Last active July 17, 2020 06:55 — forked from andrewmclagan/general.md
Beam Tech Interview - Bruno.

Below are general senior level full stack developer Q&As.


1. GraphQL vs RESTful

List some issues within RESTful APIs that GraphQL attempts to solve.

  • Multiple Resources
  • Number of request
@bmsrox
bmsrox / .gitconfig
Last active July 18, 2025 07:13
Git config aliases
b = branch
s = status -s
c = !git add --all && git commit -m
l = log --pretty=format:'[%C(blue)%h%C(white)]%C(red)%d %C(white)%s -> %C(cyan)%cn, %C(green)%cr'
lg = log --all --decorate --oneline --graph --pretty=format:'[%C(blue)%h%C(white)]%C(red)%d %C(white)%s -> %C(cyan)%cn, %C(green)%cr'
amend = !git add --all && git commit --amend --no-edit
#git count feat/fix/chore
count = !git shortlog -s --grep
find = "!f(){ git branch | grep $1; }; f"
st = !git add --all && git stash