🍒
Focusing
Pinned Loading
-
-
ZSH Aliases
ZSH Aliases 1alias rustc="~/.cargo/bin/rustc"
2alias gl="git log --oneline --decorate --graph"
3alias amend="git commit --amend"
4alias pulldev="git checkout develop && git pull && git checkout -"
5alias nom="npm"
-
Advanced Function patterns
Advanced Function patterns 1let getDimentions = (length, height) => ({length, height});
2// It is same as
3getDimentions = (length, height) => {
4return {length: length, height: height};
5};
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.