Tuesday, December 16, 2014

Saturday, May 10, 2014

Google Map V3, Multiple Markers with its InfoWindows (Balloon)

I hope this post will help you because even on google sites I did not find tutorial about this yet. Lets Rock !! 1: var markerArr = [ 2: ['Bondi Beach', -33.890542, 151.274856], 3: ['Coogee Beach', -33.923036, 151.259052], 4: ['Cronulla Beach', -34.028249, 151.157507], 5: ['Manly Beach', -33.80010128657071, 151.28747820854187], 6: ['Maroubra...

Wednesday, May 7, 2014

Monday, May 5, 2014

Thursday, May 1, 2014

Java Random

Simple playing random integer with Java : int randomInt ; Random randomGenerator = new java.util.Random(); randomInt = randomGenerator.nextInt(100);  // integer random range is between 0 until 100 System.out.println(randomInt ); You can also play with other data types : System.out.println( randomGenerator.nextBoolean()); System.out.println( randomGenerator.nextDouble()); System.out.println(...