/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

bruceeckel.com
| | winterbe.com
3.8 parsecs away

Travel
| | Learn Java 8 streams by example: functional programming with filter, map, flatMap, reduce, collect, lambdas, sequential and parallel streams are covered in-depth in this tutorial.
| | connorberry.com
4.2 parsecs away

Travel
| | Language Comparison Perl: while (<>) { print "$. : $_" } Perl: while (<>) { print "$. : $_" } CSharp: using System; using System.IO; class App { public static void Main(string[] args) { int line_number = 1; foreach (string arg in args) { foreach (string line in File.ReadLines(arg)) { Console.WriteLine(line_number + ":" + line);...
| | www.chrisritchie.org
2.7 parsecs away

Travel
| | Doing distributed processing with Java's parallelStream.
| | henrikwarne.com
24.8 parsecs away

Travel
| I finally got around to reading Clean Code by Robert C. Martin (Uncle Bob). It is often high on lists of the best books for software development, and for good reason. Clean Code is an excellent book that all programmers should read. Here is what I liked and didn't like about it. Organization The books...