Skip to content

Instantly share code, notes, and snippets.

Javascript Shorthand Coding Techniques

My (@pongstr) opinion about shorthand coding techniques

Shorthand code is not really a replacement for normal coding but it is very handy and useful in some cases. There are tons of opinions and debates around this but, again it all comes down what is necessary for your codebase and using it responsibly.

@itsvicsoto
itsvicsoto / java-settings-osx.md
Last active April 24, 2016 05:35
Java Environment Settings OSX

Java Environment Settings OSX

Brew

Install homebrew

Install Java Pre-Reqs

Install java and maven

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "[email protected]"
@itsvicsoto
itsvicsoto / ohmyzsh-git-plugin.zsh
Created December 9, 2014 12:07
ohmyzsh git plugin
# Aliases
alias g='git'
compdef g=git
alias gst='git status'
compdef _git gst=git-status
alias gd='git diff'
compdef _git gd=git-diff
alias gdc='git diff --cached'
compdef _git gdc=git-diff
alias gdt='git diff-tree --no-commit-id --name-only -r'