(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.
| #UNIQUE | |
| CREATE TABLE supplier | |
| ( supplier_id numeric(10) NOT NULL, | |
| supplier_name varchar2(50) NOT NULL, | |
| contact_name varchar2(50), | |
| CONSTRAINT supplier_unique UNIQUE (supplier_id, supplier_name) | |
| ); | |
Archivos repositorio, repositorio2
javac -cp ./src/main/java ./src/main/java/com/exec/one/*.java -d ./out/
jar cvfm ExecutableOne.jar ./src/main/resources/META-INF/MANIFEST.MF -C ./out/ .
javac -cp ./src/main/java ./src/main/java/com/exec/one/*.java ./src/main/java/com/exec/one/**/*.java -d ./out/
| <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; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="funcionamiento find y children"> | |
| <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> |
| APT | |
| Advanced packing tool, herramienta avanzada de empaquetamiento | |
| APT-GET | |
| herramienta de APT | |
| PROBLEMAS DE ESPACIO | |
| carpeta |
| public class HolaMundo{ | |
| public stactic void main(String []args){ | |
| System.out.println("Hola mundo"); | |
| } | |
| } |