Always remain updated about current software development trends

Articles by KABUTZ

Fibonacci (1000000000) Challenge

| 0We all know the standard Fibonacci recursive algorithm: public BigInteger f(int n) { if (n == 0) return BigInteger.ZERO; if (n == 1) return BigInteger.ONE; return f(n - 1).add(f(n - 2)); } Your challenge is to find the first 10...

Java Mind Gymnastics

| 0I like a good Java puzzle.  The trickier the better.  In this article I will tell you about a new set of puzzles by Wouter Coekaerts that will melt your Java brain. About five years ago, I was suckered into participating in a Java Black Belt competition...

Pushing the Limits in Java's Random

6044 | 0Welcome to the 198th issue ofThe Java(tm) Specialists' Newslettersent to you from Chania in Greece. My readers in colder climates frequently get annoyed when I tell them that "life's a beach". They imagine us having constant...

What is the meaning of life?

| 0A few weeks ago I updated my age to be a factor of 2 and 5.  It is the perfect age to reflect what life is all about.  Some men don a leather jacket and ride around on a Harley.  But as a geek I know exactly where to turn - my beloved computer....

  • Page 1 of 1
  •