/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

winterbe.com
| | initialcommit.com
6.7 parsecs away

Travel
| | In this article, we talk about the standards and the best practices which make your code looks clean, elegant and most importantly understandable by humans.
| | mydeveloperplanet.com
3.7 parsecs away

Travel
| | In this blog, we are going to take a closer look at the Java 8 Streams API. We will mainly do so by means of examples. We will cover many operations and after reading this blog, you will have a very good basic understanding of the Streams API. Enjoy reading! 1. Introduction The Streams API...
| | endoflineblog.com
5.5 parsecs away

Travel
| | With the latest release, Jilt, my Java library for auto-generating Builder classes, now supports a new style of Builders, called Functional Builders.
| | componenthouse.com
16.0 parsecs away

Travel
| I wanted tocompare how Java, C++ and C perform whenreading a text file line by line and printing the output. I've implemented some possibilities and, at the end, we can compare the speed of each execution. Java 7 version (BufferedReader) import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; public class Main7 { private static final...