Update (26/06/2015) Previously I have written a function which waits until a specific element is available on the page, doWhenAvailable. I have find out Selenium has already a similar feature build-in. Its element search functions could wait until an element is available on the page. It can be activated in @BeforeClass method: [code language=”java”]driver. manage(
Tag: Java
Best eclipse shortcut
I have been using eclipse for years. I were using several shortcuts to speed up things. But I have learned my favorite shortcut, CTRL+3 just a few months ago. It is something like one shortcut to learn them all. How could I miss this for years?
New Features of JDK 7 Explained
For an in company JDK 7 orientation I have prepared a presentation which summaries new features of JDK 7. I would like to make it public for everyone who needs it. New Features of JDK 7 is available on slideshare. You can also download pdf of it from here. New Features Of JDK 7 —
Installing GoDaddy SSL Certificates on Glassfish v3 Step by Step
Introduction to Glassfish SSL Newly created domains on glassfish has already a self signed certificate in DOMAIN_DIR/config/keystore.jks file. By default this keystore has default password of “changeit”. This certificate is named as s1as. To see this certificate you could issue following command: keytool -list -keystore keystore.jks When asked enter default password “changeit”. You will see
java.lang.OutOfMemoryError and Native Memory
“Thanks for the Memory” is a must read article for every java developer. It is a very good explanation of why sometimes you may need to REDUCE heap size to prevent java.lang.OutofMemoryError. You could download pdf of article writen by Andrew Hall and published at IBM Developerworks.
Counting Rows in Apache Cassandra
Update:As of today Apache Cassandra support Counter type and it should be used instead of this custom solution. As you may already notice it is not possible to count number of rows in a column family. In fact there is a request about that in Apache Cassandra bug database. Correctly doing this in a distributed
Introduction to Real-Time Java
A introductory level real time java presentation
Real-Time Java Adaptation: Part 1
Is real-time java suitable for your projects? Should you stay with JavaSE?, or should you consider a completely different platform? Will will try to give answers to these kinds of questions.
RTSJ Links You May be Interested
In this article I have collected some of the interesting links and videos about Real-Time Java.
Preparing for Real Time Java (RTSJ) Development
This article summarize the necessary steps to setup a simple development environment for RTSJ (Real-Time Specification for Java) and a HelloWord program to validate that installation.