p8g has been developed for individuals interested in getting into creative programming no matter the experience. (more…)
Read more »
To avoid any adverse flack, I would like to clear at the outset that I have nothing against Java 8, and I actually love Scala. (more…)
Read more »
java.util.concurrent.ArrayBlockingQueue (j.u.c.ArrayBlockingQueue from here on) provides an elegant solution to the classic producer-consumer problem. To understand its internals, the post implements the data structure from-scratch and step-by-step, using... (more…)
Read more »
There are certain
problems that just make sense to solve using Java Recursion. Demonstrating Fibonacci Series is one of them. Let’s take a look at something called Fibonacci series. Here are the first few numbers of this series:0, 1, 1, 2, 3, 5, 8, 13, 21... (more…)
Read more »
One of the things I like best about the option to write stubs for service virtualization in code is that by doing so, you’re able to store them in and access them through the same version con… (more…)
Read more »