(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
#!/bin/bash | |
# Set proxy settings in Ubuntu for eclipse, maven and apt | |
#### variables | |
ECLIPSE_SETTINGS_DIR="/home/martine/apps/springsource/sts-3.4.0.M1/configuration/.settings/" | |
ECLIPSE_SETTINGS_FILE="org.eclipse.core.net.prefs" | |
ECLIPSE_SETTINGS_PROXY="org.eclipse.core.net.prefs-PROXY" | |
ECLIPSE_SETTINGS_NOPROXY="org.eclipse.core.net.prefs-NOPROXY" | |
ECLIPSE_SETTINGS=$ECLIPSE_SETTINGS_DIR$ECLIPSE_SETTINGS_FILE |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.