How to Install Oracle Java 9 in Ubuntu
22 Wednesday Jun 2016
22 Wednesday Jun 2016
09 Wednesday Dec 2015
If you have to create a directory if doesn’t exist, you can use this code:
Continue reading
02 Wednesday Dec 2015
I love this video!!!
It’s a short and beautiful presentation about what’s a computer programmer with short interviews with some personalities like Bill Gates, Mark Zuckerberg, Steve Jobs, etc. What although perhaps you are a programmer I recommend you to see it.
Enjoy!!!
Continue reading
13 Friday Nov 2015
Posted Basic, Java, Tips and tricks, Ubuntu
inIn some situations you need to run applications developed in Oracle Java over Ubuntu.
If you try to do this with recommended open souce flavors like openjdk-8-jdk and/or openjdk-8-jre sometimes rise up errors or malfunctions.
You can correct this situations by installing original Oracle Java Version 7 or 8 doing this procedure in a terminal:
Continue reading
12 Sunday Apr 2015
Posted Basic, JavaScript
inPeople always ask me how to do trivial things like conversions, let’s start
here:
String to Integer:
String stringNumber = "5"; int number = Integer.parseInt(stringNumber);