Spread operator in JavaScript
I loved the new spread operator of javascript that came with ES6. Basically, it has three dots. You might be … More via WordPress http://ift.tt/2h6mxsF

#dc comics#batman#dc#tim drake#batfam#batfamily#bruce wayne#dick grayson#dc fanart


seen from Netherlands
seen from Brazil

seen from United States

seen from United Kingdom
seen from Yemen
seen from United States
seen from United States

seen from Brazil
seen from United States

seen from United Kingdom

seen from United Kingdom

seen from Belgium

seen from United States

seen from Netherlands
seen from China
seen from China

seen from Brazil

seen from Netherlands
seen from United States
seen from United States
Spread operator in JavaScript
I loved the new spread operator of javascript that came with ES6. Basically, it has three dots. You might be … More via WordPress http://ift.tt/2h6mxsF
Parallel Array Sorting
JDK enhancement proposal 103 brings a new way of array sorting which uses the Fork/Join parallelism technique to provide sorting … More via WordPress http://ift.tt/2gr0ddD
Removing items from ArrayList in java 8
As we know ArrayList implementation of List interface store elements in an Array under the hood. Removing elements from ArrayList is a bit costly which is the order of n^2. Let’s say I have a list of integers and I … Continue reading → via WordPress http://ift.tt/2dNHHte
Things to consider before diving into Java Programming Language
I would like to point out a few things first – Java has the largest ecosystem among all the languages. So it may take you some time to get used to it. Give it 2 years, and it will be … Continue reading → via WordPress http://ift.tt/1SdCZHT
The magic word in Java : CAFEBABE
Java compiler compiles a Java Source code into bytecode and stores it in a .class file which is then get executed by JMV. Well, we all know this, but do you know that all Java classes start with a magic word … Continue reading → via WordPress http://ift.tt/23ymGIj
How to change the brightness of LCD display from command line in Ubuntu
Open your terminal and type this – If you have multiple monitors, you will have output as – here, VGA1 and HDMI1 are your display. If you want to change the brightness of ‘VGA1’ type following The brightness ranges from … Continue reading → via WordPress http://ift.tt/1K41Vs4
long/double are not atomic in Java
So I have been reading a lot of texts lately. Java Concurrency in Practice is probably one of the best book written for concurrent programming in Java. Though this book is written prior to Java 7, but it is still … Continue reading → via WordPress http://ift.tt/1XOF7rY
Custom JSON Deserialization with Jackson
There are times when you want to take a control over the normal flow and you want to do things your own way. This quick tutorial will help to know how to take over control from Jackson json deserialization and write your own deserializer. Continue reading → via WordPress http://ift.tt/1OsbMvy