Go to bitbucket (or github) press fork button, yeah!
e.g. https://bitbucket.org/rockybars/delicious
Clone my own fork of an upstream repo
| $touch ~/.bash_profile | |
| $ echo "export CLICOLOR=1" >> ~/.bash_profile | |
| $ echo "export LSCOLORS=GxFxCxDxBxegedabagaced" >> ~/.bash_profile | |
| $ cat ~/.bash_profile | |
| export CLICOLOR=1 | |
| export LSCOLORS=GxFxCxDxBxegedabagaced |
| $ vim .bash_profile | |
| export JAVA_HOME=$(/usr/libexec/java_home) | |
| $ source .bash_profile | |
| $ echo $JAVA_HOME | |
| /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home |
| = General rules = | |
| * Always ask if you have any questions or doubts on anything | |
| * Try to consult first when you need to make big changes | |
| * Always document your changes in the code | |
| * Always provide a unit test when you make changes covering: good cases, error cases, cases with bad inputs | |
| = Repositories = | |
| Rules: |
| # Aliases for git shorty | |
| alias gco="git checkout" | |
| alias gaa="git add -A ." | |
| alias gcm="git commit -m" | |
| alias gst="git status" | |
| alias glo="git log --graph" | |
| alias gpl="git pull" | |
| alias gps="git push" | |
| alias gbr="git branch" | |
| alias gft="git fetch" |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
| package slicks.docs.dao | |
| import scala.slick.driver.PostgresDriver.simple._ | |
| import scala.slick.driver._ | |
| trait Profile { | |
| val profile: JdbcProfile | |
| } |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
| build | |
| deploy | |
| .idea | |
| .gradle | |
| *.iml | |
| logs | |
| *.log |