Skip to content

Instantly share code, notes, and snippets.

View gaunau-dev's full-sized avatar

gaunau.dev gaunau-dev

  • Ho Chi Minh City, Viet Nam
View GitHub Profile
@gaunau-dev
gaunau-dev / introrx.md
Created April 20, 2018 17:50 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@gaunau-dev
gaunau-dev / Android Home
Created December 31, 2016 17:36 — forked from ericaroy/Android Home
Setting Android Home on Mac
Note for me to remember how to set Android Home on Mac
Open Terminal and type in..
nano ~/.bash_profile
Add the below paths
The path should be where your android installation is located
export ANDROID_HOME=/Users/username/Library/Android/sdk
export export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
Save file and type in terminal...
source ~/.bash_profile