Wednesday, June 10, 2015

TextArea scrollbar width in Firefox

To get scroll bar width of text area - use

element.offsetWidth - element.clientWidth

spent an hour fighting with scroll bar....

Friday, April 10, 2015

Java Mission Control - profiling at your hands

Just add this to your java arg line

-XX:+UnlockCommercialFeatures
-XX:+UnlockExperimentalVMOptions
-XX:-UseFastUnorderedTimeStamps
-XX:+FlightRecorder
-XX:StartFlightRecording=duration=120m,filename=recording1.jfr


when java app exits, file recording1.jfr will be available for viewing with Java Mission Control
since JDK 1.7.40

Thursday, April 9, 2015

Thread stop in Java

Install Oracle's JDK to any linux again

untargz java jdk distro

define JAVA_HOME and export it

cd $JAVA_HOME/bin

fix alternatives - use as root or append sudo

for i in `ls`; do update-alternatives --install "/usr/bin/$i" "$i" "`pwd`/$i" 1; done;