(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.
sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/jdk1.8.0_25/bin/java" 2 | |
sudo update-alternatives --set java /usr/lib/jvm/jdk1.8.0_25/bin/java | |
sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/lib/jvm/jdk1.8.0_25/bin/javac" 2 | |
sudo update-alternatives --set javac /usr/lib/jvm/jdk1.8.0_25/bin/javac | |
/usr/lib/mozilla/plugins | |
sudo ln -s /opt/java/jdk1.7.0_25/jre/lib/i386/libnpjp2.so | |
sudo ln -s /opt/java/jdk1.7.0_25/jre/lib/amd64/libnpjp2.so |
(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.
<html> | |
<head></head> | |
<meta name="description" content="abre pop-up al centro de la pantalla"> | |
<body> | |
<h1>hola mundo</h1> | |
<script> | |
function mostrar(){ |
package org.gkh.mail; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.util.Arrays; | |
import java.util.List; | |
import java.util.Properties; | |
import javax.mail.Authenticator; | |
import javax.mail.Message.RecipientType; |