Showing posts with label java. Show all posts
Showing posts with label java. Show all posts
Thursday, September 14, 2017
ubuntu 11 10 java installation
ubuntu 11 10 java installation
In ubuntu 11.10 sun-java6 is no longer in the repositories. It is *suggested* to install openjdk. I decided to give it a try.
Earlier I was kinda cautious regarding it, but now, since suns (oracles) jdk is not in favor, lets follow the trend. So choose what you need installed:
jdk -> $ sudo apt-get install openjdk-6-jdk
jre -> $ sudo apt-get install openjdk-6-jre
browser plugin -> $ sudo apt-get install icedtea6-plugin
Well, I have issues with icedtea plugin-my ibank2 applet (internet banking) is not working properly, so I had to get back suns plugin.
Ive downloaded the jre, installed it (it basically just unpacks itself). The you need to symlink the plugin. (2 options, root and non root). Assuming youve installed jre into /mnt/wind/bin/java/sun-java/
Now you should have suns browser plugin in firefox and chrome!
If you want sun jre to be the default one, you need to manually update the system to let it know that a new java is present via update-alternatives. See man page, its good.
P.S. If you find it helpful - feel free to click on some ads :)
Earlier I was kinda cautious regarding it, but now, since suns (oracles) jdk is not in favor, lets follow the trend. So choose what you need installed:
jdk -> $ sudo apt-get install openjdk-6-jdk
jre -> $ sudo apt-get install openjdk-6-jre
browser plugin -> $ sudo apt-get install icedtea6-plugin
Well, I have issues with icedtea plugin-my ibank2 applet (internet banking) is not working properly, so I had to get back suns plugin.
Ive downloaded the jre, installed it (it basically just unpacks itself). The you need to symlink the plugin. (2 options, root and non root). Assuming youve installed jre into /mnt/wind/bin/java/sun-java/
#install for all. Root version
$ sudo ln -s /mnt/wind/bin/java/sun-java/jre1.6.0_29/lib/amd64/libnpjp2.so /usr/lib/mozilla/plugins/
#if you want a non root install. Just for one user:
$ mkdir -p ~/.mozilla/plugins
$ ln -s /mnt/wind/bin/java/sun-java/jre1.6.0_29/lib/amd64/libnpjp2.so ~/.mozilla/plugins/
$ sudo ln -s /mnt/wind/bin/java/sun-java/jre1.6.0_29/lib/amd64/libnpjp2.so /usr/lib/mozilla/plugins/
#if you want a non root install. Just for one user:
$ mkdir -p ~/.mozilla/plugins
$ ln -s /mnt/wind/bin/java/sun-java/jre1.6.0_29/lib/amd64/libnpjp2.so ~/.mozilla/plugins/
Now you should have suns browser plugin in firefox and chrome!
If you want sun jre to be the default one, you need to manually update the system to let it know that a new java is present via update-alternatives. See man page, its good.
P.S. If you find it helpful - feel free to click on some ads :)
download file now
Labels:
10,
11,
installation,
java,
ubuntu
Sunday, September 10, 2017
UC Browser 9 5 0 java app
UC Browser 9 5 0 java app

UC Browser 9.5.0 java app
UCWeb is always designing new products according to our users need. This product is for those who want to experience the brand new features of UC Browser Java App. However, it is likely annoying bugs or flaws.If you are curious about new features, download this, test future products together UCWeb! Whats new in this version: 1 Watching You tube now is supported on more phone models. 2 The problem of automatically logging-out from some websites has been solved. 3 Smaller size for a faster startup speed. 4 Touch-screen phone models can now preview uploaded pictures. 5 Indian customer service hotline now is available. The saving of passwords on HTTPS webpages is now supported.
Download Links:
UC Browser 9.5.0 Jar
UC Browser 9.5.0 Jad
download file now
Wednesday, August 23, 2017
Ubuntu Oracle Java 8 from PPA
Ubuntu Oracle Java 8 from PPA
You can easily add the official Oracle Java to Ubuntu if pages like webcam control panels or netbanking sites require it to work properly.
Write this to the terminal:
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
Make sure that all programs will use this version of java by manually setting it:
sudo update-java-alternatives -s java-8-oracle
download file now
Sunday, August 20, 2017
Um pouco de java
Um pouco de java
Finalmente, meu primeiro post sobre java.
Na verdade, esse post n�o � exatamente meu, pois n�o apresentarei nenhum trabalho criado por mim, mas sim, indico um material muito bom que encontrei na net.
Trata-se de um site criado por Mark Dexter, onde ele disponibiliza uma s�rie de v�deo-aulas sobre java.
O t�tulo "Eclipse and Java for Total Beginners" (ou "Eclipse e Java para iniciantes") pode levar o leitor a pensar que trata-se de um material muito fraco. Confesso que pensei isso quando vi pela primeira vez, mas depois que comecei a ler o pdf com os assuntos tratados, descobri que ele trata de alguns assuntos que s�o relativamente desconhecidos para muitos desenvolvedores com "n�o tanta" experi�ncia, como eu.
O que eu mais gostei desse material foi o destaque que o autor deu ao TDD (Test Driven Development) e ao uso de testes unit�rios.
Para quem n�o conhece, o TDD � uma metodologia de desenvolvimento onde o programador se preocupa em criar primeiro os testes para a sua aplica��o, antes mesmo dela existir. O que voc� acabou de ler n�o � um erro, � isso mesmo. Os testes vem antes do c�digo final da aplica��o. Pode parecer muito estranho para quem nunca trabalhou dessa forma e est� acostumado com outros m�todos, mas acredite, isso ajuda e muito. Eu mesmo, s� sabia disso na teoria, mas depois que fiz todas as "li��es", comecei a adotar essa forma de trabalho no meu dia-a-dia.
Outra coisa que gostei e muito, e que tamb�m s� tinha ouvido falar, � a quest�o dos testes unit�rios. Os testes unit�rios nos permitem testar, como o pr�prio nome j� diz, as unidades ou peda�os de nossos c�digos independentemente, permitindo assim, achar erros mais facilmente. Essa t�cnica � uma das pe�as fundamentais de metodologias de desenvolvimento �geis, como XP (Extreme Programming).
Para trabalhar com os testes unit�rios, o autor utilizou o JUnit, uma ferramenta gratu�ta, open-source, e que funciona integrada com o Eclipse, facilitando e muito a cria��o e execu��o dos testes.
Resumindo, o conte�do das v�deo aulas �:
- o b�sico para desenvolvimento em Java utilizando o Eclipse
- utiliza��o de refatora��o (refactoring, outra pe�a chave de metodologias �geis)
- conceitos b�sicos de Programa��o Orientada � Objetos (OOP - Object Oriented Programming)
- introdu��o ao Desenvolvimento Dirigido por Testes (TDD - Test Driven Development)
- introdu��o aos testes unit�rios (com JUnit)
Acho que vale a pena perder um tempo, no bom sentido, com isso, pois no meu caso, ajudou e muito a melhorar a minha forma de trabalhar.
O maior problema, e que na minha opini�o vai acabar afastando algumas pessoas dessas v�deo-aulas, � o fato de estar tudo em ingl�s. Uma coisa que eu posso garantir � que n�o � nada t�o complicado de entender, pois o autor executa todas as etapas passo-a-passo, e se voc� for assistindo, pausando, fazendo o exemplo e voltando a assistir o v�deo, d� para acompanhar tranquilamente. Acho que nesse caso, o que conta � a for�a de vontade de cada um, e nisso eu infelizmente n�o posso ajudar.
O autor disponibilizou mais dois cursos em seu site.
"Eclipse and Java: Introducing Persistence" e "Eclipse and Java: Using the Debugger", que eu ainda n�o tive tempo para assistir. Assim que conseguir assistir, eu posto aqui a minha opini�o.
Bom, fica aqui a minha dica.
Espero que esse material seja �til para outras pessoas da mesma forma que foi �til para mim.
download file now
Thursday, August 17, 2017
UFO Predator java game for Nokia asha
UFO Predator java game for Nokia asha

UFO Predator leads to a major crisis of The Earth harboring mankinds greatest fear!
An alien has lost his way and took the Earth as his home planet. As a predator, embark upon a path of carnage and turn giant creatures and advanced weapons into worthless rescue teams!
Fly over the humans and devour them into your spaceship to increase the energy level of your UFO.
Manipulate background items such as cars to attack the rescue teams.
Info:
Name: UFO Predator
File Extension: Jar
Supports On: Java Supported Mobile
Display: 240 x 320 pixels
Supported Phones: Nokia Asha 206, X2-02, 2700c, 2730c, 5130, 110, 112
Download Link:
UFO Predator
download file now
Sunday, August 13, 2017
Ultoo multisender app for java mobiles
Ultoo multisender app for java mobiles
Hi readers,
here we present a new trick for ultoo users.
Since ultoo is very slow and it takes a lot of time to recharge our mobiles, so here is a multisender app for java mobiles, through which you can send upto 50 sms at a single click and earn 1Rs instantly.
You can download the app from the below link.
Download it from here
enjoy friendz...and keep visiting.....
download file now
Wednesday, August 2, 2017
TRANSLATOR JAVA APPS FOR NOKIA ASHA 305 306 308 309 311
TRANSLATOR JAVA APPS FOR NOKIA ASHA 305 306 308 309 311

Translator is an awesome app to translate languages in other languages on Nokia Asha 305 306 308 309 and 311. Now on the availability of Translator it is possible to translate overseas language with in the neck of the time to English or in other languages. It is now amazing to have this golden opportunity on Nokia Asha mobile phone, such as, Nokia Asha 305,Nokia Asha 306, Nokia Asha 308,Nokia Asha 309 and Nokia Asha 311.People can take advantage of this App throughout the world.
Name: Translator
File Format: Jar
Supported on : Java supported mobile with 400x240 touchscreen
Download
download file now
Transformers 3 Java game for Nokia Asha 305 306 308 309 310 311
Transformers 3 Java game for Nokia Asha 305 306 308 309 310 311

Transformers 3 java game
Transformers 3 is racing game as well as an action game.Its really dangerous game because some times you will have to transform into robot.and you will have to defeat your enemies.This game is now available for Nokia Asha 305 306 308 309 310 311 and Full touch asha smart phones.If u want to have some fun just download and install it on you mobile phone and enjoy.
Download Transformers 3 Java game
download file now
Subscribe to:
Posts (Atom)